/* Global Styles */
:root {
    --primary: #1e4d6b;
    --secondary: #cd7f32;
    --accent: #3498db;
    --text: #333;
    --light: #f4f4f4;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    padding-top: 80px;  /* Adjust this value based on your header height */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 0.5rem 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo {
    padding: 10px;
}

.logo img {
    height: 70px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.nav-links a:hover {
    color: var(--secondary);
    background: rgba(205, 127, 50, 0.1);
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--secondary);
    color: var(--white);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
}

/* Vision & Mission Section */
.vision-mission {
    padding: 100px 0;
    background: var(--white);
}

.vision-mission .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.vision-box, .mission-box {
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    font-weight: bold;
}

.vision-box {
    background: var(--primary);    /* Blue background */
    color: var(--white);          /* White text */
}

.mission-box {
    background: var(--secondary);  /* Copper background */
    color: var(--white);          /* White text */
}

/* Make the headings stand out */
.vision-box h2, .mission-box h2 {
    margin-bottom: 20px;
    font-size: 2rem;
    color: var(--white);          /* Ensure headers are white */
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background: var(--light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

/* Activities Section */
.activities {
    padding: 100px 0;
    background: var(--white);
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--secondary);
}

.contact-form {
    display: grid;
    gap: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

/* Footer */
.footer {
    background: var(--primary);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3 {
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    font-size: 1.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .about-content,
    .vision-mission .container,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .logo img {
        height: 50px;
    }
}

/* Section Headers */
section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: var(--primary);
}

/* Map Container Styles */
.map-container {
    height: 450px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

#map {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
}

/* Ensure the map container is visible */
.service-map {
    padding: 100px 0;
    background: var(--light);
}

.service-map .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.map-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-top: 30px;
    align-items: start;
}

.service-areas {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 400px;
    display: flex;
    flex-direction: column;
}

.service-areas h3 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: bold;
}

.service-areas ul {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-areas li {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.service-areas li:last-child {
    margin-bottom: 0;
}

.service-areas li a {
    color: #000000;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s ease;
    width: 100%;
    font-weight: 500;
}

.service-areas li a:hover {
    color: var(--secondary);
}

.service-areas li i {
    color: var(--secondary);
    font-size: 1.2rem;
}

/* Map Popup Styles */
.map-popup {
    padding: 1rem;
    text-align: center;
}

.map-popup h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.map-popup p {
    color: #666;
    margin-bottom: 1rem;
}

.map-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.map-link:hover {
    background-color: #2980b9;
}

/* Responsive design for map section */
@media (max-width: 768px) {
    .map-container {
        grid-template-columns: 1fr;
    }

    #map {
        height: 300px;
    }

    .service-areas {
        height: auto;
        min-height: 200px;
    }
}

/* Chat Bot Styles */
.chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.chat-button {
    background: var(--secondary);
    color: white;
    padding: 15px 25px;
    border-radius: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.chat-button:hover {
    transform: translateY(-2px);
}

.chat-container {
    display: none;
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 300px;
    height: 400px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    overflow: hidden;
}

.chat-header {
    background: var(--primary);
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h3 {
    margin: 0;
    font-size: 1.1rem;
}

.close-chat {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1.2rem;
}

.chat-messages {
    height: 300px;
    padding: 15px;
    overflow-y: auto;
}

.message {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.message.user {
    flex-direction: row-reverse;
}

.message i {
    font-size: 1.2rem;
    color: var(--secondary);
}

.message.user i {
    color: var(--primary);
}

.message p {
    background: #f0f0f0;
    padding: 10px 15px;
    border-radius: 15px;
    margin: 0;
    max-width: 80%;
}

.message.user p {
    background: var(--primary);
    color: white;
}

.chat-input {
    padding: 15px;
    display: flex;
    gap: 10px;
    border-top: 1px solid #eee;
}

.chat-input input {
    flex-grow: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 20px;
    outline: none;
}

.chat-input button {
    background: var(--secondary);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.chat-input button:hover {
    transform: scale(1.1);
}

/* Responsive chat widget */
@media (max-width: 768px) {
    .chat-container {
        width: 100%;
        height: 100%;
        bottom: 0;
        right: 0;
        border-radius: 0;
    }

    .chat-messages {
        height: calc(100% - 130px);
    }
}

/* Service Detail Page Styles */
.service-detail {
    padding: 4rem 0;
    background: var(--light);
}

.service-detail .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.service-detail h1 {
    color: var(--primary);
    margin-bottom: 2rem;
    text-align: center;
    font-size: 2.5rem;
}

.service-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    height: 400px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-content {
    padding: 1rem;
}

.service-meta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--light);
    border-radius: 10px;
}

.service-meta span {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text);
    font-size: 1.1rem;
}

.service-meta i {
    color: var(--primary);
    font-size: 1.2rem;
    width: 25px;
}

.service-detail h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.service-detail p {
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.service-features,
.service-details,
.service-requirements,
.service-benefits,
.service-contact {
    background: var(--light);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.service-detail h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-detail ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-detail li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    color: var(--text);
    line-height: 1.6;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.service-features i {
    color: var(--primary);
    font-size: 1.2rem;
    width: 25px;
}

.service-contact ol {
    padding-left: 2rem;
    margin: 1rem 0;
}

.service-contact li {
    margin-bottom: 0.5rem;
    color: var(--text);
}

.service-contact .btn {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 1rem 2rem;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.service-contact .btn:hover {
    background: var(--secondary);
}

@media (max-width: 768px) {
    .service-info {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.5rem;
    }

    .service-image {
        height: 300px;
    }

    .service-detail h1 {
        font-size: 2rem;
    }

    .service-detail h2 {
        font-size: 1.6rem;
    }

    .service-detail h3 {
        font-size: 1.3rem;
    }
}

/* Activity Detail Page Styles */
.activity-detail {
    padding: 4rem 0;
}

.activity-detail h1 {
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
}

.activity-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.activity-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.activity-image img {
    width: 100%;
    height: auto;
    display: block;
}

.activity-content {
    padding: 1rem;
}

.activity-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.activity-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
}

.activity-meta i {
    color: #3498db;
}

.activity-details {
    margin: 2rem 0;
}

.activity-details h3 {
    color: #2c3e50;
    margin: 1.5rem 0 1rem;
}

.activity-details ul {
    list-style: none;
    padding: 0;
}

.activity-details li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.activity-details li:before {
    content: "•";
    color: #3498db;
    position: absolute;
    left: 0;
}

.activity-registration {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    text-align: center;
}

.activity-gallery {
    margin-top: 3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.gallery-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .activity-info {
        grid-template-columns: 1fr;
    }
    
    .activity-image {
        margin-bottom: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

.activity-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
}

.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.activity-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.activity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.activity-card:hover .activity-image img {
    transform: scale(1.05);
}

.activity-content {
    padding: 20px;
}

.activity-content h3 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.activity-content p {
    color: var(--text);
    margin-bottom: 15px;
    line-height: 1.6;
}

.activity-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #666;
}

.activity-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.activity-meta i {
    color: var(--secondary);
}

.activity-content .btn {
    width: 100%;
    text-align: center;
    margin-top: 10px;
}

/* Activities Grid */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

@media (max-width: 768px) {
    .activities-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .activity-card {
        margin-bottom: 20px;
    }
    
    .activity-meta {
        flex-direction: column;
        gap: 10px;
    }
}

/* Remove language switcher and RTL styles */
.activity-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.activity-buttons .btn {
    flex: 1;
    text-align: center;
}

/* Loading State */
.loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    color: var(--primary);
}

.loading i {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.loading p {
    font-size: 1.1rem;
    color: var(--text);
}

/* Activity Meta */
.activity-meta {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
    color: var(--text);
    font-size: 0.9rem;
}

.activity-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.activity-meta i {
    color: var(--secondary);
}

/* Error Message */
.error-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    color: #dc3545;
    text-align: center;
}

.error-message i {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.error-message p {
    font-size: 1.1rem;
    color: var(--text);
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
    cursor: pointer;
    min-height: 80px;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--primary);
    line-height: 1.4;
    width: 100%;
}

.service-card h3 a {
    color: inherit;
    text-decoration: none;
    display: block;
    width: 100%;
    padding: 5px 0;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-height: 450px;
    overflow-y: auto;
    padding-right: 10px;
    padding-left: 5px;
}

/* Custom scrollbar styling */
.services-list::-webkit-scrollbar {
    width: 6px;
}

.services-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.services-list::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 3px;
}

.services-list::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
}

/* Location Map Section */
.location-map {
    padding: 80px 0;
    background-color: var(--light);
}

.map-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.location-info {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.location-info h3 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.location-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--text);
}

.location-info i {
    color: var(--secondary);
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .map-container {
        grid-template-columns: 1fr;
    }
    
    .location-info {
        margin-top: 20px;
    }
}

.services-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-title {
    text-align: center;
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #3498db;
}

.services-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 25px;
    margin-top: 30px;
    align-items: start;
}

.map-container {
    height: 450px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

#map {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
}

.services-list {
    height: 450px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow-y: auto;
    padding-right: 8px;
}

.service-card {
    background: white;
    padding: 18px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 600;
    line-height: 1.3;
}

.service-card p {
    font-size: 13px;
    margin-bottom: 8px;
    color: #666;
    line-height: 1.4;
}

.service-details {
    padding: 12px;
    margin: 8px 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-details p {
    display: flex;
    align-items: center;
    margin: 4px 0;
    font-size: 12px;
    color: #555;
}

.service-details i {
    color: #3498db;
    margin-right: 8px;
    font-size: 13px;
    width: 18px;
    text-align: center;
}

.service-card .btn-primary {
    margin-top: 12px;
    padding: 8px 16px;
    font-size: 12px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    width: 100%;
}

.service-card .btn-primary:hover {
    background: linear-gradient(135deg, #2980b9, #3498db);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.2);
}

/* Custom scrollbar styling */
.services-list::-webkit-scrollbar {
    width: 4px;
}

.services-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 2px;
}

.services-list::-webkit-scrollbar-thumb {
    background: #3498db;
    border-radius: 2px;
}

.services-list::-webkit-scrollbar-thumb:hover {
    background: #2980b9;
}

@media (max-width: 768px) {
    .services-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .map-container,
    .services-list {
        height: 350px;
    }
}

/* Pricing Section Styles */
.pricing-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.pricing-option {
    background: var(--white);
    border: 2px solid var(--secondary);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.pricing-option h4 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.pricing-option .price {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--secondary);
    margin-bottom: 10px;
}

.pricing-option p:last-child {
    color: #666;
    font-size: 0.9rem;
}

.schedule-info {
    background: var(--light);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.schedule-info p {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.schedule-info p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .pricing-info {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .pricing-option {
        padding: 20px;
    }
    
    .pricing-option .price {
        font-size: 1.5rem;
    }
}

/* Psychosocial Support Page Styles */
.schedule-info h4 {
    color: var(--primary);
    margin: 20px 0 10px 0;
    font-size: 1.2rem;
    border-bottom: 2px solid var(--secondary);
    padding-bottom: 5px;
}

.schedule-info h4:first-child {
    margin-top: 0;
}

.about-text ul li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.about-text ul li strong {
    color: var(--primary);
}

/* Program Type Selection */
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    background-color: var(--white);
}

.form-group select:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 5px rgba(205, 127, 50, 0.3);
}

/* Info Items with Icons */
.info-item i {
    color: var(--secondary);
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.info-item p {
    margin: 0;
    display: flex;
    align-items: center;
} 