/* ============================================================
       DESIGN TOKENS
    ============================================================ */
:root {
    --font-base: "Raleway", sans-serif;
    --color-heading: #1a1a2e;
    --color-body: #444444;
    --color-muted: #4a5568;
    --color-accent: #4a90c4;
    --color-teal: #5bb8d4;
    --fs-h1: clamp(2rem, 5vw, 3rem);
    --fs-h2: clamp(1.6rem, 3vw, 2.1rem);
    --fs-quote: clamp(1.4rem, 2.6vw, 2rem);
    --fs-body: 1rem;
    --fs-small: 0.93rem;
}

/* ============================================================
       GLOBAL BASE
    ============================================================ */

/* Large pull-quote – shared by sections 4, 5, 7 */
.section-quote {
    font-weight: 200;
    font-size: 40px;
    color: var(--gray-color);
    line-height: 1.6;
    margin: 0;
}

/* Accent colour highlight */
.text-highlight {
    color: var(--color-accent);
}

/* Shared image style */
.section-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

span.bull-icon img {
    height: 20px;
}

/* ============================================================
       SHARED LIST (sections 4, 7)
    ============================================================ */
.bullet-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.bullet-list li {
    display: flex;
    align-items: baseline;
    gap: 14px;
    font-size: 20px;
    font-weight: 300;
    color: var(--brand-dark);
    line-height: 1.5;
}

/* ============================================================
       HERO
    ============================================================ */
.hero-section {
    position: relative;
    width: 100%;
    height: 300px;
    background:
        linear-gradient(104.57deg,
            rgba(30, 79, 122, 0.1) -21.01%,
            rgba(124, 198, 230, 0.1) 45.11%,
            rgba(255, 255, 255, 0.1) 111.23%),
        url("../img/hero-banner.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-wave {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.hero-wave svg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 50px 20px;
}

.hero-title {
    color: var(--brand-dark);
    line-height: 1.25;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-weight: 400;
    font-size: 28px;
    color: var(--gray-color);
}

/* ============================================================
       SECTION 3 – CAUSE CARDS
    ============================================================ */
.cause-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background-color: #d9f4ff6b;
    border-radius: 10px;
    padding: 18px 22px;
    font-weight: 500;
    font-size: 20px;
    color: var(--brand-dark);
    transition: box-shadow 0.2s ease;
}

.cause-card:hover {
    box-shadow: 0 4px 16px rgba(74, 144, 196, 0.15);
}

/* ============================================================
       SECTION 5 – TREATMENT CHECKLIST
    ============================================================ */
.treat-check-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background-color: #7cc6e6;
    color: var(--brand-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin-top: 2px;
}

.treat-item-title {
    font-weight: 500;
    font-size: 1.2rem;
    color: var(--brand-dark);
    margin-bottom: 4px;
}

/* ============================================================
       SECTION 6 – CONDITION CARDS
    ============================================================ */
.cond-card {
    background-color: #ffffff;
    border: 1px solid #7cc6e6;
    border-radius: 14px;
    padding: 28px 16px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    height: 100%;
    transition:
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.cond-card:hover {
    box-shadow: 0 6px 20px rgba(91, 184, 212, 0.2);
    transform: translateY(-3px);
}

.cond-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cond-icon img {
    width: 54px;
    height: 54px;
}

.cond-label {
    font-weight: 500;
    font-size: 18px;
    color: #3e3e3e;
    margin: 0;
    line-height: 1.4;
}

/* ============================================================
       SECTION 7 – SEEK TREATMENT CARD
    ============================================================ */
.seek-card {
    background-color: rgb(243 248 254) !important;
    border-radius: 14px;
    padding: 30px 28px;
}

/* ============================================================
       SECTION 8 – CTA BANNER
    ============================================================ */
.cta-faq-section,
.cta-section {
    position: relative;
    background-color: #ebebeb;
    margin-top: 220px;
    padding-top: 0 !important;
    overflow: visible;
}

.cta-faq-section .container,
.cta-section .container {
    position: relative;
}

.cta-banner {
    position: relative;
    margin: -150px auto 48px;
    width: 100%;
    box-sizing: border-box;
    z-index: 1;
    background-color: var(--brand-dark);
    background-image:
        url(../img/is-physio-top.svg), url(../img/is-physio-bottom.svg);
    background-position:
        top left,
        bottom right;
    background-repeat: no-repeat, no-repeat;
    background-size: auto, auto;
    text-align: center;
    padding: 100px 50px;
    border-radius: 25px;
}

.cta-title {
    color: #ffffff;
}

.cta-subtitle {
    color: #ebebeb;
    margin-bottom: 28px;
}

.cta-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background-color: #ffffff21;
    border-radius: 50px;
    padding: 16px 16px 16px 28px;
    flex-wrap: wrap;
}

.cta-desc {
    color: #ebebeb;
    font-weight: 300;
    margin: 0;
    text-align: left;
    flex: 1;
    min-width: 200px;
}

.cta-btn {
    background: linear-gradient(135deg, #3a7a9a, #4a90b0);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 50px;
    padding: 14px 32px;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.2s ease;
    flex-shrink: 0;
}

.cta-btn:hover {
    opacity: 0.88;
    color: #ffffff;
}

@media (max-width: 991.98px) {

    .cta-faq-section,
    .cta-section {
        margin-top: 170px;
    }

    .cta-banner {
        margin-top: -120px;
        padding: 72px 28px;
        margin-bottom: 36px;
    }

    .cta-bottom-row {
        border-radius: 28px;
        padding: 18px;
    }

    .cta-desc {
        min-width: 100%;
    }

    .cta-btn {
        width: 100%;
        text-align: center;
    }
}

/* ============================================================
       SECTION 8 – FAQ ACCORDION
    ============================================================ */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: none !important;
    animation: none !important;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 26px;
    font-weight: 500;
    font-size: 20px;
    color: var(--color-heading);
    text-align: left;
    cursor: pointer;
    transition: none !important;
    animation: none !important;
}

.faq-question:hover {
    background-color: var(--brand-light);
}

.faq-chevron {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.faq-answer {
    font-size: var(--fs-small);
    color: #555;
    line-height: 1.7;
    margin: 0;
    padding: 0 26px 22px;
}

.work-section .why-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 13px;
    width: 6px;
    height: 6px;
    background: var(--brand-light);
    border-radius: 50%;
}
