:root {
    /* Primary Brand Colors */
    --brand-green: #009244;
    --brand-yellow: #fcc300;
    --brand-red: #EB1C24;

    /* Yellow Variations (PRIMARY) */
    --yellow-primary: #fcc300;
    --yellow-light: #FFD700;
    --yellow-dark: #D4A300;
    --yellow-lighter: rgba(252, 195, 0, 0.1);
    --yellow-lightest: rgba(252, 195, 0, 0.05);

    /* Green Variations (Secondary/Accent) */
    --green-primary: #009244;
    --green-light: #00B050;
    --green-dark: #007A3D;
    --green-lighter: rgba(0, 146, 68, 0.1);
    --green-lightest: rgba(0, 146, 68, 0.05);

    /* Red Variations (Emphasis/CTA) */
    --red-primary: #EB1C24;
    --red-light: #FF4D56;
    --red-dark: #C41017;
    --red-lighter: rgba(235, 28, 36, 0.1);
    --red-lightest: rgba(235, 28, 36, 0.05);

    /* Legacy Support (mapped to yellow as primary) */
    --primary-teal: var(--yellow-primary);
    --light-teal: var(--yellow-light);

    /* Neutral Colors */
    --aqua: #E0FFFF;
    --soft-blue: #F0F8FF;
    --white: #FFFFFF;
    --text-dark: #1A202C;
    --text-gray: #4A5568;
    --text-light: #6B7280;

    /* Backgrounds with Brand Colors - Yellow as Primary */
    --gradient-bg: linear-gradient(135deg, rgba(252, 195, 0, 0.05) 0%, rgba(0, 146, 68, 0.05) 50%, rgba(235, 28, 36, 0.05) 100%);
    --gradient-primary: linear-gradient(135deg, var(--yellow-primary) 0%, var(--yellow-light) 100%);
    --gradient-accent: linear-gradient(135deg, var(--green-primary) 0%, var(--green-light) 100%);
    --gradient-cta: linear-gradient(135deg, var(--red-primary) 0%, var(--red-light) 100%);

    /* Legacy Support - Yellow as Primary */
    --primary-teal: var(--yellow-primary);
    --primary-teal-light: var(--yellow-light);
    --primary-teal-dark: var(--yellow-dark);

    /* Extended Neutral Colors */
    --warm-cream: #fef9f3;
    --soft-peach: #fff5ed;
    --warm-white: #fefefe;
    --text-medium: #4b5563;
    --border-light: #e5e7eb;

    /* Shadows */
    --shadow-soft: rgba(0, 146, 68, 0.08);
    --shadow-medium: rgba(0, 146, 68, 0.12);
    --shadow-hover: rgba(0, 146, 68, 0.16);

    /* Spacing Variables */
    --spacing-xs: 0.5rem;
    --spacing-sm: 0.8rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2.0rem;
    --spacing-xl: 4.0rem;

    /* Border Radius Variables */
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--soft-blue);
    color: var(--text-dark);
    line-height: 1.6;
}

/* Typography Colors */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-dark);
}

h1 span,
h2 span,
h3 span {
    color: var(--yellow-primary);
}

a {
    color: var(--yellow-primary);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--red-primary);
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--gradient-bg);
    overflow: hidden;
    padding: 6rem 2rem;
}

/* Decorative Background Elements */
.hero-bg-circle {
    position: absolute;
    border-radius: 50%;
    background: var(--yellow-lighter);
    z-index: 0;
}

.circle-1 {
    background: var(--yellow-lighter);
}

.circle-2 {
    background: var(--green-lighter);
}

.circle-1 {
    width: 500px;
    height: 500px;
    top: -100px;
    right: -100px;
}

.circle-2 {
    width: 300px;
    height: 300px;
    bottom: 50px;
    left: -50px;
}

.container {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    position: relative;
    z-index: 1;
    align-items: center;
}

/* Left Content */
.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.badge {
    display: inline-block;
    background: var(--yellow-lighter);
    color: var(--yellow-dark);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    width: fit-content;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge.badge-green {
    background: var(--green-lighter);
    color: var(--green-primary);
}

.badge.badge-red {
    background: var(--red-lighter);
    color: var(--red-primary);
}

h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 700;
    color: var(--text-dark);
}

h1 span {
    color: var(--yellow-primary);
}

h1 span.accent-green {
    color: var(--green-primary);
}

h1 span.accent-red {
    color: var(--red-primary);
}

.subheadline {
    font-size: 1.25rem;
    color: var(--text-gray);
    max-width: 500px;
}

.cta-group {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(252, 195, 0, 0.3);
    border: none;
    cursor: pointer;
    border: 1px solid var(--brand-yellow);
}

.btn-primary:hover {
    background: var(--gradient-cta);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(252, 195, 0, 0.4);
    color: var(--white);
    border: 1px solid var(--brand-red);
}

.btn-accent {
    background: var(--gradient-accent);
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(0, 146, 68, 0.3);
    border: none;
    cursor: pointer;
}

.btn-accent:hover {
    background: var(--green-dark);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 146, 68, 0.4);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    font-size: 0.95rem;
}

.btn-lg {
    padding: 1.1rem 2.2rem;
    font-size: 1.05rem;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--green-primary);
    color: var(--green-primary);
    box-shadow: none;
}

.btn-outline:hover {
    background: var(--red-lighter);
    border-color: var(--red-primary);
    transform: none;
    color: var(--red-primary);
}

.btn-therapy.btn.btn-primary {
    width: max-content;
}

.secondary-text {
    font-size: 0.95rem;
    color: var(--text-gray);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.secondary-text i {
    color: var(--yellow-primary);
}

.secondary-text i.accent-green {
    color: var(--green-primary);
}

.secondary-text i.accent-red {
    color: var(--red-primary);
}

/* Right Content - Image */
.hero-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    background-color: #e0e0e0;
    height: 520px;
    object-fit: cover;
}

/* Floating Service Cards */
.services-grid {
    position: relative;
    margin-top: 4rem;
    display: flex;
    gap: 1.5rem;
    width: 90%;
    max-width: 1000px;
    justify-content: center;
    z-index: 2;
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.8rem;
    flex: 1;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.service-card:hover {
    transform: translateY(-5px);
}

.icon-box {
    width: 50px;
    height: 50px;
    background: var(--yellow-lighter);
    border-radius: 12px;
    display: flex;
    font-size: 1.5rem;
    justify-content: center;
    align-items: center;
}

.main-banner {
    margin-top: 84px;
}

/* Hero Section Responsive */

@media (max-width: 1024px) {
    .main-banner {
        margin-top: 80px;
    }
}

@media (max-width: 992px) {
    .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-content {
        align-items: center;
    }

    .subheadline {
        margin: 0 auto;
    }

    .services-grid {
        width: 100%;
        margin-top: 3rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-section {
        height: auto;
        min-height: auto;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .hero-image {
        height: 500px;
    }

    .services-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .main-banner {
        margin-top: 70px;
    }

    .btn-lg {
        width: 100%;
        justify-content: center;
    }

    .btn i {
        font-size: 0.9rem;
    }

    .hero-section {
        padding: 4rem 2rem;
    }
}

@media (max-width: 640px) {
    .btn i {
        font-size: 0.9rem;
    }

    .hero-image {
        height: 300px;
    }

    .hero-section {
        padding: 3rem 1.5rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    .container {
        gap: 2rem;
    }

    .btn-primary {
        width: 100%;
        justify-content: center;
        display: flex;
    }

    .cta-group {
        flex-direction: column;
        width: 100%;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .main-banner {
        margin-top: 65px;
    }
}

/* Therapy Section Responsive */
@media (max-width: 1200px) {
    .therapy-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .therapy-highlights {
        padding: 4rem 1.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .therapy-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .therapy-highlights {
        padding: 3rem 1rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .therapy-card {
        padding: 2rem 1.5rem;
    }
}

/* =====================
   FAQ - Site Section
   Reuses site theme variables for consistent look
   ===================== */
   .faq {
    
   }
.site-faq-section{
    max-width: 940px;
    margin: 40px auto;
    padding: 4rem 2rem; /* match other sections (top/bottom spacing) */
    background: linear-gradient(135deg, var(--warm-cream) 0%, var(--soft-peach) 100%);
    border-radius: 14px;
    box-shadow: 0 10px 30px var(--shadow-soft);
    border: 1px solid var(--border-light);
}

.site-faq-section h2{
    margin: 0 0 16px 0;
    font-size: 1.55rem;
    color: var(--green-primary);
    font-weight: 700;
}

.site-faq-wrapper{
    display: grid;
    gap: 18px;
    grid-template-columns: 1fr; /* stacked single-column layout for improved readability */
    align-items: start;
}

.site-faq-item{
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(75,85,99,0.06);
    box-shadow: 0 8px 22px rgba(6, 30, 27, 0.04);
    transition: transform 180ms ease, box-shadow 220ms ease, border-color 180ms ease;
    display: block;
}

/* Make each FAQ item span full width of its grid cell and keep question visually separated */
.site-faq-item .site-faq-question{
    padding-right: 12px;
    position: relative; /* for accent bar */
    padding-left: 26px; /* space for left accent */
}

/* left accent bar on each item (subtle healthcare accent) */
.site-faq-item .site-faq-question::before{
    content: '';
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 44px;
    border-radius: 4px;
    background: linear-gradient(180deg, var(--yellow-primary), var(--yellow-light));
    box-shadow: 0 6px 18px rgba(0,146,68,0.08);
}

.site-faq-item[open]{
    transform: translateY(-3px);
    box-shadow: 0 14px 38px rgba(6,30,27,0.06);
    border-color: rgba(0,146,68,0.08);
}

.site-faq-question{
    cursor: pointer;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    background: transparent;
}

.site-faq-question::-webkit-details-marker{ display: none; }

.site-faq-question:hover{
    color: var(--yellow-primary);
}

.site-faq-answer{
    padding: 0 18px 18px 18px;
    color: var(--text-light);
    font-weight: 400;
    line-height: 1.6;
    font-size: 0.98rem;
    overflow: hidden;
    max-height: 0;
    transition: max-height 360ms cubic-bezier(.2,.9,.2,1);
    border-top: 1px solid var(--border-light);
    background: rgba(254,249,243,0.6); /* gentle cream tone for answer area */
}

.site-faq-item[open] .site-faq-answer{
    max-height: 780px; /* practical max for expand animation */
    transition-duration: 420ms;
}

.site-faq-answer p{ margin: 12px 0 0 0; }

.site-faq-question::after{
    content: '+';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-size: 20px;
    color: var(--yellow-primary);
    border-radius: 10px;
    background: var(--yellow-lighter);
    transition: transform 220ms ease, background-color 180ms ease, color 180ms ease;
    flex-shrink: 0;
}

.site-faq-item[open] .site-faq-question::after{
    content: '−';
    background: var(--yellow-lighter);
    color: var(--yellow-primary);
    transform: scale(1.02);
}

@media (max-width: 1024px){
    .site-faq-section{ max-width: 96%; }
}


@media (max-width: 768px){
    .site-faq-question{ padding: 12px; font-size: 0.98rem; padding-left: 22px; }
    .site-faq-answer{ padding: 0 12px 12px 12px; }
    .site-faq-question::after{ width: 36px; height: 36px; }
    .site-faq-item .site-faq-question::before{ left: 8px; height: 38px; }
}



@media (max-width: 480px){
    .site-faq-section{ padding: 2rem 2rem; border-radius: 10px; }
    .site-faq-wrapper{ gap: 10px; }
}
