/**
 * Teal theme — CR Eye Clinic
 * Palette: #154669, #2F7F7A, #489FB5, #D6F3F4, #f0f0f0, #242424 (+ #fff contrast)
 */
:root {
    --heading-font: 'Sofia Pro', sans-serif;
    --body-font: 'Proxima Nova', 'Source Sans 3', sans-serif;
    --primary-color: #489fb5;
    --primary-color-rgb: 72, 159, 181;
    --primary-dark: #154669;
    --primary-dark-rgb: 21, 70, 105;
    --primary-mid: #2F7F7A;
    --primary-mid-rgb: 47, 127, 122;
    --primary-rgba: 72, 159, 181;
    --secondary-color: #489fb5;
    --secondary-color-rgb: 72, 159, 181;
    --teal-ice: #D6F3F4;
    --bg-neutral: #f0f0f0;
    --text-dark: #242424;
    /* Typography scale aligned with hero: lead = 1.25rem, relations preserved */
    --body-font-size: 1rem;
    --h1-font-size: 4rem;      /* 64px – hero title */
    --h2-font-size: 3rem;      /* 48px */
    --h3-font-size: 1.75rem;   /* 28px */
    --h4-font-size: 1.25rem;   /* 20px – same as hero lead for subheads */
    --h5-font-size: 1.125rem;  /* 18px */
    --h6-font-size: 1rem;      /* 16px */
    --mainmenu-font-size: 1.0625rem; /* 17px – matches nav/buttons */
    --text-lead: 1.25rem;      /* hero lead size */
    --text-sm: 0.875rem;       /* 14px */
    --text-xs: 0.8125rem;      /* 13px */
    --text-2xs: 0.75rem;       /* 12px */
}

/* Override base theme variables so headings/body use hero-aligned scale site-wide */
* {
    --body-font-size: 1rem;
    --h1-font-size: 4rem;
    --h2-font-size: 3rem;
    --h3-font-size: 1.75rem;
    --h4-font-size: 1.25rem;
    --h5-font-size: 1.125rem;
    --h6-font-size: 1rem;
    --mainmenu-font-size: 1.0625rem;
}

body {
    font-family: var(--body-font);
    font-size: var(--body-font-size);
    color: #242424;
}

/* Headings: Sofia Pro Semi Bold (600) */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: var(--heading-font) !important;
    font-weight: 600 !important;
}

/* Section intro text: match nav bar font size and weight */
.section-intro {
    font-size: var(--mainmenu-font-size) !important;
    font-weight: 400 !important;
}

/* Process section: "Our Process" more prominent; step text matches nav/section-intro */
.process-subtitle {
    font-size: 1.25rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.02em;
}
#section-process .de-step h4 {
    font-size: var(--text-lead) !important;
    font-weight: 600 !important;
}
#section-process .de-step p.step-desc,
.step-desc {
    font-size: var(--mainmenu-font-size) !important;
    font-weight: 400 !important;
    line-height: 1.5;
}
/* Process step labels – Step 1, Step 2, etc. for easy scanning */
#section-process .step-label {
    display: block;
    font-size: var(--text-sm) !important;
    font-weight: 700 !important;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0.75rem;
}
#section-process .de-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
#section-process .de-step .step-label {
    order: -1;
}

/* ========== Typography harmony: one scale, luxury ratio ========== */
/* Body-level copy: nav size + regular weight where we want harmony */
footer p,
footer .widget ul li a,
footer .widget span.text-dark,
.professional-gateway p {
    font-size: var(--mainmenu-font-size) !important;
    font-weight: 400 !important;
    line-height: 1.5;
}
.bg-gradient-teal p {
    font-size: var(--mainmenu-font-size) !important;
    font-weight: 400 !important;
    line-height: 1.5;
}
/* CTA lead line */
.bg-gradient-teal .col-lg-8 p {
    font-size: var(--text-lead) !important;
    font-weight: 400 !important;
}
/* Utility font sizes mapped to scale (ratio preserved) */
.fs-12 { font-size: var(--text-2xs) !important; }
.fs-14 { font-size: var(--text-sm) !important; }
.fs-15 { font-size: var(--mainmenu-font-size) !important; }
.fs-16 { font-size: var(--body-font-size) !important; }
.fs-18 { font-size: var(--h5-font-size) !important; }
.fs-20 { font-size: var(--text-lead) !important; }
.fs-24 { font-size: 1.5rem !important; }
.fs-32 { font-size: 2rem !important; }
.fs-36 { font-size: 2.25rem !important; }
.fs-40 { font-size: 2.5rem !important; }
.fs-48 { font-size: 3rem !important; }
/* Font weights: only 400 (body), 600 (subheads), 700 (emphasis) */
.fw-bold { font-weight: 700 !important; }
.fw-600 { font-weight: 600 !important; }
/* Footer widget titles (Treatments, About Us, Contact Us) */
footer .widget h5,
.widget-footer-title {
    font-size: var(--text-sm) !important;
    font-weight: 600 !important;
    letter-spacing: 0.1em;
}
/* Footer contact labels (Clinic Location, Call Us, etc.) */
footer .widget .fw-bold.text-dark.mb-2,
footer .widget > div > .fw-bold {
    font-size: var(--mainmenu-font-size) !important;
    font-weight: 600 !important;
}
/* Professional gateway heading – title larger than buttons */
.professional-gateway h5 {
    font-size: var(--text-lead) !important;
    font-weight: 600 !important;
}
/* Hero satisfaction line (99.4% Patient Satisfaction) – nav/label tier */
.hero-satisfaction-text {
    font-size: var(--mainmenu-font-size) !important;
    font-weight: 600 !important;
    line-height: 1.4;
}
.hero-satisfaction-text .fw-bold {
    font-size: var(--mainmenu-font-size) !important;
    font-weight: 700 !important;
}
/* Team card: full typography alignment (role, name, specialty, experience, button) */
#section-team .clinical-tag {
    font-size: var(--text-sm) !important;
    font-weight: 600 !important;
    letter-spacing: 0.04em;
}
#section-team h4.mb-1 {
    font-size: var(--h4-font-size) !important;
    font-weight: 600 !important;
}
#section-team .id-color.fw-bold,
#section-team p.mb-1.id-color {
    font-size: var(--mainmenu-font-size) !important;
    font-weight: 600 !important;
}
#section-team .fs-12.fw-600,
#section-team p.mb-3.fs-12 {
    font-size: var(--text-xs) !important;
    font-weight: 600 !important;
}
#section-team .btn-main.btn-line-extra {
    font-size: var(--mainmenu-font-size) !important;
    font-weight: 600 !important;
}
/* Two specialist cards: symmetric, premium layout */
#section-team .row.justify-content-center:not(.mb-2) {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
#section-team .row.mb-2 {
    max-width: 100%;
}
#section-team .specialist-card {
    box-shadow: 0 4px 20px rgba(47, 127, 122, 0.08);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
#section-team .specialist-card:hover {
    box-shadow: 0 12px 40px rgba(47, 127, 122, 0.15);
    transform: translateY(-4px);
}
#section-team .row.mb-2 h2,
#section-team .row:first-of-type h2 {
    white-space: nowrap;
}
#section-team .section-intro {
    white-space: nowrap;
    text-align: center;
}
@media (max-width: 576px) {
    #section-team .row.mb-2 h2,
    #section-team .row:first-of-type h2 {
        white-space: normal;
    }
    #section-team .section-intro {
        white-space: normal;
    }
}
/* Testimonial: quote and author name */
#testimonial-carousel .item p {
    font-size: var(--mainmenu-font-size) !important;
    font-weight: 400 !important;
    line-height: 1.5;
}
#testimonial-carousel .text-dark.fw-bold.lh-1,
#testimonial-carousel .de-testi-by {
    font-size: var(--mainmenu-font-size) !important;
    font-weight: 600 !important;
}
#testimonial-carousel small {
    font-size: var(--text-xs) !important;
    font-weight: 400 !important;
}
/* Learning Hub card links */
.learning-hub-link {
    font-size: var(--mainmenu-font-size) !important;
    font-weight: 600 !important;
}
/* Subfooter / copyright */
.subfooter .de-flex-col,
.subfooter .menu-simple a {
    font-size: var(--text-xs) !important;
    font-weight: 400 !important;
}
/* Stats block (de_count) – numbers + labels on scale */
.de_count h3 {
    font-size: 2.5rem !important;
    font-weight: 600 !important;
}
.de_count-label {
    font-size: var(--mainmenu-font-size) !important;
    font-weight: 600 !important;
    letter-spacing: 0.02em;
    display: block;
    margin-top: 0.25rem;
}
.de_count {
    font-size: var(--text-sm) !important;
    font-weight: 400 !important;
}
/* Uptitle / eyebrow (Verified Proof, etc.) */
.uptitle {
    font-size: var(--text-sm) !important;
    font-weight: 600 !important;
    letter-spacing: 0.05em;
}

/* View All Treatments grid: card description text */
.treatment-card .treatment-content p,
#treatments-grid .treatment-content p {
    font-size: var(--mainmenu-font-size) !important;
    font-weight: 400 !important;
    line-height: 1.5;
}
.treatment-card .treatment-content h4,
#treatments-grid .treatment-content h4 {
    font-size: var(--h4-font-size) !important;
    font-weight: 600 !important;
}

/* FAQ: tab labels, question titles, answer body */
#section-faq .de-tab .d-tab-nav li {
    font-size: var(--mainmenu-font-size) !important;
    font-weight: 600 !important;
}
#section-faq .accordion-section-title {
    font-size: var(--text-lead) !important;
    font-weight: 400 !important;
}
#section-faq .accordion-section-content {
    font-size: var(--mainmenu-font-size) !important;
    font-weight: 400 !important;
    line-height: 1.5;
}
#section-faq .subtitle {
    font-size: var(--text-sm) !important;
    font-weight: 600 !important;
}

/* Font resizer in nav bar (readable on transparent + white header) */
header .font-resizer-nav {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(47, 127, 122, 0.25);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    margin-right: 1.25rem;
}
header .font-resizer-nav button {
    color: rgba(36, 36, 36, 0.7);
}
header .font-resizer-nav button:hover {
    color: #242424;
    background-color: rgba(47, 127, 122, 0.12);
}
header .font-resizer-nav button.active {
    background-color: #2F7F7A;
    color: #fff;
    box-shadow: 0 2px 8px rgba(47, 127, 122, 0.3);
}

/* Logo images */
#logo .logo-img {
    max-height: 64px;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
}
.f-logo .footer-logo-img {
    max-width: 200px;
    max-height: 80px;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
}

/* ========== Buttons (unified height for premium symmetry) ========== */
.btn-main,
a.btn-main,
.btn-main.fx-slide,
a.btn-main.btn-hero-solid,
.btn-hero-solid,
.btn-main.btn-line-extra,
span.btn-view-all-treatments,
.btn-view-all-treatments,
.btn-hero-outline,
.btn-cta-dark-hover,
.btn-outline-prof,
.filter-reset-btn {
    min-height: 48px !important;
    padding: 12px 24px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
    line-height: 1.2 !important;
    font-size: var(--mainmenu-font-size) !important;
    font-weight: 400 !important;
}

/* ========== Buttons ========== */
.btn-main,
a.btn-main,
.btn-main.fx-slide,
a.btn-main.btn-hero-solid,
.btn-hero-solid,
span.btn-view-all-treatments,
.btn-view-all-treatments,
.float-chat-btn,
.sticky-bar .btn-main {
    background-color: #2F7F7A !important;
    border-color: #2F7F7A !important;
    color: #fff !important;
    font-size: var(--mainmenu-font-size) !important;
    font-weight: 400 !important;
    letter-spacing: 0.04em;
    border-radius: 8px !important;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 4px 14px rgba(47, 127, 122, 0.25), 0 2px 6px rgba(0, 0, 0, 0.06);
}
.btn-main:hover,
a.btn-main:hover,
.btn-main.fx-slide:hover,
a.btn-main.btn-hero-solid:hover,
.btn-hero-solid:hover,
span.btn-view-all-treatments:hover,
.btn-view-all-treatments:hover,
.float-chat-btn:hover {
    background-color: #154669 !important;
    border-color: #154669 !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(21, 70, 105, 0.35), 0 4px 12px rgba(21, 70, 105, 0.2);
}
.btn-main.btn-line-extra {
    border: 2px solid #2F7F7A !important;
    color: #2F7F7A !important;
    background: transparent !important;
    letter-spacing: 0.04em;
    box-shadow: none;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.btn-main.btn-line-extra:hover {
    background: #154669 !important;
    border-color: #154669 !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(21, 70, 105, 0.3);
}
span.btn-view-all-treatments,
.btn-view-all-treatments {
    background: #2F7F7A !important;
    border: 2px solid #2F7F7A !important;
    color: #fff !important;
    cursor: pointer;
    letter-spacing: 0.04em;
    box-shadow: 0 4px 14px rgba(47, 127, 122, 0.25);
}
span.btn-view-all-treatments:hover,
.btn-view-all-treatments:hover {
    background: #154669 !important;
    border-color: #154669 !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(21, 70, 105, 0.35);
}
.btn-hero-outline {
    border: 2px solid rgba(255,255,255,0.9) !important;
    color: #fff !important;
    background: transparent !important;
    letter-spacing: 0.04em;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}
.btn-hero-outline:hover {
    background: #489fb5 !important;
    border-color: #489fb5 !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(72, 159, 181, 0.4);
}
.btn-cta-dark-hover {
    border: 2px solid rgba(255,255,255,0.9) !important;
    color: #fff !important;
    background: transparent !important;
    letter-spacing: 0.04em;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}
/* CTA on teal gradient: solid button so it’s visible and on-theme */
.bg-gradient-teal .btn-cta-dark-hover {
    background: #fff !important;
    color: #154669 !important;
    border-color: #fff !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}
.bg-gradient-teal .btn-cta-dark-hover:hover {
    background: #154669 !important;
    color: #fff !important;
    border-color: #154669 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(21, 70, 105, 0.4);
}
.btn-cta-dark-hover:hover {
    background: #154669 !important;
    border-color: #154669 !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(21, 70, 105, 0.35);
}
.btn-outline-prof {
    border: 2px solid #2F7F7A !important;
    color: #2F7F7A !important;
    background: #fff !important;
    letter-spacing: 0.03em;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.btn-outline-prof:hover {
    background: #154669 !important;
    border-color: #154669 !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(21, 70, 105, 0.3);
}
.filter-reset-btn {
    border: 1px solid #2F7F7A !important;
    color: #2F7F7A !important;
    letter-spacing: 0.02em;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.filter-reset-btn:hover {
    background: #154669 !important;
    border-color: #154669 !important;
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(21, 70, 105, 0.25);
}
.float-chat-btn::after {
    color: #2F7F7A;
    background: #fff;
}

/* ========== FAQ tabs ========== */
/* FAQ tabs: same shape when active, only color changes (no pill/circle) */
.de-tab .d-tab-nav,
.de-tab.pill .d-tab-nav {
    border-radius: 0 !important;
    background: transparent !important;
    border: none !important;
}
.de-tab .d-tab-nav li {
    color: #2F7F7A !important;
    background: transparent !important;
    border: 2px solid rgba(47, 127, 122, 0.4);
    border-radius: 8px !important;
    margin-right: 8px;
    margin-bottom: 8px;
    padding: 10px 20px !important;
    font-weight: 600;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.de-tab .d-tab-nav li:hover {
    background: #154669 !important;
    border-color: #154669 !important;
    color: #fff !important;
}
.de-tab .d-tab-nav .active-tab,
.de-tab.pill .d-tab-nav .active-tab {
    background: #2F7F7A !important;
    color: #fff !important;
    border: 2px solid #2F7F7A !important;
    border-radius: 8px !important;
}
.de-tab .d-tab-nav .active-tab:hover,
.de-tab.pill .d-tab-nav .active-tab:hover {
    background: #154669 !important;
    color: #fff !important;
    border-color: #154669 !important;
}

/* ========== Testimonials ========== */
#testimonial-carousel .item .d-flex.mt-4 .text-dark,
#testimonial-carousel .item .d-flex.mt-4 div.fw-bold {
    color: #fff !important;
}
#testimonial-carousel .item .d-flex.mt-4 small {
    color: rgba(255, 255, 255, 0.9) !important;
}
.de-custom-nav .d-prev:before,
.de-custom-nav .d-next:before {
    background: #2F7F7A !important;
    color: #fff !important;
}
.de-custom-nav .d-prev:hover:before,
.de-custom-nav .d-next:hover:before {
    background: #154669 !important;
    color: #fff !important;
}
.owl-theme.owl-2-dots .owl-dots .owl-dot {
    background: rgba(255, 255, 255, 0.25) !important;
}
.owl-theme.owl-2-dots .owl-dots .owl-dot.active,
.owl-theme.owl-2-dots .owl-dots .owl-dot:hover {
    background: #489fb5 !important;
}

/* ========== Learning Hub links ========== */
#section-resources .learning-hub-link,
#section-resources .learning-hub-link i {
    color: #2F7F7A !important;
}
#section-resources a.learning-hub-link:hover,
#section-resources a.learning-hub-link:hover i {
    color: #154669 !important;
}
#section-resources a:hover .learning-hub-link {
    color: #154669 !important;
}

/* ========== Section dark / footer ========== */
.section-dark {
    background-color: #2F7F7A !important;
    color: #fff !important;
}
.border-top-white-1 {
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}
.subfooter {
    background-color: transparent !important;
    padding: 20px 0;
}
.btn-main.btn-line-extra {
    font-weight: 700;
    overflow: hidden;
    position: relative;
    z-index: 1;
    border-radius: 8px;
}

/* ========== Sticky CTA bar ========== */
.sticky-bar {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    max-width: 850px;
    background: rgba(47, 127, 122, 0.96);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 8px;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(47, 127, 122, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease-in-out;
    opacity: 0;
    visibility: hidden;
}
.sticky-bar .phone-link {
    color: #D6F3F4 !important;
}

/* ========== Treatment cards ========== */
.treatment-card {
    background: #fff;
    border: 1px solid rgba(36, 36, 36, 0.06);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(47, 127, 122, 0.06);
}
.treatment-card:hover {
    box-shadow: 0 20px 40px rgba(47, 127, 122, 0.15);
    transform: translateY(-8px);
    border-color: rgba(47, 127, 122, 0.35);
}
.treatment-img-wrap {
    height: 200px;
    overflow: hidden;
    position: relative;
}
.treatment-img-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 60%, rgba(0,0,0,0.4) 100%);
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.treatment-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}
.treatment-card:hover .treatment-img-wrap img {
    transform: scale(1.05);
}
.treatment-content {
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
    background: #fff;
}
.treatment-link {
    font-weight: 700;
    color: #489fb5;
    font-size: var(--text-xs);
    display: flex;
    align-items: center;
    transition: gap 0.3s ease;
    gap: 8px;
    margin-top: auto;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.treatment-card:hover .treatment-link {
    gap: 12px;
    color: #154669;
}
.btn-view-all-treatments {
    display: inline-block;
    padding: 10px 30px;
    border-radius: 8px;
    font-size: var(--text-sm);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}
.filter-reset-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 8px 24px;
    border-radius: 8px;
    font-size: var(--text-sm);
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* ========== Portal / intent cards ========== */
.portal-card {
    background: #fff;
    border: 1.5px solid rgba(72, 159, 181, 0.2);
    transition: all 0.3s ease;
}
.intent-wrapper {
    background: transparent;
    border: none;
    padding: 0;
    margin-bottom: 50px;
}
.intent-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(47, 127, 122, 0.06);
    height: 100%;
    position: relative;
    border: 1px solid rgba(47, 127, 122, 0.25);
}
.intent-card h5 {
    font-size: var(--text-lead) !important;
    font-weight: 600 !important;
    margin-bottom: 10px;
    color: #242424;
}
.intent-card p {
    font-size: var(--mainmenu-font-size) !important;
    font-weight: 400 !important;
    line-height: 1.5;
}
.intent-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(47, 127, 122, 0.2);
    border-color: rgba(47, 127, 122, 0.4);
}
.bg-color-light-teal {
    background-color: #D6F3F4;
}
section.bg-color-op-1 {
    background-color: #f0f0f0 !important;
}
.intent-card .fa-icon {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2F7F7A;
    background: rgba(47, 127, 122, 0.12);
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    display: inline-block;
    transition: all 0.3s ease;
}
.intent-card:hover .fa-icon {
    background: #154669;
    color: #fff;
    transform: scale(1.1);
}
@keyframes pulse-icon {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}
.intent-card .fa-icon {
    animation: pulse-icon 2s infinite ease-in-out;
}

/* ========== Clinical tag / badges ========== */
.clinical-tag {
    display: inline-block;
    background: rgba(47, 127, 122, 0.12);
    color: #2F7F7A;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: var(--text-2xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}
.badge.bg-color {
    background: #2F7F7A !important;
    color: #fff !important;
}
.bg-color {
    background: #2F7F7A !important;
}

/* ========== id-color (accents) ========== */
.id-color,
a.id-color {
    color: #2F7F7A !important;
}
footer .id-color {
    color: #2F7F7A !important;
}
footer .social-icons a,
footer .social-icons a .id-color,
footer .social-icons i.id-color {
    color: #154669 !important;
}
footer .social-icons a:hover,
footer .social-icons a:hover .id-color,
footer .social-icons a:hover i {
    color: #154669 !important;
    opacity: 0.85;
}
footer a.id-color:hover,
.social-icons a.id-color:hover {
    color: #154669 !important;
}
#testimonial-carousel .icofont-quote-left.id-color {
    color: #489fb5 !important;
}
.de-step-icon.bg-white.id-color {
    color: #2F7F7A !important;
}

/* ========== Prof link ========== */
.prof-link {
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: var(--text-2xs);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #242424 !important;
    text-decoration: none;
    margin-right: 30px;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 2px;
}
.prof-link:after {
    background-color: #2F7F7A;
}
.prof-link:hover {
    color: #154669 !important;
}
.prof-link:hover:after {
    width: 100%;
}
@media (max-width: 992px) {
    .prof-link { display: none; }
}

/* ========== Professional gateway ========== */
.professional-gateway {
    padding: 40px 0;
    background: #f0f0f0;
    border-top: 1px solid rgba(47, 127, 122, 0.2);
}
.btn-outline-prof {
    display: inline-block;
    padding: 8px 24px;
    border-radius: 8px;
    font-size: var(--text-sm);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* ========== Finance strip ========== */
.finance-strip {
    padding: 30px 0;
    background: #f0f0f0;
    border-top: 1px solid rgba(47, 127, 122, 0.2);
    border-bottom: 1px solid rgba(47, 127, 122, 0.2);
}
.finance-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: #242424;
    font-size: var(--mainmenu-font-size) !important;
    font-weight: 600 !important;
    line-height: 1.4;
}
.finance-item i {
    color: #2F7F7A;
    font-size: 1.5rem;
}

/* ========== Hero / float chat ========== */
.btn-hero-solid { border-radius: 8px; padding: 10px 30px; font-weight: 700; }
.btn-hero-outline { border-radius: 8px; padding: 10px 30px; font-weight: 700; }
.btn-cta-dark-hover { border-radius: 8px; padding: 10px 30px; font-weight: 700; }
.btn-main.btn-line-extra.btn-hero-quiz,
.btn-main.btn-hero-quiz {
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(6px);
    border: 2px solid #fff !important;
    color: #fff !important;
    border-radius: 8px;
    padding: 12px 32px;
    font-weight: 700;
    font-size: var(--mainmenu-font-size);
}
.btn-main.btn-line-extra.btn-hero-quiz:hover,
.btn-main.btn-hero-quiz:hover {
    background: #fff !important;
    color: var(--primary-dark) !important;
    border-color: #fff !important;
}
/* Hero buttons: equal sizing on all screens */
.btn-hero-solid {
    padding: 12px 32px !important;
    font-size: var(--mainmenu-font-size) !important;
}
@media (max-width: 576px) {
    .btn-main.btn-hero-solid,
    .btn-main.btn-line-extra.btn-hero-quiz,
    .btn-main.btn-hero-quiz {
        display: block !important;
        width: 100%;
        text-align: center;
        padding: 14px 20px !important;
        margin: 0 !important;
        font-size: 0.95rem !important;
    }
    .btn-main.btn-line-extra.btn-hero-quiz {
        margin-top: 10px !important;
    }
}
.float-chat-wrap {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}
.float-chat-hint {
    background: #fff;
    color: #777;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    padding: 5px 12px;
    border-radius: 6px;
    white-space: nowrap;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    margin-bottom: 8px;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
    cursor: pointer;
}
.float-chat-hint.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    cursor: pointer;
}
.float-chat-hint span {
    color: var(--primary-mid);
    font-weight: 600;
}
.float-chat-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    text-align: center;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.25);
    background: #2F7F7A !important;
    color: #fff !important;
    box-shadow: 0 4px 16px rgba(47, 127, 122, 0.35);
}
.float-chat-btn i {
    font-size: 1.5rem;
}
.float-chat-btn:hover {
    transform: translateY(-3px);
    background: #154669 !important;
    box-shadow: 0 6px 22px rgba(21, 70, 105, 0.4);
}

/* Back to top: same colors as buttons (#2F7F7A / #154669) */
#back-to-top {
    background: #2F7F7A !important;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
#back-to-top:hover {
    background: #154669 !important;
}

/* ========== Footer ========== */
footer.bg-color-light-teal,
.subfooter.bg-color-light-teal {
    background-color: #D6F3F4 !important;
}
footer .widget h5,
.f-logo h3.id-color {
    color: #154669 !important;
}

/* Verified Proof, Treatments section, About Us, Contact Us — #154669 */
.uptitle {
    color: #154669 !important;
}
#section-treatments {
    padding-top: 4rem;
    padding-bottom: 8rem;
}
#section-treatments h2 {
    color: #154669 !important;
}

/* Treatments hero: premium layout, alignment and symmetry */
#section-treatments .row.mb-4 {
    margin-bottom: 1rem !important;
}
#section-treatments .row.mb-4 .col-lg-12 h2 {
    letter-spacing: 0.02em;
    margin-bottom: 0 !important;
}
.treatments-hero {
    padding: 3rem 0 3rem;
    align-items: stretch !important;
    --bs-gutter-x: 1rem;
}
.treatments-hero-content {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding-top: 0;
    padding-left: 1rem;
    min-height: 340px;
}
@media (max-width: 991px) {
    .treatments-hero-content { padding-left: 0; }
}
.treatments-hero-btn-wrap {
    margin-top: auto !important;
    width: 100%;
    display: flex;
    justify-content: flex-end;
}
.treatments-hero-content .btn-main {
    flex-shrink: 0;
}
.treatments-hero-img-wrap {
    height: 340px;
    box-shadow: 0 16px 48px rgba(47, 127, 122, 0.14);
    border-radius: 12px;
    overflow: hidden;
    background: rgba(47, 127, 122, 0.06);
}
.treatments-hero-img-wrap img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
#section-treatments .treatments-hero-lead {
    font-size: var(--mainmenu-font-size) !important;
    font-weight: 400 !important;
    line-height: 1.75;
    letter-spacing: 0.015em;
    color: #242424;
    width: 100%;
    margin-top: auto !important;
    margin-bottom: auto !important;
    padding-left: 0;
    border-left: none;
}

/* ========== Topbar / header (if dark) ========== */
.topbar-dark {
    background: #2F7F7A !important;
}
header.header-light.smaller .header-inner,
header.scrollOn .header-inner {
    background: #fff !important;
    border-bottom: 1px solid rgba(47, 127, 122, 0.25);
}
header #mainmenu a.menu-item {
    color: #154669 !important;
    font-size: var(--mainmenu-font-size) !important;
    font-weight: 400 !important;
}
header #mainmenu > li > a.menu-item {
    display: inline-block;
    width: max-content;
    max-width: 100%;
    padding-left: 0 !important;
    padding-right: 0 !important;
}
header #mainmenu > li > a.menu-item::after {
    background-color: #154669 !important;
    width: 0 !important;
    left: 0;
}
header #mainmenu > li > a.menu-item:hover::after {
    width: 100% !important;
}
header #mainmenu a.menu-item:hover {
    color: #154669 !important;
    opacity: 0.85;
}

/* ========== Gradient overlays (main color #2F7F7A) ========== */
.gradient-edge-top.color {
    background: linear-gradient(180deg, rgba(47, 127, 122, 0.97) 0%, rgba(47, 127, 122, 0) 100%) !important;
}
.gradient-edge-bottom.color {
    background: linear-gradient(0deg, rgba(47, 127, 122, 0.97) 0%, rgba(47, 127, 122, 0) 100%) !important;
}
.bg-gradient-teal {
    background: linear-gradient(180deg, rgba(47, 127, 122, 0.96) 0%, rgba(47, 127, 122, 0.85) 100%) !important;
}

/* ========== Hero: reduced overlay, fade to right ========== */
.hero-banner .hero-overlay {
    background: linear-gradient(to right,
        rgba(47, 127, 122, 0.42) 0%,
        rgba(47, 127, 122, 0.22) 35%,
        rgba(47, 127, 122, 0.08) 60%,
        rgba(47, 127, 122, 0.02) 80%,
        transparent 100%) !important;
    opacity: 1 !important;
}
.hero-banner .hero-edge-bottom.color {
    background: linear-gradient(0deg, rgba(47, 127, 122, 0.55) 0%, rgba(47, 127, 122, 0) 100%) !important;
}
/* Stats strip: move up so it sits within the landing viewport */
.hero-banner .abs.bottom-0.w-100 {
    bottom: 3rem !important;
}
.hero-banner .hero-satisfaction-block {
    margin-top: 12rem;
}
.hero-banner .hero-satisfaction-text,
.hero-banner .hero-satisfaction-text span {
    color: #154669 !important;
}
.hero-banner .hero-brand {
    font-size: var(--body-font-size) !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #154669 !important;
    margin-bottom: 0.5rem;
}
.hero-banner h1.split {
    color: #154669 !important;
}
.hero-banner .hero-lead {
    font-size: var(--text-lead);
}

/* Hero image: right 70% of screen only */
.hero-banner .hero-bg-wrap {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 70%;
    overflow: hidden;
    z-index: 0;
}
.hero-banner .hero-bg-wrap .jarallax-img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* ==========================================================================
   LIFESTYLE COMPONENTS — Premium Redesign
   ========================================================================== */

/* ========== Section spacing ========== */
.section-lifestyle {
    padding: 120px 0;
}
.section-lifestyle-sm {
    padding: 80px 0;
}

/* ========== Eyebrow / overline ========== */
.eyebrow {
    display: block;
    font-family: var(--heading-font);
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary-mid);
    margin-bottom: 0.75rem;
}
.eyebrow-light {
    display: block;
    font-family: var(--heading-font);
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.75rem;
}

/* ========== Section heading (lifestyle) ========== */
.section-heading-lifestyle {
    text-align: center;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
}
.section-heading-lifestyle h2 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}
.section-heading-lifestyle p {
    font-size: var(--mainmenu-font-size);
    color: var(--text-dark);
    opacity: 0.8;
    line-height: 1.6;
}

/* ========== Page hero (inner pages) ========== */
.page-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-mid) 100%);
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}
.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-mid));
}
.page-hero h1 {
    color: #fff;
    font-size: var(--h1-font-size);
    margin-bottom: 1rem;
}
.page-hero p {
    color: rgba(255, 255, 255, 0.85);
    font-size: var(--text-lead);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}
.page-hero .eyebrow-light {
    margin-bottom: 1rem;
}

/* ========== Lifestyle promise cards ========== */
.lifestyle-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(47, 127, 122, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.lifestyle-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(47, 127, 122, 0.16);
}
.lifestyle-card .lc-icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    background: rgba(47, 127, 122, 0.12);
    color: var(--primary-mid);
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}
.lifestyle-card:hover .lc-icon {
    background: var(--primary-dark);
    color: #fff;
    transform: scale(1.1);
}
.lifestyle-card h4 {
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
}
.lifestyle-card p {
    font-size: var(--mainmenu-font-size);
    line-height: 1.6;
    color: var(--text-dark);
    opacity: 0.8;
    flex-grow: 1;
}
.lifestyle-card .lc-link {
    color: var(--primary-mid);
    font-weight: 600;
    font-size: var(--text-sm);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 1rem;
    transition: color 0.3s ease, gap 0.3s ease;
}
.lifestyle-card .lc-link:hover {
    color: var(--primary-dark);
    gap: 10px;
}

/* ========== Vision goal cards (image + overlay) ========== */
.vision-goal-card {
    height: 420px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    display: block;
    text-decoration: none;
}
.vision-goal-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}
.vision-goal-card:hover img {
    transform: scale(1.05);
}
.vision-goal-card .vgc-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    z-index: 2;
}
.vision-goal-card h4 {
    color: #fff;
    font-size: var(--h4-font-size);
    margin-bottom: 0.25rem;
}
.vision-goal-card .vgc-overlay p {
    color: rgba(255, 255, 255, 0.85);
    font-size: var(--text-sm);
    margin-bottom: 0;
}

/* ========== Story cards ========== */
.story-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(47, 127, 122, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.story-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(47, 127, 122, 0.15);
}
.story-card .story-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}
.story-card .story-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.story-card blockquote {
    border-left: 3px solid var(--primary-mid);
    padding-left: 20px;
    font-style: italic;
    font-size: var(--mainmenu-font-size);
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}
.story-card .story-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}
.story-card .story-meta img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}
.story-card .story-meta .sm-name {
    font-weight: 600;
    color: var(--text-dark);
    font-size: var(--text-sm);
}
.story-card .story-meta .sm-detail {
    font-size: var(--text-xs);
    color: var(--text-dark);
    opacity: 0.6;
}

/* ========== Pillar cards ========== */
.pillar-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px 25px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(47, 127, 122, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}
.pillar-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(47, 127, 122, 0.15);
}
.pillar-card .pillar-num {
    font-family: var(--heading-font);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-mid);
    opacity: 0.15;
    line-height: 1;
    margin-bottom: 0.5rem;
}
.pillar-card .pc-icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    background: rgba(47, 127, 122, 0.12);
    color: var(--primary-mid);
    font-size: 1.25rem;
    margin: 0 auto 1.25rem;
    transition: all 0.3s ease;
}
.pillar-card:hover .pc-icon {
    background: var(--primary-dark);
    color: #fff;
}
.pillar-card h4 {
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
}
.pillar-card p {
    font-size: var(--text-sm);
    line-height: 1.6;
    color: var(--text-dark);
    opacity: 0.8;
}

/* ========== Treatment timeline ========== */
.treatment-timeline {
    position: relative;
    padding-left: 50px;
    max-width: 700px;
}
.treatment-timeline::before {
    content: '';
    position: absolute;
    left: 18px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(47, 127, 122, 0.2);
}
.treatment-timeline .tl-step {
    position: relative;
    margin-bottom: 40px;
    padding-bottom: 10px;
}
.treatment-timeline .tl-step:last-child {
    margin-bottom: 0;
}
.treatment-timeline .tl-dot {
    position: absolute;
    left: -40px;
    top: 4px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--primary-mid);
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px var(--primary-mid);
}
.treatment-timeline .tl-step h4 {
    color: var(--primary-dark);
    font-size: var(--h4-font-size);
    margin-bottom: 0.5rem;
}
.treatment-timeline .tl-step p {
    font-size: var(--mainmenu-font-size);
    line-height: 1.6;
    color: var(--text-dark);
    opacity: 0.8;
}

/* ========== "Is this you?" block ========== */
.is-this-you {
    background: var(--teal-ice);
    border-radius: 12px;
    padding: 50px;
}
.is-this-you h3 {
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}
.is-this-you .check-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: var(--mainmenu-font-size);
    line-height: 1.5;
    color: var(--text-dark);
}
.is-this-you .check-item i {
    color: var(--primary-mid);
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

/* ========== Trust ribbon ========== */
.trust-ribbon {
    padding: 30px 0;
    background: var(--bg-neutral);
    border-top: 1px solid rgba(47, 127, 122, 0.15);
    border-bottom: 1px solid rgba(47, 127, 122, 0.15);
}
.trust-ribbon .trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text-dark);
}
.trust-ribbon .trust-item i {
    color: var(--primary-mid);
    font-size: 1.25rem;
}

/* ========== Surgeon profile ========== */
.surgeon-profile {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(47, 127, 122, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}
.surgeon-profile:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(47, 127, 122, 0.15);
}
.surgeon-profile .surgeon-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}
.surgeon-profile .surgeon-body {
    padding: 30px;
}
.surgeon-profile h3 {
    color: var(--primary-dark);
    font-size: var(--h3-font-size);
    margin-bottom: 0.25rem;
}
.surgeon-profile .surgeon-specialty {
    color: var(--primary-mid);
    font-weight: 600;
    font-size: var(--mainmenu-font-size);
    margin-bottom: 1rem;
}
.surgeon-profile .surgeon-experience {
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--text-dark);
    opacity: 0.7;
    margin-bottom: 1.25rem;
}
.surgeon-profile .credential {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: var(--text-sm);
    color: var(--text-dark);
}
.surgeon-profile .credential i {
    color: var(--primary-mid);
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

/* ========== Investment cards ========== */
.investment-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px 30px;
    border: 1px solid rgba(47, 127, 122, 0.15);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.investment-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(47, 127, 122, 0.15);
}
.investment-card h4 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}
.investment-card .price {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.25rem;
}
.investment-card .price-note {
    font-size: var(--text-xs);
    color: var(--text-dark);
    opacity: 0.6;
    margin-bottom: 1.5rem;
}
.investment-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    text-align: left;
}
.investment-card ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    font-size: var(--text-sm);
    color: var(--text-dark);
}
.investment-card ul li i {
    color: var(--primary-mid);
    flex-shrink: 0;
}
.investment-card .btn-main {
    margin-top: auto;
}
.investment-card.featured {
    border-color: var(--primary-mid);
    box-shadow: 0 8px 30px rgba(47, 127, 122, 0.18);
    position: relative;
}
.investment-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-mid);
    color: #fff;
    padding: 6px 20px;
    border-radius: 0 0 8px 8px;
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ========== Booking guided form ========== */
.booking-guided {
    max-width: 720px;
    margin: 0 auto;
}
.booking-step {
    display: none;
}
.booking-step.active {
    display: block;
}
.booking-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}
.booking-progress .bp-dot {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-neutral);
    color: var(--text-dark);
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: var(--text-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}
.booking-progress .bp-dot.active {
    background: var(--primary-mid);
    color: #fff;
    box-shadow: 0 4px 14px rgba(47, 127, 122, 0.3);
}
.booking-progress .bp-dot.completed {
    background: var(--primary-dark);
    color: #fff;
}
.booking-progress .bp-line {
    flex: 1;
    height: 2px;
    background: var(--bg-neutral);
    margin: 0 8px;
    max-width: 80px;
}
.booking-progress .bp-line.completed {
    background: var(--primary-dark);
}
.booking-guided .form-control {
    border: 1px solid rgba(47, 127, 122, 0.25);
    border-radius: 8px;
    padding: 14px 18px;
    font-size: var(--mainmenu-font-size);
    font-family: var(--body-font);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.booking-guided .form-control:focus {
    border-color: var(--primary-mid);
    box-shadow: 0 0 0 3px rgba(47, 127, 122, 0.12);
    outline: none;
}
.booking-guided label {
    font-weight: 600;
    font-size: var(--text-sm);
    color: var(--text-dark);
    margin-bottom: 6px;
    display: block;
}
.booking-guided .error_input {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.12) !important;
}

/* ========== Insight cards ========== */
a.insight-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}
a.insight-card-link:hover .insight-card {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(47, 127, 122, 0.15);
}
.insight-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(47, 127, 122, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.insight-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(47, 127, 122, 0.15);
}
.insight-card .insight-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.insight-card .insight-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.insight-card .insight-tag {
    display: inline-block;
    background: rgba(47, 127, 122, 0.12);
    color: var(--primary-mid);
    padding: 3px 10px;
    border-radius: 4px;
    font-size: var(--text-2xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
    align-self: flex-start;
}
.insight-card h4 {
    color: var(--primary-dark);
    font-size: var(--h4-font-size);
    margin-bottom: 0.5rem;
}
.insight-card p {
    font-size: var(--text-sm);
    line-height: 1.6;
    color: var(--text-dark);
    opacity: 0.8;
    flex-grow: 1;
}
.insight-card .insight-meta {
    font-size: var(--text-xs);
    color: var(--text-dark);
    opacity: 0.6;
    margin-top: 1rem;
}

/* ========== Concierge contact ========== */
.concierge-block {
    margin-bottom: 3rem;
}
.concierge-method {
    background: #fff;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    border: 1px solid rgba(47, 127, 122, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}
.concierge-method:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(47, 127, 122, 0.15);
}
.concierge-method .cm-icon {
    font-size: 2rem;
    color: var(--primary-mid);
    margin-bottom: 1rem;
}
.concierge-method h4 {
    color: var(--primary-dark);
    font-size: var(--h4-font-size);
    margin-bottom: 0.5rem;
}
.concierge-method p {
    font-size: var(--text-sm);
    color: var(--text-dark);
    opacity: 0.8;
    margin-bottom: 0;
}
.concierge-method a {
    color: var(--primary-mid);
    font-weight: 600;
    text-decoration: none;
}
.concierge-method a:hover {
    color: var(--primary-dark);
}

/* ========== FAQ category tabs ========== */
.faq-category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 40px;
}
.faq-category-tab {
    color: var(--primary-mid);
    background: transparent;
    border: 2px solid rgba(47, 127, 122, 0.4);
    border-radius: 8px;
    padding: 10px 20px;
    font-family: var(--heading-font);
    font-size: var(--text-sm);
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.faq-category-tab:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff;
}
.faq-category-tab.active {
    background: var(--primary-mid);
    border-color: var(--primary-mid);
    color: #fff;
}

/* ========== Featured story (full width) ========== */
.story-featured {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(47, 127, 122, 0.1);
    margin-bottom: 3rem;
}
.story-featured .sf-img {
    width: 100%;
    height: 360px;
    object-fit: cover;
}
.story-featured .sf-body {
    padding: 40px;
}
.story-featured blockquote {
    border-left: 4px solid var(--primary-mid);
    padding-left: 24px;
    font-style: italic;
    font-size: var(--text-lead);
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

/* ========== Review stats ========== */
.review-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2rem 0;
}
.review-stats .rs-item {
    text-align: center;
}
.review-stats .rs-number {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    display: block;
}
.review-stats .rs-label {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text-dark);
    opacity: 0.7;
}

/* ========== Prose content (legal pages) ========== */
.prose-content {
    max-width: 800px;
    margin: 0 auto;
}
.prose-content h2 {
    color: var(--primary-dark);
    font-size: var(--h3-font-size);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}
.prose-content h3 {
    color: var(--primary-dark);
    font-size: var(--h4-font-size);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}
.prose-content p {
    font-size: var(--mainmenu-font-size);
    line-height: 1.7;
    color: var(--text-dark);
    opacity: 0.85;
    margin-bottom: 1rem;
}
.prose-content ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}
.prose-content ul li {
    font-size: var(--mainmenu-font-size);
    line-height: 1.7;
    color: var(--text-dark);
    opacity: 0.85;
    margin-bottom: 0.5rem;
}

/* ========== Investment snippet (treatment pages) ========== */
.investment-snippet {
    background: var(--teal-ice);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
}
.investment-snippet .is-price {
    font-family: var(--heading-font);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-dark);
}
.investment-snippet p {
    font-size: var(--mainmenu-font-size);
    color: var(--text-dark);
    opacity: 0.8;
}

/* ========== Consultant-led explainer ========== */
.consultant-explainer {
    background: var(--teal-ice);
    border-radius: 12px;
    padding: 50px;
}
.consultant-explainer h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}
.consultant-explainer p {
    font-size: var(--mainmenu-font-size);
    line-height: 1.7;
    color: var(--text-dark);
    opacity: 0.85;
}

/* ========== Topic filter buttons (insights) ========== */
.topic-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 2rem;
    justify-content: center;
}
.topic-filter-btn {
    color: var(--primary-mid);
    background: transparent;
    border: 2px solid rgba(47, 127, 122, 0.3);
    border-radius: 8px;
    padding: 8px 18px;
    font-size: var(--text-xs);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}
.topic-filter-btn:hover,
.topic-filter-btn.active {
    background: var(--primary-mid);
    border-color: var(--primary-mid);
    color: #fff;
}

/* ========== Not-sure CTA block ========== */
.not-sure-block {
    background: var(--teal-ice);
    border-radius: 12px;
    padding: 50px;
    text-align: center;
}
.not-sure-block h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}
.not-sure-block p {
    font-size: var(--mainmenu-font-size);
    max-width: 500px;
    margin: 0 auto 1.5rem;
    color: var(--text-dark);
    opacity: 0.8;
}

/* ==========================================================================
   RESPONSIVE — Lifestyle Components
   ========================================================================== */
@media (max-width: 991px) {
    .section-lifestyle {
        padding: 80px 0;
    }
    .page-hero {
        padding: 120px 0 60px;
    }
    .page-hero h1 {
        font-size: 2.5rem;
    }
    .vision-goal-card {
        height: 320px;
    }
    .surgeon-profile .surgeon-img {
        height: 300px;
    }
    .review-stats {
        gap: 2rem;
    }
    .review-stats .rs-number {
        font-size: 2rem;
    }
    .story-featured .sf-img {
        height: 260px;
    }
    .is-this-you {
        padding: 35px;
    }
    .consultant-explainer {
        padding: 35px;
    }
}

@media (max-width: 576px) {
    .section-lifestyle {
        padding: 60px 0;
    }
    .section-lifestyle-sm {
        padding: 50px 0;
    }
    .page-hero {
        padding: 100px 0 50px;
    }
    .page-hero h1 {
        font-size: 2rem;
    }
    .page-hero p {
        font-size: var(--mainmenu-font-size);
    }
    .vision-goal-card {
        height: 260px;
    }
    .story-card .story-img {
        height: 180px;
    }
    .surgeon-profile .surgeon-img {
        height: 250px;
    }
    .treatment-timeline {
        padding-left: 35px;
    }
    .treatment-timeline::before {
        left: 12px;
    }
    .treatment-timeline .tl-dot {
        left: -30px;
    }
    .is-this-you {
        padding: 25px;
    }
    .investment-card {
        padding: 30px 20px;
    }
    .investment-card .price {
        font-size: 2rem;
    }
    .booking-progress .bp-dot {
        width: 36px;
        height: 36px;
        font-size: var(--text-xs);
    }
    .review-stats {
        flex-direction: column;
        gap: 1rem;
    }
    .story-featured .sf-body {
        padding: 25px;
    }
    .story-featured blockquote {
        font-size: var(--mainmenu-font-size);
    }
    .concierge-method {
        padding: 20px 15px;
    }
    .not-sure-block {
        padding: 30px 20px;
    }
    .consultant-explainer {
        padding: 25px;
    }
    .prose-content {
        padding: 0 10px;
    }
}

/* ========== Video Hero ========== */
.hero-banner video.jarallax-img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.hero-banner .hero-fallback {
    display: none;
}
@media (max-width: 768px) {
    .hero-banner video.jarallax-img { display: none; }
    .hero-banner .hero-fallback { display: block; }
}

/* ========== Contact Popup Panel ========== */
.contact-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.contact-popup-overlay.open {
    opacity: 1;
    visibility: visible;
}
.contact-popup-panel {
    position: fixed;
    top: 0;
    right: -460px;
    width: 440px;
    max-width: 90vw;
    height: 100%;
    background: #fff;
    z-index: 99999;
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.15);
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}
.contact-popup-panel.open {
    right: 0;
}
.contact-popup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
}
.contact-popup-header h4 {
    margin: 0;
    color: var(--primary-dark);
    font-size: 1.25rem;
}
.contact-popup-close {
    width: 36px;
    height: 36px;
    border: none;
    background: var(--bg-neutral);
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: background 0.2s ease;
}
.contact-popup-close:hover {
    background: var(--primary-mid);
    color: #fff;
}
.contact-popup-body {
    padding: 30px;
    flex: 1;
}
.contact-popup-body .form-group {
    margin-bottom: 20px;
}
.contact-popup-body label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: #444;
    margin-bottom: 6px;
}
.contact-popup-body input,
.contact-popup-body textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    font-size: 15px;
    font-family: var(--body-font);
    background: var(--bg-neutral);
    transition: border-color 0.2s ease, background 0.2s ease;
}
.contact-popup-body input:focus,
.contact-popup-body textarea:focus {
    outline: none;
    border-color: var(--primary-mid);
    background: #fff;
}
.contact-popup-body textarea {
    resize: vertical;
    min-height: 100px;
}
.contact-popup-body .btn-submit-popup {
    width: 100%;
    padding: 14px;
    background: var(--primary-mid);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--body-font);
    cursor: pointer;
    transition: background 0.2s ease;
}
.contact-popup-body .btn-submit-popup:hover {
    background: var(--primary-dark);
}
.contact-popup-body .btn-submit-popup:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
.contact-popup-success,
.contact-popup-error {
    display: none;
    text-align: center;
    padding: 40px 20px;
}
.contact-popup-success i {
    font-size: 3rem;
    color: var(--primary-mid);
    margin-bottom: 1rem;
}
.contact-popup-error p {
    color: #dc3545;
    font-weight: 600;
}
.contact-popup-footer {
    padding: 20px 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    text-align: center;
    flex-shrink: 0;
}
.contact-popup-footer p {
    margin: 0;
    font-size: 13px;
    color: #999;
}
.contact-popup-footer a {
    color: var(--primary-mid);
    font-weight: 600;
}
@media (max-width: 576px) {
    .contact-popup-panel {
        width: 100%;
        max-width: 100vw;
        right: -100%;
    }
    .contact-popup-body {
        padding: 20px;
    }
}

/* ========== Chatbot Panel ========== */
.chatbot-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.chatbot-overlay.open {
    opacity: 1;
    visibility: visible;
}
.chatbot-panel {
    position: fixed;
    top: 0;
    right: -460px;
    width: 440px;
    max-width: 90vw;
    height: 100%;
    background: #fff;
    z-index: 99999;
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.15);
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}
.chatbot-panel.open {
    right: 0;
}
.chatbot-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-mid) 100%);
    color: #fff;
    flex-shrink: 0;
}
.chatbot-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}
.chatbot-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    padding: 4px;
}
.chatbot-avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.chatbot-header-text h4 {
    margin: 0;
    font-family: var(--heading-font);
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}
.chatbot-status {
    font-size: 0.7rem;
    opacity: 0.85;
    letter-spacing: 0.02em;
}
.chatbot-status i {
    font-size: 6px;
    color: #4ade80;
    margin-right: 4px;
    vertical-align: middle;
}
.chatbot-close {
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: background 0.2s ease;
}
.chatbot-close:hover {
    background: rgba(255, 255, 255, 0.3);
}
.chatbot-close:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}
.chatbot-body {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
    background: var(--bg-neutral);
}
.chatbot-messages {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.chatbot-message {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.chatbot-message-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--teal-ice);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    padding: 3px;
}
.chatbot-message-avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.chatbot-bubble {
    background: #fff;
    color: var(--text-dark);
    padding: 14px 18px;
    border-radius: 4px 16px 16px 16px;
    font-family: var(--body-font);
    font-size: 0.925rem;
    line-height: 1.55;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    max-width: 85%;
}
.chatbot-quick-replies {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 42px;
    margin-top: 4px;
}
.chatbot-quick-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: var(--primary-mid);
    border: 1.5px solid var(--primary-mid);
    padding: 12px 20px;
    border-radius: 100px;
    font-family: var(--body-font);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s ease;
    white-space: nowrap;
}
.chatbot-quick-btn:hover {
    background: var(--primary-mid);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(47, 127, 122, 0.25);
}
.chatbot-quick-btn:focus-visible {
    outline: 2px solid var(--primary-dark);
    outline-offset: 2px;
}
.chatbot-quick-btn i {
    font-size: 0.8rem;
    width: 16px;
    text-align: center;
}
.chatbot-input-area {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    background: #fff;
    flex-shrink: 0;
}
.chatbot-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #dee2e6;
    border-radius: 100px;
    font-size: 0.875rem;
    font-family: var(--body-font);
    background: var(--bg-neutral);
    color: #999;
    outline: none;
}
.chatbot-input:disabled {
    cursor: not-allowed;
    opacity: 0.7;
}
.chatbot-send-btn {
    width: 42px;
    height: 42px;
    border: none;
    background: var(--primary-mid);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease;
    flex-shrink: 0;
}
.chatbot-send-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}
.chatbot-send-btn:not(:disabled):hover {
    background: var(--primary-dark);
}
@media (max-width: 576px) {
    .chatbot-panel {
        width: 100%;
        max-width: 100vw;
        right: -100%;
    }
    .chatbot-body {
        padding: 16px;
    }
    .chatbot-quick-replies {
        padding-left: 0;
    }
    .chatbot-quick-btn {
        font-size: 0.8rem;
        padding: 10px 16px;
    }
}

/* ========== Mobile Menu Fixes ========== */
@media (max-width: 993px) {
    #menu-btn { display: block !important; z-index: 10; }
    .font-resizer-nav { display: none !important; }
    header .de-flex-col .d-flex.align-items-center .btn-main.fx-slide { display: none !important; }
    header.header-mobile { z-index: 10001 !important; }
    header.menu-open { overflow-y: auto !important; z-index: 10001 !important; }
}
@media (max-width: 576px) {
    .sticky-bar .phone-link span { display: none; }
    .sticky-bar { padding: 8px 16px; gap: 10px; }
}

/* ========== Video Card (Learning Hub) ========== */
.video-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(47, 127, 122, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}
.video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(47, 127, 122, 0.15);
}
.video-thumbnail {
    position: relative;
    padding-top: 56.25%;
    overflow: hidden;
}
.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}
.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}
.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    background: rgba(47, 127, 122, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    z-index: 2;
    text-decoration: none;
    pointer-events: none;
}
.video-card-body {
    padding: 25px;
    flex-grow: 1;
}

/* Horizontal insight card variant */
.insight-card-horizontal {
    display: flex;
    flex-direction: row;
    height: auto;
}
.insight-card-horizontal .insight-img-sm {
    width: 140px;
    min-height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}
.insight-card-horizontal .insight-body {
    padding: 20px;
}
.insight-card-horizontal .insight-body h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}
@media (max-width: 576px) {
    .insight-card-horizontal { flex-direction: column; }
    .insight-card-horizontal .insight-img-sm { width: 100%; height: 160px; }
}

/* ========== Surgeon Side-by-Side ========== */
.surgeon-sbs {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(47, 127, 122, 0.08);
    transition: box-shadow 0.3s ease;
}
.surgeon-sbs:hover {
    box-shadow: 0 12px 36px rgba(47, 127, 122, 0.15);
}
.surgeon-sbs-img {
    height: 100%;
    min-height: 360px;
    overflow: hidden;
}
.surgeon-sbs-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}
.surgeon-sbs-body {
    padding: 40px;
}
.surgeon-sbs-body h3 {
    color: var(--primary-dark);
    margin-bottom: 0.25rem;
}
.surgeon-quote {
    border-left: 3px solid var(--primary-mid);
    padding-left: 20px;
    font-style: italic;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin: 1rem 0;
    opacity: 0.85;
}
@media (max-width: 991px) {
    .surgeon-sbs-img { min-height: 280px; }
    .surgeon-sbs-body { padding: 30px; }
}

/* ========== Treatment List (Wellington-style) ========== */
.treatment-filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}
.treatment-filter-tab {
    color: var(--primary-mid);
    background: transparent;
    border: 2px solid rgba(47, 127, 122, 0.3);
    border-radius: 8px;
    padding: 10px 24px;
    font-family: var(--heading-font);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}
.treatment-filter-tab:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff;
}
.treatment-filter-tab.active {
    background: var(--primary-mid);
    border-color: var(--primary-mid);
    color: #fff;
}
.treatment-list-item {
    padding: 35px 0;
    border-bottom: 1px solid rgba(47, 127, 122, 0.12);
    transition: background 0.3s ease;
}
.treatment-list-item:first-child {
    border-top: 1px solid rgba(47, 127, 122, 0.12);
}
.treatment-list-item:hover {
    background: rgba(214, 243, 244, 0.3);
}
.tli-name {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}
.tli-desc {
    line-height: 1.6;
    color: var(--text-dark);
    opacity: 0.8;
    margin-bottom: 0;
}
.tli-price {
    font-family: var(--heading-font);
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 1.2rem;
}
.tli-price-unit {
    font-size: 0.8rem;
    font-weight: 400;
    opacity: 0.7;
}
.tli-link {
    color: var(--primary-mid);
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease, gap 0.3s ease;
    white-space: nowrap;
}
.tli-link:hover {
    color: var(--primary-dark);
    gap: 10px;
}
@media (max-width: 991px) {
    .treatment-list-item .col-lg-3,
    .treatment-list-item .col-lg-2 { margin-top: 12px; }
}

/* ========== Inline Testimonial ========== */
.inline-testimonial {
    background: var(--bg-neutral);
    border-radius: 12px;
    padding: 36px 40px;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}
.inline-testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.inline-testimonial blockquote {
    font-size: var(--text-base);
    font-style: italic;
    line-height: 1.7;
    color: var(--text-dark);
    margin: 0 0 12px;
    opacity: 0.85;
}
.inline-testimonial cite {
    font-style: normal;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--primary-dark);
}
.inline-testimonial cite span {
    font-weight: 400;
    opacity: 0.6;
    margin-left: 6px;
}
@media (max-width: 576px) {
    .inline-testimonial {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 28px 24px;
        gap: 16px;
    }
}

/* ========== Accreditation Bar ========== */
.accreditation-bar {
    text-align: center;
}
.accreditation-bar h3 {
    margin-bottom: 2rem;
}
.accred-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.accred-logo-box {
    width: 100%;
    max-width: 140px;
    height: 80px;
    background: #fff;
    border: 1px solid rgba(47, 127, 122, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-xs);
    color: var(--text-dark);
    opacity: 0.5;
    transition: opacity 0.3s ease, box-shadow 0.3s ease;
}
.accred-logo-box:hover {
    opacity: 0.8;
    box-shadow: 0 4px 16px rgba(47, 127, 122, 0.1);
}
.accred-label {
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--text-dark);
    opacity: 0.7;
}

/* ========== What's Included Strip ========== */
.included-strip {
    background: var(--bg-neutral);
    border-radius: 12px;
    padding: 32px 24px;
}
.included-strip h4 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}
.included-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text-dark);
}
.included-item i {
    color: var(--primary-mid);
    font-size: 1rem;
}

/* ========== Map Placeholder ========== */
.map-placeholder {
    background: var(--bg-neutral);
    border-radius: 12px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: var(--text-dark);
    opacity: 0.5;
}
.map-placeholder i {
    font-size: 2.5rem;
    color: var(--primary-mid);
    opacity: 0.6;
}
.map-placeholder p {
    font-size: var(--text-sm);
    max-width: 300px;
    text-align: center;
    margin: 0;
}

/* ========== Getting Here ========== */
.getting-here-card {
    text-align: center;
    padding: 24px;
}
.getting-here-card i {
    font-size: 1.5rem;
    color: var(--primary-mid);
    margin-bottom: 12px;
}
.getting-here-card h5 {
    color: var(--primary-dark);
    margin-bottom: 8px;
}
.getting-here-card p {
    font-size: var(--text-sm);
    color: var(--text-dark);
    opacity: 0.7;
    margin: 0;
}

/* ========== Suitability Section ========== */
.suitability-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.suitability-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid rgba(47, 127, 122, 0.1);
}
.suitability-item i {
    color: var(--primary-mid);
    margin-top: 3px;
    flex-shrink: 0;
}
.suitability-item span {
    font-size: var(--text-sm);
    color: var(--text-dark);
    line-height: 1.5;
}
@media (max-width: 576px) {
    .suitability-grid { grid-template-columns: 1fr; }
}

/* ========== Aftercare Guarantee ========== */
.aftercare-guarantee {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-mid) 100%);
    border-radius: 12px;
    padding: 40px;
    color: #fff;
    text-align: center;
}
.aftercare-guarantee h3 {
    color: #fff;
    margin-bottom: 1rem;
}
.aftercare-guarantee p {
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto 1.5rem;
}
.guarantee-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-top: 1.5rem;
}
.guarantee-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: var(--text-sm);
    font-weight: 600;
    color: #fff;
}
.guarantee-feature i {
    color: var(--secondary-color);
}

/* ===== VIDEO PLACEHOLDER COMPONENTS ===== */

/* Inner-page video placeholder card */
.video-placeholder {
    position: relative;
    background: linear-gradient(160deg, #0d1f2d 0%, var(--primary-dark) 40%, #1a4a5e 100%);
    border-radius: 14px;
    overflow: hidden;
    padding: 56px 40px;
    text-align: center;
    color: #fff;
}
.video-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 40%, rgba(72, 159, 181, 0.12) 0%, transparent 70%);
    pointer-events: none;
}
.video-placeholder-play {
    width: 80px;
    height: 80px;
    margin: 0 auto 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}
.video-placeholder-play i {
    font-size: 1.75rem;
    color: rgba(255, 255, 255, 0.7);
    margin-left: 4px;
}
.video-placeholder h4 {
    color: #fff;
    font-size: 1.5rem;
    font-family: var(--heading-font);
    font-weight: 600;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}
.video-placeholder p {
    color: rgba(255, 255, 255, 0.65);
    font-size: var(--text-sm);
    max-width: 480px;
    margin: 0 auto 20px;
    line-height: 1.65;
    position: relative;
    z-index: 1;
}
.video-placeholder-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 600;
    position: relative;
    z-index: 1;
}
.video-placeholder-badge i {
    font-size: 0.65rem;
    color: var(--secondary-color);
}

/* Compact variant for surgeon intro cards */
.video-placeholder-compact {
    padding: 36px 28px;
}
.video-placeholder-compact .video-placeholder-play {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}
.video-placeholder-compact .video-placeholder-play i {
    font-size: 1.35rem;
}
.video-placeholder-compact h4 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}
.video-placeholder-compact p {
    font-size: var(--text-xs);
    margin-bottom: 14px;
}

/* Side-by-side variant for treatment pages */
.video-placeholder-inline {
    display: flex;
    align-items: center;
    text-align: left;
    padding: 32px 36px;
    gap: 28px;
}
.video-placeholder-inline .video-placeholder-play {
    margin: 0;
    flex-shrink: 0;
}
.video-placeholder-inline h4 {
    margin-bottom: 6px;
    font-size: 1.15rem;
}
.video-placeholder-inline p {
    margin: 0 0 12px;
}

/* ===== ACTIVITY RESUMPTION TABLE ===== */
.activity-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.activity-table thead th {
    background: var(--primary-dark);
    color: #fff;
    font-family: var(--heading-font);
    font-size: var(--text-sm);
    font-weight: 600;
    padding: 14px 20px;
    text-align: left;
    letter-spacing: 0.3px;
}
.activity-table tbody td {
    padding: 13px 20px;
    font-size: var(--text-sm);
    color: var(--text-dark);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    vertical-align: middle;
}
.activity-table tbody tr:last-child td {
    border-bottom: none;
}
.activity-table tbody tr:nth-child(even) {
    background: rgba(214, 243, 244, 0.25);
}
.activity-table tbody tr:hover {
    background: rgba(214, 243, 244, 0.5);
}
.activity-table .activity-icon {
    width: 28px;
    text-align: center;
    color: var(--primary-mid);
    font-size: 0.95rem;
}
.activity-table .timeline-badge {
    display: inline-block;
    background: rgba(47, 127, 122, 0.08);
    color: var(--primary-mid);
    font-weight: 600;
    font-size: var(--text-xs);
    padding: 4px 12px;
    border-radius: 100px;
}

/* ===== RECOVERY TIMELINE ===== */
.recovery-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.recovery-stage {
    background: #fff;
    border-radius: 12px;
    padding: 28px 24px;
    border: 1px solid rgba(47, 127, 122, 0.1);
    position: relative;
    transition: box-shadow 0.3s ease;
}
.recovery-stage:hover {
    box-shadow: 0 8px 28px rgba(47, 127, 122, 0.1);
}
.recovery-stage-label {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-mid));
    color: #fff;
    font-family: var(--heading-font);
    font-size: var(--text-xs);
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.recovery-stage h5 {
    font-family: var(--heading-font);
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 600;
}
.recovery-stage p {
    font-size: var(--text-xs);
    color: #595959;
    line-height: 1.6;
    margin: 0;
}
@media (max-width: 991px) {
    .recovery-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .recovery-timeline {
        grid-template-columns: 1fr;
    }
}

/* ===== RISKS / TRANSPARENCY SECTION ===== */
.transparency-note {
    background: linear-gradient(135deg, rgba(214, 243, 244, 0.4) 0%, rgba(240, 240, 240, 0.6) 100%);
    border-left: 4px solid var(--primary-mid);
    border-radius: 0 12px 12px 0;
    padding: 28px 32px;
}
.transparency-note h5 {
    font-family: var(--heading-font);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-size: 1.05rem;
}
.transparency-note p {
    font-size: var(--text-sm);
    color: #595959;
    line-height: 1.7;
    margin: 0;
}
.transparency-note ul {
    margin: 12px 0 0;
    padding-left: 0;
    list-style: none;
}
.transparency-note ul li {
    font-size: var(--text-sm);
    color: #595959;
    padding: 4px 0 4px 24px;
    position: relative;
    line-height: 1.6;
}
.transparency-note ul li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-mid);
    font-size: 0.8rem;
    top: 7px;
}

/* ===== FINANCE EXAMPLES ===== */
.finance-examples {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.finance-card {
    background: #fff;
    border-radius: 12px;
    padding: 28px 24px;
    text-align: center;
    border: 1px solid rgba(47, 127, 122, 0.1);
    transition: box-shadow 0.3s ease;
}
.finance-card:hover {
    box-shadow: 0 8px 28px rgba(47, 127, 122, 0.1);
}
.finance-card .treatment-name {
    font-family: var(--heading-font);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}
.finance-card .monthly-amount {
    font-family: var(--heading-font);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-mid);
    line-height: 1.2;
}
.finance-card .monthly-amount span {
    font-size: var(--text-sm);
    font-weight: 400;
    color: #595959;
}
.finance-card .finance-detail {
    font-size: var(--text-xs);
    color: #888;
    margin-top: 6px;
}
@media (max-width: 768px) {
    .finance-examples {
        grid-template-columns: 1fr;
    }
}

/* ===== PROCEDURE VARIANTS ===== */
.variant-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.variant-card {
    background: #fff;
    border-radius: 12px;
    padding: 28px 24px;
    border: 1px solid rgba(47, 127, 122, 0.1);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.variant-card:hover {
    box-shadow: 0 8px 28px rgba(47, 127, 122, 0.1);
    transform: translateY(-2px);
}
.variant-card h5 {
    font-family: var(--heading-font);
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 8px;
    font-size: 1.05rem;
}
.variant-card .variant-tag {
    display: inline-block;
    background: rgba(47, 127, 122, 0.08);
    color: var(--primary-mid);
    font-size: var(--text-2xs);
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 100px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.variant-card p {
    font-size: var(--text-sm);
    color: #595959;
    line-height: 1.65;
    margin: 0;
}
.variant-card .variant-detail {
    margin-top: 12px;
    font-size: var(--text-xs);
    color: #888;
}
.variant-card .variant-detail strong {
    color: var(--text-dark);
}

/* ===== LENS OPTIONS ===== */
.lens-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.lens-card {
    background: #fff;
    border-radius: 12px;
    padding: 28px 24px;
    border: 1px solid rgba(47, 127, 122, 0.1);
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: box-shadow 0.3s ease;
}
.lens-card:hover {
    box-shadow: 0 8px 28px rgba(47, 127, 122, 0.1);
}
.lens-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-mid));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
    font-size: 1.15rem;
}
.lens-card h5 {
    font-family: var(--heading-font);
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 6px;
    font-size: 1rem;
}
.lens-card p {
    font-size: var(--text-sm);
    color: #595959;
    line-height: 1.6;
    margin: 0;
}
.lens-card .lens-best-for {
    margin-top: 8px;
    font-size: var(--text-xs);
    color: var(--primary-mid);
    font-weight: 600;
}
@media (max-width: 768px) {
    .variant-cards {
        grid-template-columns: 1fr;
    }
    .lens-options {
        grid-template-columns: 1fr;
    }
    .activity-table thead th,
    .activity-table tbody td {
        padding: 10px 14px;
        font-size: var(--text-xs);
    }
}

/* ===== ENHANCEMENT WARRANTY ===== */
.warranty-banner {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-mid) 100%);
    border-radius: 12px;
    padding: 32px 36px;
    display: flex;
    align-items: center;
    gap: 24px;
    color: #fff;
}
.warranty-banner-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.5rem;
}
.warranty-banner h5 {
    color: #fff;
    font-family: var(--heading-font);
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 1.1rem;
}
.warranty-banner p {
    color: rgba(255, 255, 255, 0.75);
    font-size: var(--text-sm);
    margin: 0;
    line-height: 1.6;
}
@media (max-width: 768px) {
    .warranty-banner {
        flex-direction: column;
        text-align: center;
        padding: 28px 24px;
    }
}

/* Responsive stacking */
@media (max-width: 768px) {
    .video-placeholder {
        padding: 40px 24px;
    }
    .video-placeholder-inline {
        flex-direction: column;
        text-align: center;
    }
    .video-placeholder-inline .video-placeholder-play {
        margin: 0 auto;
    }
    .video-placeholder-inline p {
        margin: 0 auto 12px;
    }
}

/* ===== CLINIC HISTORY TIMELINE ===== */
.clinic-timeline {
    position: relative;
    padding-left: 40px;
}
.clinic-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-mid) 0%, var(--primary-dark) 100%);
}
.timeline-item {
    position: relative;
    margin-bottom: 32px;
}
.timeline-item:last-child {
    margin-bottom: 0;
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: -33px;
    top: 4px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary-mid);
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px var(--primary-mid);
    z-index: 1;
}
.timeline-year {
    font-family: var(--heading-font);
    font-weight: 700;
    color: var(--primary-mid);
    font-size: var(--text-sm);
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}
.timeline-item h5 {
    font-family: var(--heading-font);
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
    margin-bottom: 6px;
}
.timeline-item p {
    font-size: var(--text-sm);
    color: #595959;
    line-height: 1.65;
    margin: 0;
}

/* ===== WHAT HAPPENS NEXT (Post-booking) ===== */
.next-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}
.next-step {
    text-align: center;
    padding: 28px 20px;
    position: relative;
}
.next-step::after {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-mid);
    font-size: 0.75rem;
    opacity: 0.4;
    z-index: 1;
}
.next-step:last-child::after {
    display: none;
}
.next-step-number {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-mid));
    color: #fff;
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}
.next-step h6 {
    font-family: var(--heading-font);
    font-weight: 600;
    color: var(--text-dark);
    font-size: var(--text-sm);
    margin-bottom: 6px;
}
.next-step p {
    font-size: var(--text-xs);
    color: #595959;
    line-height: 1.55;
    margin: 0;
}
@media (max-width: 768px) {
    .next-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    .next-step:nth-child(2)::after {
        display: none;
    }
}
@media (max-width: 480px) {
    .next-steps {
        grid-template-columns: 1fr;
    }
    .next-step::after {
        display: none;
    }
}

/* ===== PREP GUIDE ===== */
.prep-guide {
    background: linear-gradient(135deg, rgba(214, 243, 244, 0.3), rgba(240, 240, 240, 0.5));
    border-radius: 12px;
    padding: 32px;
    border: 1px solid rgba(47, 127, 122, 0.1);
}
.prep-guide h5 {
    font-family: var(--heading-font);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-size: 1.05rem;
}
.prep-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}
.prep-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: var(--text-sm);
    color: #595959;
    line-height: 1.55;
}
.prep-item i {
    color: var(--primary-mid);
    margin-top: 3px;
    flex-shrink: 0;
}
@media (max-width: 768px) {
    .prep-items {
        grid-template-columns: 1fr;
    }
}

/* ===== SELF-TEST / TREATMENT FINDER ===== */
.quiz-container {
    max-width: 720px;
    margin: 0 auto;
}
.quiz-progress {
    display: flex;
    gap: 6px;
    margin-bottom: 32px;
}
.quiz-progress-bar {
    flex: 1;
    height: 4px;
    border-radius: 4px;
    background: rgba(47, 127, 122, 0.12);
    transition: background 0.4s ease;
}
.quiz-progress-bar.active {
    background: var(--primary-mid);
}
.quiz-question {
    display: none;
    animation: quizFadeIn 0.4s ease;
}
.quiz-question.active {
    display: block;
}
@keyframes quizFadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}
.quiz-question h3 {
    font-family: var(--heading-font);
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: 8px;
    text-align: center;
}
.quiz-question > p {
    color: #595959;
    font-size: var(--text-sm);
    text-align: center;
    margin-bottom: 28px;
}
.quiz-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}
.quiz-option {
    background: #fff;
    border: 2px solid rgba(47, 127, 122, 0.12);
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: center;
}
.quiz-option:hover {
    border-color: var(--primary-mid);
    background: rgba(214, 243, 244, 0.2);
}
.quiz-option.selected {
    border-color: var(--primary-mid);
    background: rgba(214, 243, 244, 0.35);
    box-shadow: 0 0 0 1px var(--primary-mid);
}
.quiz-option h5 {
    font-family: var(--heading-font);
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
    margin-bottom: 4px;
}
.quiz-option p {
    font-size: var(--text-xs);
    color: #595959;
    margin: 0;
    line-height: 1.5;
}
.quiz-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 28px;
}
.quiz-nav .btn-quiz-back {
    background: transparent;
    border: 2px solid rgba(47, 127, 122, 0.2);
    color: var(--primary-mid);
    padding: 10px 28px;
    border-radius: 100px;
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: var(--text-sm);
    cursor: pointer;
    transition: all 0.25s ease;
}
.quiz-nav .btn-quiz-back:hover {
    border-color: var(--primary-mid);
    background: rgba(214, 243, 244, 0.2);
}
.quiz-result {
    display: none;
    text-align: center;
    animation: quizFadeIn 0.5s ease;
}
.quiz-result.active {
    display: block;
}
.quiz-result-card {
    background: linear-gradient(160deg, #0d1f2d 0%, var(--primary-dark) 40%, #1a4a5e 100%);
    border-radius: 16px;
    padding: 48px 40px;
    color: #fff;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}
.quiz-result-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 30%, rgba(72, 159, 181, 0.15) 0%, transparent 70%);
    pointer-events: none;
}
.quiz-result-card h3 {
    color: #fff;
    position: relative;
    z-index: 1;
}
.quiz-result-card p {
    color: rgba(255, 255, 255, 0.75);
    max-width: 520px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    font-size: var(--text-sm);
    line-height: 1.7;
}
.quiz-result-treatments {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    margin-top: 24px;
    text-align: left;
}
.quiz-result-treatment {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid rgba(47, 127, 122, 0.1);
    transition: box-shadow 0.3s ease;
}
.quiz-result-treatment:hover {
    box-shadow: 0 8px 28px rgba(47, 127, 122, 0.12);
}
.quiz-result-treatment h5 {
    font-family: var(--heading-font);
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 6px;
}
.quiz-result-treatment p {
    color: #595959;
    font-size: var(--text-sm);
    line-height: 1.6;
    margin-bottom: 12px;
}
.quiz-result-treatment .btn-learn {
    display: inline-block;
    color: var(--primary-mid);
    font-weight: 600;
    font-size: var(--text-sm);
    text-decoration: none;
}
.quiz-result-treatment .btn-learn:hover {
    text-decoration: underline;
}
@media (max-width: 576px) {
    .quiz-options {
        grid-template-columns: 1fr;
    }
}

/* ===== FLOAT CHAT MOBILE ===== */
@media (max-width: 600px) {
    .float-chat-wrap {
        bottom: 20px;
        right: 16px;
    }
    .float-chat-hint {
        font-size: 0.65rem;
        padding: 4px 10px;
    }
}

/* ===== FOCUS STATES (Accessibility) ===== */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.btn-main:focus-visible,
.btn-line-extra:focus-visible,
.btn-outline-prof:focus-visible,
.accordion-section-title:focus-visible {
    outline: 2px solid var(--primary-dark);
    outline-offset: 2px;
}
.float-chat-btn:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
}
.faq-category-tab:focus-visible,
.quiz-option:focus-visible {
    outline: 2px solid var(--primary-mid);
    outline-offset: 2px;
}

/* ===== STICKY BAR MOBILE FIX ===== */
@media (max-width: 600px) {
    .sticky-bar {
        flex-wrap: wrap;
        justify-content: center;
        max-width: 92vw;
        padding: 8px 14px;
        gap: 8px;
        bottom: 10px;
    }
    .sticky-bar .phone-link {
        font-size: 0.8rem;
        width: 100%;
        text-align: center;
    }
    .sticky-bar .btn-main {
        font-size: 0.8rem;
        padding: 8px 18px;
        width: 100%;
        text-align: center;
    }
}

/* ===== FAQ CATEGORY TABS ===== */
.faq-category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 30px;
}
.faq-category-tab {
    background: transparent;
    border: 1.5px solid rgba(47, 127, 122, 0.2);
    color: var(--text-dark);
    padding: 8px 20px;
    border-radius: 100px;
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: var(--text-sm);
    cursor: pointer;
    transition: all 0.25s ease;
}
.faq-category-tab:hover {
    border-color: var(--primary-mid);
    color: var(--primary-mid);
}
.faq-category-tab.active {
    background: var(--primary-mid);
    border-color: var(--primary-mid);
    color: #fff;
}

/* ===== SOCIAL FOOTER COMING SOON ===== */
.social-icons a[href="#"] {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
}
