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

body {
    font-family: 'Manrope', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}


/* --- Header & Navbar --- */
.nav {
    display: flex;
    flex-direction: row;

}


header {
    width: 100%;
    max-width: 1880px;
    height: 920px;
    position: relative;
    overflow: hidden;
    margin: 20px auto 0;
    border-radius: 30px;
    padding: 0px 60px;
    display: flex;
    flex-direction: column;
}

/* Video Styling */
.back-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}


.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    z-index: -1;
}


.navbar {
    position: relative;
    z-index: 10;
    background: rgba(255, 255, 255, 0.95);
    margin-top: 16px;
    width: 100%;
    max-width: 1680px;
    margin: 16px auto 0;
    height: 84px;
}


.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;

}

/* Responsive fix for video */
@media (max-width: 900px) {
    header {
        padding: 20px 20px;
    }

    .back-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 40px;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    width: 100%;
    position: relative;
    z-index: 100;

}

.logo img {
    height: 50px;
}

.nav_list ul {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav_list ul li {
    list-style: none;
    position: relative;
}

.nav_list ul li a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 0;
    display: inline-flex;
    align-items: center;
}

.nav_list ul li a:hover {
    color: #ff5c8d;
}

.dropdown-link::after {
    content: "▾";
    font-size: 12px;
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.dropdown.active .dropdown-link::after {
    transform: rotate(180deg);
}

.dropdown {
    position: relative;
}

/* hidden by default */
#dropdownMenu {
    position: absolute;
    top: 160%;
    left: -215%;
    background: #ffffff;
    padding: 12px 15px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    display: none;
    gap: 10px;

    z-index: 1000;
}

#dropdownMenu.active {
    display: flex;
    flex-direction: row;
    gap: 150px;
    width: 843px;
   
}

#dropdownMenu li {
    list-style: none;
}

#dropdownMenu li a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    white-space: nowrap;
}

#dropdownMenu li a:hover {
    color: #ff5c8d;
}

.nav_btn {
    margin-left: 20px;
}

.nav_btn button,
.hero-btn,
.primary-btn {
    padding: 10px 22px;
    border-radius: 12px;
    border: 1px solid #ff5c8d;
    background: transparent;
    color: #ff5c8d;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
}

.nav_btn button:hover,
.hero-btn:hover,
.primary-btn:hover {
    background: #ff5c8d;
    color: #ffffff;
}


header {
    height: 350px;
}

.about {
    padding: 2rem 0;
}

.about-hero {
    background-color: #37845E;
    color: white;
    padding: 40px 20px;
    border-radius: 1rem;
    text-align: center;
    margin-bottom: 0;
}


.about-intro p {
    margin-top: 0;
    line-height: 1.8;
}

.intro-section {
    padding: 80px 10%;
    text-align: center;
    line-height: 1.8;
    color: #333;
}

.intro-section h2 {
    color: #2D6A4F;
    margin-bottom: 20px;
}

.about-intro {
    padding-top: 40px;
    padding-bottom: 60px;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
}


/* --- Hero Section Content --- */
/* --- Hero Section Content --- */
.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    width: 100%;
    max-width: 1240px;
    height: auto;
    margin: 0 auto;
    top: 50%;
    transform: translateY(-50%);
    padding: 20px;
    text-align: center;
}

.hero-content h1 {
    font-family: 'Manrope', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 86px;
    line-height: 106px;
    text-align: center;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.hero-content p {
    font-family: 'Manrope', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 32px;
    text-align: center;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    opacity: 0.7;
    margin-bottom: 16px;
    max-width: 902px;
}

.hero-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 225px;
    height: 48px;
    background: #E02C60;
    border-radius: 12px;
    border: none;

    /* Text styles */
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    color: #FFFFFF;
}

.hero-btn:hover {
    background: #c02550;
    color: #fff;
}

/* Badge specific for hero */
.hero-content .badge {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 6px 12px;
    gap: 10px;
    width: auto;
    min-width: 269px;
    height: 42px;
    background: #EBF7F1;
    border-radius: 16px;

    font-family: 'Manrope';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 30px;
    letter-spacing: -0.02em;
    color: #257C50;
    margin-bottom: 0;
}

/* --- Stats Section --- */
.stats-section {
    display: flex;
    justify-content: space-around;
    padding: 40px 60px;
    background: #fff;
    flex-wrap: wrap;
    gap: 20px;
}



.stat-item {
    text-align: center;
}

.stat-item i {
    color: #ff5c8d;
    font-size: 24px;
    margin-bottom: 10px;
}

.stat-item h3 {
    font-size: 22px;
    margin-bottom: 5px;
}

/* --- About Section Styles --- */
.about-section {
    padding: 80px 60px;
    background-color: #ffffff;
    margin-top: -12%;
    /* width: 1, 880px; Removed fixed width */
    /* height: 7, 606px; Removed fixed height */
    width: 100%;
    height: auto;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1, 680px;
    padding: 80px 0 0 0;

}

.about-content {
    flex: 1;
}

.badge {
    background-color: #EBF7F1;
    color: #257C50;
    padding: 5px 15px;
    border-radius: 1rem;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.about-content h2 {
    font-size: 32px;
    line-height: 1.2;
    color: #333;
    margin-bottom: 25px;
    font-weight: 700;
}

.about-content p {
    font-size: 15px;
    line-height: 32px;
    color: #555;
    margin-bottom: 30px;
}

/* Red button variant for this section */
.nav_btn_red {
    padding: 12px 25px;
    border-radius: 8px;
    border: none;
    background: #e91e63;
    /* Pinkish-red from design */
    color: #ffffff;
    font-size: 14px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

.nav_btn_red:hover {
    background: #d81b60;
}

/* Video Wrapper */
.about-video {
    flex: 1;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.video-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-section {
        padding: 40px 20px;
    }
}

/* --- Root Cause & Mission Styles --- */
.root-mission-section {
    padding: 80px 60px;
    background-color: #fcfcfc;
}

.root-header {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    align-items: flex-start;
}

.root-left {
    flex: 1.5;
}

.root-right {
    flex: 1;
    padding-top: 50px;
    /* Aligns with the start of the H2 text */
}

.badge-light {
    color: #37845e;
    background: #e8f5e9;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.root-left h2 {
    font-size: 30px;
    line-height: 1.3;
    color: #222;
}

.root-left h2 strong {
    color: #111;
}

.root-right p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

/* Mission Vision Cards */
.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.info-card {
    background: #f4f4f4;
    /* Light grey background from design */
    padding: 40px;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    color: #ff5c8d;
    /* Pink accent */
    font-size: 24px;
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.info-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .root-header {
        flex-direction: column;
    }

    .root-right {
        padding-top: 0;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Why Us Section Styles --- */
.why-us-section {
    padding: 80px 60px;
    background-color: #ffffff;
}

.why-us-header {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
}

.why-us-left {
    flex: 1.2;
}

.why-us-right {
    flex: 1;
    padding-top: 40px;
}

.why-us-left h2 {
    font-size: 32px;
    color: #222;
    font-weight: 700;
}

.why-us-right p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

/* Advantage Grid */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.advantage-card {
    background-color: #f7fdf9;
    /* Very light green background */
    padding: 30px;
    border-radius: 12px;
    transition: box-shadow 0.3s ease;
}

.advantage-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

/* Card 4 and 5 alignment */
.advantage-card:nth-child(4),
.advantage-card:nth-child(5) {
    grid-column: span 1;
}

.advantage-icon {
    width: 40px;
    height: 40px;
    background: #fff0f5;
    /* Light pink icon background */
    color: #ff5c8d;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 18px;
}

.advantage-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #333;
}

.advantage-card p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .why-us-header {
        flex-direction: column;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .why-us-section {
        padding: 40px 20px;
    }
}

/* --- Conditions We Treat Styles --- */
.conditions-section {
    padding: 80px 60px;
    background-color: #fcfcfc;
}

.conditions-header {
    margin-bottom: 40px;
}

.conditions-header h2 {
    font-size: 32px;
    margin: 15px 0;
}

.conditions-header p {
    font-size: 14px;
    color: #666;
    max-width: 900px;
    line-height: 1.6;
}

.conditions-container {
    display: flex;
    gap: 30px;
}

/* Sidebar */
.conditions-sidebar {
    flex: 1;
    background: #f1f7f4;
    border-radius: 12px;
    padding: 20px;
}

.conditions-sidebar ul {
    list-style: none;
}

.conditions-sidebar li {
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    color: #555;
    transition: all 0.3s ease;
}

.conditions-sidebar li.active {
    background-color: #e91e63;
    /* Pink from design */
    color: #fff;
}

.conditions-sidebar li:hover:not(.active) {
    background-color: #e0eee6;
}

/* Display Area */
.conditions-display {
    flex: 2;
    position: relative;
}

.display-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
}

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

.tag-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
}

.condition-tag {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 8px 15px;
    border-radius: 6px;
    font-size: 12px;
}

/* Responsive */
@media (max-width: 992px) {
    .conditions-container {
        flex-direction: column;
    }
}


/* --- Gallery & Stats Section Styles --- */
.gallery-stats-section {
    padding: 40px 60px 120px;
    background-color: #ffffff;
}

/* Gallery Layout */
.image-gallery {
    display: flex;
    gap: 20px;
    width: 100%;
    margin-bottom: 50px;
    height: auto;
}

.gallery-item {
    flex: 1;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Stats Layout */
.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    width: 100%;
    max-width: 1683px;
    height: auto;
    margin: 0 auto;
}

.stat-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    height: auto;
}

.stat-icon {
    width: 35px;
    height: 35px;
    background: #fff0f5;
    /* Light pink background */
    color: #ff5c8d;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-bottom: 10px;
}

.right-side {
    border-right: 2px solid #E7E7E8;
    height: 200px;
}

.stat-column h2 {
    font-size: 28px;
    color: #333;
    font-weight: 700;
}

.stat-subtitle {
    font-weight: 700;
    color: #37845e;
    /* Green color from design */
    font-size: 14px;
    line-height: 1.3;
}

.stat-description {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .image-gallery {
        flex-direction: column;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }

    .gallery-stats-section {
        padding: 20px;
    }
}


/* --- Best Physiotherapists Section --- */
.physio-team-section {
    padding: 80px 100px;

}

.physio-container {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1400px;
    background-color: rgba(224, 224, 224, 0.3);
    padding: 4rem 4rem;
    margin: 0 auto;
    border-radius: 2rem;

}

.physio-content {
    flex: 1.2;
    /* Content takes more space than the image */
}

.badge {
    font-family: Manrope;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -2%;
    display: inline-block;
    margin-bottom: 20px;
}

.section-title {
    font-size: 32px;
    color: #222;
    margin-bottom: 20px;
    font-weight: 700;
}

.team-intro {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.visionary-heading {
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
}

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

.visionary-details li {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
}

.visionary-details li::before {
    content: "•";
    color: #ccc;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.physio-image {
    flex: 1;
}

.physio-image img {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    /* Matches the rounded corners in the design */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Responsive adjustments for mobile */
@media (max-width: 992px) {
    .physio-container {
        flex-direction: column;
        /* Stack vertically on smaller screens */
        text-align: left;
    }

    .physio-team-section {
        padding: 40px 20px;
    }
}

/* Container Spacing */
.expert-team-section {
    padding: 80px 60px;
    background-color: #ffffff;
    max-width: 1400px;
    margin: 0 auto;
}

/* Header with Flexbox */
.team-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

.header-text {
    max-width: 800px;
}

.badge-green {
    background-color: #e8f5e9;
    color: #37845e;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.section-title {
    font-size: 32px;
    color: #1a1a1a;
    font-weight: 700;
}

.team-description {
    font-size: 14px;
    color: #666;
    width: 100%;
    line-height: 1.6;
    margin-top: 10px;
}

/* Slider Controls */
.slider-nav {
    display: flex;
    gap: 12px;
}

.nav-arrow {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #eee;
    background: #f8f8f8;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.nav-arrow.active {
    background: #ff5c8d;
    /* Matches your brand pink */
    color: white;
    border: none;
}

/* Grid Layout */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    border: gray;
}

/* Doctor Cards with Glassmorphism Overlay */
.team-member-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 420px;
    box-shadow: 0 4px 15px rgba(124, 123, 123, 0.05);

}

.team-member-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member-card:hover img {
    transform: scale(1.05);
}


.member-overlay {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    background: rgba(25, 35, 51, 0.4);
    backdrop-filter: blur(10px);
    /* The Glass Effect */
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    color: white;
}

.member-overlay h4 {
    font-size: 16px;
    margin-bottom: 3px;
    font-weight: 600;
}

.member-overlay span {
    font-size: 11px;
    opacity: 0.9;
    letter-spacing: 0.3px;
}

/* Responsive Design */
@media (max-width: 1100px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .team-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .expert-team-section {
        padding: 40px 20px;
    }
}

/* --- Testimonials Section --- */
.testimonials {
    background-color: #37845e;
    /* Matches footer brand green */
    padding: 80px 60px;
    color: #ffffff;
    text-align: center;
}

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

.testimonials .header {
    margin-bottom: 50px;
}

.testimonials .badge {
    background: rgb(255, 255, 255);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    display: inline-block;
    margin-bottom: 20px;
}

.testimonials h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.testimonials .header p {
    font-size: 15px;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.6;
}

/* Slider and Cards */
.testimonial-slider {
    overflow: hidden;
    margin-bottom: 40px;
}

.slider-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testimonials .card {
    background: rgba(255, 255, 255, 0.1);
    /* Glassmorphism card */
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    text-align: left;
    height: 100%;
}

.testimonials .content {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 25px;
    min-height: 120px;
}

.testimonials .profile {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonials .profile img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonials .info h4 {
    font-size: 15px;
    margin-bottom: 4px;
}

.testimonials .stars {
    color: #ffb400;
    /* Gold/Yellow stars */
    font-size: 12px;
}

/* Controls */
.testimonials .controls {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.arrow-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: #ff5c8d;
    color: white;
    cursor: pointer;
    font-size: 18px;
    transition: 0.3s;
}

.arrow-btn.active {
    background: #ff5c8d;
    /* Matches brand pink button */
    border-color: #ff5c8d;
}

/* Responsive */
@media (max-width: 992px) {
    .slider-wrapper {
        grid-template-columns: 1fr;
    }
}

/* --- FAQ Section Styles --- */
.faq-section {
    padding: 100px 60px;
    background-color: #ffffff;
}

.faq-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    /* Image side slightly smaller than text side */
    gap: 80px;
    max-width: 1250px;
    margin: 0 auto;
}

/* Left Content */
.faq-info .badge-green {
    background: #e8f5e9;
    color: #37845e;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.faq-info h1 {
    font-size: 38px;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 20px;
}

.faq-info p {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
    margin-bottom: 40px;
}

.faq-image-wrapper img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

/* Accordion Styles */
.faq-accordion {
    display: flex;
    flex-direction: column;
}

.accordion-item {
    border-bottom: 1px solid #eee;
}

.accordion-header {
    width: 100%;
    padding: 25px 0;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 17px;
    font-weight: 600;
    color: #333;
    text-align: left;
    cursor: pointer;
    transition: color 0.3s ease;
}

.accordion-header:hover {
    color: #37845e;
    /* Brand Green */
}

.accordion-header .icon {
    font-size: 24px;
    color: #ccc;
    transition: transform 0.3s ease;
}

/* Content logic */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.accordion-content p {
    padding-bottom: 25px;
    color: #666;
    line-height: 1.7;
    font-size: 14.5px;
}

/* Active State */
.accordion-item.active .accordion-content {
    max-height: 200px;
    /* Adjust as needed */
}

.accordion-item.active .accordion-header {
    color: #1a1a1a;
}

.accordion-item.active .icon {
    transform: rotate(0deg);
    color: #ff5c8d;
    /* Brand Pink when active */
}

/* Responsive */
@media (max-width: 1024px) {
    .faq-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .faq-section {
        padding: 60px 20px;
    }
}



.site-footer {
    background-color: #3e7b56;
    /* The green background */
    color: #ffffff;
    padding: 60px 20px 20px;
    position: relative;
    height: auto;
}

.footer-container {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

/* White Card Section (Logo & Map) */
.footer-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 20px;
    flex: 1;
    min-width: 300px;
    max-width: 450px;
    color: #333;
}

.brand-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.footer-logo {
    max-width: 150px;
    height: auto;
}

.social-links span {
    font-size: 11px;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    color: #555;
}

.icons {
    display: flex;
    gap: 10px;
}

.icons img {
    width: 24px;
    height: 24px;
    transition: transform 0.3s;
}

.icons img:hover {
    transform: scale(1.1);
}

.map-container img {
    width: 100%;
    border-radius: 8px;
    display: block;
}

/* Link Columns */
.footer-column {
    flex: 0 1 200px;
}

.footer-column h3 {
    font-size: 14px;
    margin-bottom: 20px;
    letter-spacing: 1px;
    font-weight: 600;
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Contact Info Column */
.contact-info p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

/* Floating Action Buttons */
.floating-actions {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 200px;
    z-index: 1000;
}

.btn {
    gap: 1rem;
}

.float-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
    min-width: 200px;
}

.float-btn:hover {
    transform: translateY(-5px);
}

.call-btn {
    background-color: #2b78c5;
}

.wa-btn {
    background-color: #25d366;
}

.btn-text {
    font-size: 12px;
    line-height: 1.2;
}

.btn-text strong {
    font-size: 14px;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    font-size: 13px;
    color: #e0e0e0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-card {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .brand-area {
        flex-direction: column;
        gap: 20px;
    }

    .floating-actions {
        right: 15px;
        bottom: 15px;
        position: fixed;
        width: auto;
    }

    .float-btn {
        min-width: unset;
        padding: 10px 15px;
    }
}

/* --- Modal Styles --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal-container {
    width: 100%;
    max-width: 1000px;
    background-color: #ffffff;
    border-radius: 20px;
    display: flex;
    overflow: hidden;
    position: relative;
    box-shadow: 0px 16px 40px rgba(0, 0, 0, 0.2);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    color: #333;
    cursor: pointer;
    z-index: 10;
}

.modal-image {
    flex: 1;
    display: block;
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-form {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.modal-form h2 {
    font-size: 24px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 14px;
    outline: none;
}

.location-note {
    font-size: 11px;
    color: #666;
    margin-top: 4px;
}

.location-note span {
    color: #e91e63;
}

.modal-submit-btn {
    background-color: #e91e63;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.3s;
}

.modal-submit-btn:hover {
    background-color: #d81b60;
}

@media (max-width: 768px) {
    .modal-container {
        flex-direction: column;
        max-height: 90vh;
        overflow-y: auto;
    }

    .modal-image {
        height: 200px;
    }

    .modal-form {
        padding: 25px;
    }
}