/* ============================================================
   CANADIAN COUNSELLING CENTER — Landing Page Styles
   styles.css

   Table of Contents:
   1.  CSS Custom Properties (Design Tokens)
   2.  Base & Reset
   3.  Typography
   4.  Reusable Components (buttons, labels, section titles)
   5.  Skeleton Loaders
   6.  Navigation
   7.  Hero Section
   8.  Trust Bar
   9.  Section: Understanding Depression
   10. Section: Symptoms Grid
   11. Section: Why Online Counselling
   12. Section: Process Timeline
   13. Section: Meet Counsellors
   14. Section: Who It's For
   15. Section: Testimonials
   16. Section: Stats
   17. Section: FAQ
   18. Section: Booking Form
   19. Section: Emergency Notice
   20. Section: Blog / Resources
   21. Section: Insurance
   22. Section: Final CTA
   23. Footer
   24. Utilities & Helpers
   25. Responsive Overrides
   ============================================================ */


/* ============================================================
   1. CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ============================================================ */
:root {
    /* Brand Colors */
    --color-primary:       #2563EB;  /* Calm trustworthy blue */
    --color-primary-dark:  #1D4ED8;
    --color-primary-light: #DBEAFE;
    --color-secondary:     #059669;  /* Healing green */
    --color-secondary-lt:  #D1FAE5;

    /* Neutrals */
    --color-text:          #1E293B;
    --color-text-muted:    #64748B;
    --color-text-light:    #94A3B8;
    --color-heading:       #0F172A;

    /* Backgrounds */
    --color-bg:            #FFFFFF;
    --color-bg-warm:       #F8FAFC;
    --color-bg-card:       #FFFFFF;

    /* Accents */
    --color-accent-soft:   #EFF6FF;
    --color-accent-mint:   #ECFDF5;
    --color-emergency:     #DC2626;
    --color-emergency-bg:  #FEF2F2;
    --color-warning:       #D97706;

    /* Gradients */
    --gradient-hero:       linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 40%, #E0F2FE 100%);
    --gradient-calm:       linear-gradient(135deg, #F0FDF4 0%, #ECFDF5 50%, #EFF6FF 100%);
    --gradient-booking:    linear-gradient(135deg, #1D4ED8 0%, #1e40af 40%, #1D4ED8 100%);
    --gradient-final-cta:  linear-gradient(135deg, #0F172A 0%, #1E293B 100%);

    /* Shadows */
    --shadow-sm:   0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.05);
    --shadow-md:   0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.05);
    --shadow-lg:   0 10px 40px rgba(0,0,0,.10), 0 4px 12px rgba(0,0,0,.06);
    --shadow-xl:   0 20px 60px rgba(0,0,0,.12), 0 8px 20px rgba(0,0,0,.07);
    --shadow-card: 0 2px 12px rgba(37,99,235,.08), 0 1px 4px rgba(0,0,0,.04);
    --shadow-blue: 0 8px 30px rgba(37,99,235,.25);

    /* Spacing */
    --section-py: 5rem;
    --section-py-sm: 3rem;

    /* Border Radius */
    --radius-sm:   0.5rem;
    --radius-md:   1rem;
    --radius-lg:   1.5rem;
    --radius-xl:   2rem;

    /* Typography */
    --font-body:     'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading:  'Playfair Display', Georgia, 'Times New Roman', serif;

    /* Transition */
    --transition:  all .25s cubic-bezier(.4, 0, .2, 1);
}


/* ============================================================
   2. BASE & RESET
   ============================================================ */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    opacity: 0;
    transition: opacity .4s ease;
}

a {
    transition: var(--transition);
}

/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */
.section-label {
    display: inline-block;
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--color-primary);
    background: var(--color-primary-light);
    padding: .3rem .85rem;
    border-radius: 100px;
    margin-bottom: 1rem;
}

.section-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--color-heading);
    line-height: 1.25;
    margin-bottom: 1rem;
}

.section-subtext {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    max-width: 560px;
    line-height: 1.75;
}

.section-body-text {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}


/* ============================================================
   4. REUSABLE COMPONENTS
   ============================================================ */

/* — Section Padding — */
.section-padded {
    padding: var(--section-py) 0;
}

/* — Background Variants — */
.bg-light-warm {
    background-color: var(--color-bg-warm);
}

.bg-gradient-calm {
    background: var(--gradient-calm);
}

/* — CTA Buttons — */
.btn-primary-cta {
    background: var(--color-primary);
    color: #fff;
    border: none;
    border-radius: 100px;
    font-weight: 600;
    font-size: .95rem;
    padding: .7rem 1.75rem;
    box-shadow: var(--shadow-blue);
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary-cta:hover,
.btn-primary-cta:focus {
    background: var(--color-primary-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(37,99,235,.35);
}

.btn-outline-primary {
    border-radius: 100px !important;
    font-weight: 600;
    font-size: .85rem;
    transition: var(--transition);
}

.btn-outline-primary:hover {
    transform: translateY(-1px);
}

/* — Section Image Block — */
.section-image-block {
    position: relative;
}

.section-img {
    width: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg) !important;
}

.image-badge-card {
    position: absolute;
    bottom: 1.5rem;
    left: -1rem;
    background: #fff;
    border-radius: var(--radius-md);
    padding: .75rem 1.25rem;
    box-shadow: var(--shadow-lg);
    font-size: .85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    max-width: 280px;
    z-index: 2;
}

/* — Mini Stat Cards — */
.mini-stat-card {
    background: var(--color-bg);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    text-align: center;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(37,99,235,.08);
    transition: var(--transition);
}

.mini-stat-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.mini-stat-num {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: .3rem;
}

.mini-stat-label {
    font-size: .85rem;
    color: var(--color-text-muted);
    font-weight: 500;
}


/* ============================================================
   5. SKELETON LOADERS
   ============================================================ */
@keyframes shimmer {
    0%   { background-position: -600px 0; }
    100% { background-position:  600px 0; }
}

.img-skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
    background-size: 1200px 100%;
    animation: shimmer 1.8s infinite linear;
    border-radius: var(--radius-md);
    position: absolute;
    inset: 0;
    z-index: 1;
}


/* ============================================================
   6. NAVIGATION
   ============================================================ */
#mainNav {
    transition: var(--transition);
    padding: .9rem 0;
    z-index: 1000;
}

#mainNav.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,.08) !important;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: .5rem;
    text-decoration: none;
}

/* Logo image — always visible, never skeleton-hidden */
.navbar-brand .brand-logo img {
    height: 62px;
    width: auto;
    display: block;
    opacity: 1 !important;
    /* Thin border makes a white-bg logo distinguishable on a white navbar */
    border: 1px solid #E2E8F0;
    border-radius: var(--radius-sm);
    padding: 3px 6px;
    background: #fff;
}

/* Keep legacy text-based brand rules in case fallback is needed */
.brand-icon {
    font-size: 1.5rem;
    color: var(--color-primary);
}

.brand-name {
    font-size: 1.15rem;
    color: var(--color-heading);
    letter-spacing: -.01em;
}

.brand-name strong {
    color: var(--color-primary);
}

/* Psychology Today verified seal — constrain height to fit navbar */
.navbar-pt-seal {
    line-height: 0;
}

.navbar-pt-seal .sx-verified-seal,
.navbar-pt-seal img {
    height: 38px !important;
    width: auto !important;
    opacity: 1 !important;
}

.navbar-nav .nav-link {
    font-weight: 500;
    font-size: .9rem;
    color: var(--color-text-muted);
    padding: .4rem .75rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover {
    color: var(--color-primary);
    background: var(--color-accent-soft);
}


/* ============================================================
   7. HERO SECTION — SWIPER SLIDER
   ============================================================ */

/* ── Section wrapper (no background — each slide owns its gradient) ── */
.hero-section {
    position: relative;
    overflow: hidden;
}

/* ── Swiper container ── */
.hero-swiper { width: 100%; position: relative; }

/* ── Each slide ── */
.hero-slide {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 90vh;
    padding: 3rem 0 4.5rem;
}

/* Ensure content sits above decorative blob */
.hero-slide > .container {
    position: relative;
    z-index: 1;
}

/* Slide gradient backgrounds */
.hero-slide--1 { background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 45%, #E0E7FF 100%); }
.hero-slide--2 { background: linear-gradient(135deg, #F5F3FF 0%, #EDE9FE 45%, #FCE7F3 100%); }
.hero-slide--3 { background: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 45%, #D1FAE5 100%); }
.hero-slide--4 { background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 45%, #BAE6FD 100%); }

/* Decorative radial blob — colour matches slide accent */
.hero-slide-blob {
    position: absolute;
    width: 720px;
    height: 720px;
    border-radius: 50%;
    top: -220px;
    right: -120px;
    pointer-events: none;
    z-index: 0;
}

.hero-slide--1 .hero-slide-blob { background: radial-gradient(circle, rgba(37,99,235,.09)  0%, transparent 65%); }
.hero-slide--2 .hero-slide-blob { background: radial-gradient(circle, rgba(124,58,237,.09) 0%, transparent 65%); }
.hero-slide--3 .hero-slide-blob { background: radial-gradient(circle, rgba(5,150,105,.09)  0%, transparent 65%); }
.hero-slide--4 .hero-slide-blob { background: radial-gradient(circle, rgba(2,132,199,.09)  0%, transparent 65%); }

/* ── Layout utilities ── */
.hero-bg-overlay { display: none; }
.min-vh-85  { min-height: 85vh; }
.min-vh-hero { min-height: 85vh; }

.hero-content { padding: 3rem 0; }

/* ── Pill badges ── */
.hero-pill {
    display: inline-flex;
    align-items: center;
    background: rgba(37,99,235,.1);
    color: var(--color-primary);
    border-radius: 100px;
    padding: .45rem 1.1rem;
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .02em;
    border: 1px solid rgba(37,99,235,.15);
}

.hero-pill--2 { background: rgba(124,58,237,.1); color: #7C3AED; border-color: rgba(124,58,237,.2); }
.hero-pill--3 { background: rgba(5,150,105,.1);  color: #059669; border-color: rgba(5,150,105,.2);  }
.hero-pill--4 { background: rgba(2,132,199,.1);  color: #0284C7; border-color: rgba(2,132,199,.2);  }

/* ── Main headline ── */
.hero-headline {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 700;
    color: var(--color-heading);
    line-height: 1.15;
    margin-bottom: 1.25rem;
    letter-spacing: -.02em;
}

/* Slide 1 — blue highlight with typing effect */
.headline-highlight { color: var(--color-primary); position: relative; }
.headline-highlight::after {
    content: ''; position: absolute;
    left: 0; bottom: 2px; width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--color-primary), #93C5FD);
    border-radius: 2px; opacity: .4;
}

/* Slide 2 — purple highlight */
.headline-highlight--2 { color: #7C3AED; position: relative; }
.headline-highlight--2::after {
    content: ''; position: absolute;
    left: 0; bottom: 2px; width: 100%; height: 3px;
    background: linear-gradient(90deg, #7C3AED, #C4B5FD);
    border-radius: 2px; opacity: .4;
}

/* Slide 3 — green highlight */
.headline-highlight--3 { color: #059669; position: relative; }
.headline-highlight--3::after {
    content: ''; position: absolute;
    left: 0; bottom: 2px; width: 100%; height: 3px;
    background: linear-gradient(90deg, #059669, #6EE7B7);
    border-radius: 2px; opacity: .4;
}

/* Slide 4 — sky-blue highlight */
.headline-highlight--4 { color: #0284C7; position: relative; }
.headline-highlight--4::after {
    content: ''; position: absolute;
    left: 0; bottom: 2px; width: 100%; height: 3px;
    background: linear-gradient(90deg, #0284C7, #7DD3FC);
    border-radius: 2px; opacity: .4;
}


/* ── Subtext ── */
.hero-subtext {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    line-height: 1.75;
    max-width: 500px;
    margin-bottom: 1.5rem;
}

/* ── Trust micro-chips ── */
.trust-micro {
    font-size: .85rem;
    font-weight: 500;
    color: var(--color-text-muted);
}

/* ── CTA Buttons ── */
.btn-hero-primary {
    background: var(--color-primary);
    color: #fff;
    border: none;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1rem;
    padding: .9rem 2rem;
    box-shadow: var(--shadow-blue);
    transition: var(--transition);
}

.btn-hero-primary:hover {
    background: var(--color-primary-dark);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(37,99,235,.38);
}

/* Slide variant — purple */
.btn-hero--2 { background: #7C3AED; box-shadow: 0 8px 25px rgba(124,58,237,.3); }
.btn-hero--2:hover { background: #6D28D9; color: #fff; transform: translateY(-3px); box-shadow: 0 14px 40px rgba(124,58,237,.4); }

/* Slide variant — green */
.btn-hero--3 { background: #059669; box-shadow: 0 8px 25px rgba(5,150,105,.3); }
.btn-hero--3:hover { background: #047857; color: #fff; transform: translateY(-3px); box-shadow: 0 14px 40px rgba(5,150,105,.4); }

/* Slide variant — sky */
.btn-hero--4 { background: #0284C7; box-shadow: 0 8px 25px rgba(2,132,199,.3); }
.btn-hero--4:hover { background: #0369A1; color: #fff; transform: translateY(-3px); box-shadow: 0 14px 40px rgba(2,132,199,.4); }

.btn-hero-ghost {
    background: transparent;
    color: var(--color-text);
    border: 2px solid rgba(0,0,0,.12);
    border-radius: 100px;
    font-weight: 600;
    font-size: 1rem;
    padding: .9rem 2rem;
    transition: var(--transition);
}

.btn-hero-ghost:hover {
    background: rgba(37,99,235,.06);
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-2px);
}

/* ── Star rating ── */
.hero-rating .stars { color: #F59E0B; font-size: 1rem; }
.rating-text { font-size: .9rem; color: var(--color-text-muted); }

/* ── Hero image column ── */
.hero-image-col { position: relative; padding-top: 2rem; }

.hero-image-wrapper {
    position: relative;
    display: inline-block;
    max-width: 540px;
}

.hero-img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    width: 100%;
}

/* ── Floating info cards ── */
.hero-float-card {
    position: absolute;
    background: #fff;
    border-radius: var(--radius-md);
    padding: .75rem 1.1rem;
    box-shadow: var(--shadow-lg);
    font-size: .83rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    z-index: 3;
    animation: floatBob 4s ease-in-out infinite;
    white-space: nowrap;
}

.hero-float-1 { top: 1.5rem; left: -1.5rem; animation-delay: 0s; }
.hero-float-2 { bottom: 2.5rem; right: -1rem; animation-delay: 2s; padding: .85rem 1rem; }

@keyframes floatBob {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-6px); }
}

.float-avatar-group { display: flex; }

.float-avatar {
    width: 28px; height: 28px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-right: -8px;
    object-fit: cover;
    opacity: 1;
}

.hero-float-card img { opacity: 1 !important; }

/* ================================================================
   SWIPER HERO — Custom Navigation, Pagination & Progress Bar
   ================================================================ */

/* ── Navigation arrows ── */
.hero-swiper-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,.11), 0 1px 4px rgba(0,0,0,.07);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .25s ease;
    color: var(--color-heading);
    font-size: 1.15rem;
    border: 1px solid rgba(0,0,0,.06);
    user-select: none;
    line-height: 1;
}

.hero-swiper-btn:hover {
    background: var(--color-primary);
    color: #fff;
    box-shadow: 0 8px 28px rgba(37,99,235,.38);
    transform: translateY(-50%) scale(1.07);
}

.hero-swiper-prev { left: 1.5rem; }
.hero-swiper-next { right: 1.5rem; }

.hero-swiper-btn.swiper-button-disabled {
    opacity: .3;
    cursor: default;
    pointer-events: none;
}

/* ── Bullet pagination ── */
.hero-swiper-pagination {
    position: absolute;
    bottom: 2.6rem;
    left: 0; right: 0;
    display: flex;
    justify-content: center;
    gap: .55rem;
    z-index: 20;
}

.hero-swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    border-radius: 100px;
    background: rgba(0,0,0,.22);
    opacity: 1;
    transition: all .4s cubic-bezier(.25,.46,.45,.94);
    cursor: pointer;
    display: inline-block;
}

.hero-swiper-pagination .swiper-pagination-bullet-active {
    width: 30px;
    background: var(--color-primary);
}

/* ── Autoplay progress bar (bottom edge of hero) ── */
.hero-progress-wrap {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    height: 3px;
    background: rgba(0,0,0,.06);
    z-index: 20;
}

.hero-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--color-primary) 0%, #60A5FA 100%);
    border-radius: 0 2px 2px 0;
}

/* ═══════════════════════════════════════════════════════════════
   SLIDE 1 — decorative ring behind image + bg watermark
   ═══════════════════════════════════════════════════════════════ */
.hero-watermark {
    position: absolute;
    font-family: var(--font-heading);
    font-size: clamp(8rem, 20vw, 18rem);
    font-weight: 900;
    color: var(--color-primary);
    opacity: .04;
    right: 6%;
    top: 50%;
    transform: translateY(-50%);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

.hero-img-ring {
    position: absolute;
    inset: -18px;
    border-radius: inherit;
    border: 2px dashed rgba(37,99,235,.18);
    border-radius: var(--radius-xl);
    pointer-events: none;
    z-index: 0;
    animation: ringPulse 4s ease-in-out infinite;
}

@keyframes ringPulse {
    0%, 100% { opacity: .5; transform: scale(1); }
    50%       { opacity: 1; transform: scale(1.012); }
}

/* ═══════════════════════════════════════════════════════════════
   SLIDE 2 — Circular image + quote mark + orbiting badges
   ═══════════════════════════════════════════════════════════════ */
.hero-quote-mark {
    position: absolute;
    font-family: Georgia, serif;
    font-size: clamp(14rem, 28vw, 28rem);
    line-height: 1;
    color: #7C3AED;
    opacity: .05;
    left: 2%;
    top: -2rem;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

.hero-circle-wrap {
    position: relative;
    width: clamp(260px, 38vw, 420px);
    height: clamp(260px, 38vw, 420px);
    margin: 0 auto;
}

.hero-circle-skeleton {
    position: absolute;
    inset: 0;
    border-radius: 50%;
}

.hero-circle-ring {
    position: absolute;
    inset: -14px;
    border-radius: 50%;
    border: 3px solid rgba(124,58,237,.2);
    animation: ringPulse 4s ease-in-out infinite;
    pointer-events: none;
}

/* Per-slide accent: ring border + image shadow + quote mark tint */
.hero-slide--1 .hero-circle-ring  { border-color: rgba(37,99,235,.2); }
.hero-slide--1 .hero-circle-img   { box-shadow: 0 24px 64px rgba(37,99,235,.22); }
.hero-slide--1 .hero-quote-mark   { color: rgba(37,99,235,.06); }

.hero-slide--2 .hero-circle-ring  { border-color: rgba(124,58,237,.2); }
.hero-slide--2 .hero-circle-img   { box-shadow: 0 24px 64px rgba(124,58,237,.22); }
.hero-slide--2 .hero-quote-mark   { color: rgba(124,58,237,.06); }

.hero-slide--3 .hero-circle-ring  { border-color: rgba(5,150,105,.2); }
.hero-slide--3 .hero-circle-img   { box-shadow: 0 24px 64px rgba(5,150,105,.22); }
.hero-slide--3 .hero-quote-mark   { color: rgba(5,150,105,.06); }

.hero-slide--4 .hero-circle-ring  { border-color: rgba(2,132,199,.2); }
.hero-slide--4 .hero-circle-img   { box-shadow: 0 24px 64px rgba(2,132,199,.22); }
.hero-slide--4 .hero-quote-mark   { color: rgba(2,132,199,.06); }

.hero-circle-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    display: block;
    box-shadow: 0 24px 64px rgba(124,58,237,.22);
    opacity: 0;
    transition: opacity .4s ease;
    position: relative;
    z-index: 1;
}

/* Orbiting stat badges */
.hero-badge {
    position: absolute;
    background: #fff;
    border-radius: 100px;
    padding: .5rem 1rem;
    box-shadow: 0 8px 28px rgba(0,0,0,.12);
    font-size: .8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    white-space: nowrap;
    z-index: 4;
    animation: floatBob 5s ease-in-out infinite;
}

.hero-badge--tl { top: 8%; left: -12%; animation-delay: 0s; }
.hero-badge--br { bottom: 8%; right: -10%; animation-delay: 2.5s; }

/* ═══════════════════════════════════════════════════════════════
   SLIDE 3 — Glass proof cards (no hero photo)
   ═══════════════════════════════════════════════════════════════ */
.hero-proof-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 420px;
}

.hero-proof-card {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    background: rgba(255,255,255,.72);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.9);
    border-radius: 1rem;
    padding: 1.25rem 1.4rem;
    box-shadow: 0 4px 24px rgba(5,150,105,.1);
    transition: transform .25s ease, box-shadow .25s ease;
}

.hero-proof-card:hover {
    transform: translateX(-6px);
    box-shadow: 0 8px 36px rgba(5,150,105,.18);
}

/* Accent card gets stronger background */
.hero-proof-card--accent {
    background: rgba(5,150,105,.08);
    border-color: rgba(5,150,105,.2);
    transform: translateX(-10px);  /* offset creates visual rhythm */
}

.hero-proof-card--accent:hover { transform: translateX(-16px); }

.hero-proof-icon {
    width: 52px;
    height: 52px;
    border-radius: .875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.hero-proof-num {
    font-family: var(--font-heading);
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--color-heading);
    line-height: 1;
    margin-bottom: .15rem;
}

.hero-proof-num span { font-size: 1.1rem; opacity: .75; }

.hero-proof-label {
    font-size: .8rem;
    color: var(--color-text-muted);
    font-weight: 500;
    line-height: 1.4;
}

.hero-proof-check {
    margin-left: auto;
    font-size: 1.2rem;
    color: #059669;
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════
   SLIDE 4 — Full-bleed panel + diagonal clip + chips
   ═══════════════════════════════════════════════════════════════ */
.hero-bleed-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 52%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-bleed-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    opacity: 0;
    transition: opacity .5s ease;
}

.hero-bleed-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(240,249,255,.6) 0%, transparent 40%);
}

/* Inline info chips for slide 4 (replaces floating cards) */
.hero-chip {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(2,132,199,.15);
    border-radius: 100px;
    padding: .45rem 1rem;
    font-size: .82rem;
    font-weight: 500;
    color: var(--color-text);
    box-shadow: 0 2px 12px rgba(2,132,199,.1);
}

/* ── Hero image col: show on ALL sizes (mobile gets top position) ── */
.hero-image-col {
    position: relative;
    padding-top: 2rem;
    display: flex;
}

/* ── Hero responsive overrides ── */
@media (max-width: 991px) {
    .hero-slide { min-height: auto; padding: 2.5rem 0 4rem; }
    .hero-swiper-btn { width: 40px; height: 40px; font-size: 1rem; }
    .hero-swiper-prev { left: .6rem; }
    .hero-swiper-next { right: .6rem; }

    /* Slide 2: stack vertically */
    .hero-circle-wrap { width: 240px; height: 240px; }
    .hero-badge--tl { left: -6%; }
    .hero-badge--br { right: -6%; }

    /* Slide 3: proof cards full-width */
    .hero-proof-stack { max-width: 100%; }
    .hero-proof-card--accent { transform: none; }
    .hero-proof-card--accent:hover { transform: translateX(-6px); }

    /* Slide 4: hide bleed panel, use gradient bg only */
    .hero-bleed-panel { display: none; }
}

@media (max-width: 575px) {
    .hero-slide { padding: 2rem 0 3.5rem; }
    .hero-swiper-btn { display: none; }
    .hero-swiper-pagination { bottom: 1.8rem; }
    .hero-watermark { font-size: 7rem; opacity: .03; }
    .hero-quote-mark { font-size: 12rem; }
    .hero-circle-wrap { width: 200px; height: 200px; }
    .hero-badge { font-size: .72rem; padding: .4rem .75rem; }
    .hero-badge--tl { left: -2%; top: 2%; }
    .hero-badge--br { right: -2%; bottom: 2%; }
    .hero-proof-card { padding: 1rem; gap: .85rem; }
    .hero-proof-num { font-size: 1.6rem; }
}


/* ============================================================
   7b. ABOUT US SECTION
   ============================================================ */

.about-section {
    background: linear-gradient(160deg, #F8FAFF 0%, #EFF6FF 50%, #F5F3FF 100%);
    position: relative;
    overflow: hidden;
}

/* Subtle background watermark */
.about-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37,99,235,.05) 0%, transparent 70%);
    bottom: -200px;
    left: -150px;
    pointer-events: none;
}

/* ── Image block ── */
.about-image-block {
    position: relative;
    padding: 1.5rem 1.5rem 1.5rem 0;
}

.about-img-wrap {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(37,99,235,.14), 0 4px 16px rgba(0,0,0,.08);
}

.about-main-img {
    width: 100%;
    display: block;
    border-radius: 1.5rem;
}

/* Decorative accent square behind image */
.about-img-accent {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 1.25rem;
    background: linear-gradient(135deg, rgba(37,99,235,.12), rgba(124,58,237,.08));
    bottom: -1rem;
    right: -1rem;
    z-index: -1;
    border: 2px solid rgba(37,99,235,.1);
}

/* ── Floating info cards ── */
.about-float-card {
    position: absolute;
    background: #fff;
    border-radius: 1rem;
    padding: .75rem 1.1rem;
    box-shadow: 0 8px 32px rgba(0,0,0,.12);
    display: flex;
    align-items: center;
    gap: .75rem;
    z-index: 4;
    animation: floatBob 5s ease-in-out infinite;
}

.about-float-tl {
    top: .5rem;
    left: -1.25rem;
    animation-delay: 0s;
}

.about-float-br {
    bottom: .5rem;
    right: -1rem;
    animation-delay: 2.5s;
}

.about-float-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(37,99,235,.1);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.about-float-icon--green {
    background: rgba(5,150,105,.1);
    color: #059669;
}

.about-float-num {
    font-weight: 700;
    font-size: 1rem;
    color: var(--color-heading);
    line-height: 1.2;
}

.about-float-sub {
    font-size: .72rem;
    color: var(--color-text-muted);
}

/* ── Body text ── */
.about-body-text {
    font-size: 1.05rem;
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: 1.1rem;
}

/* ── Value pillar cards ── */
.about-value-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 1.25rem 1rem;
    text-align: center;
    border: 1px solid #EEF2FF;
    box-shadow: 0 2px 12px rgba(37,99,235,.06);
    transition: var(--transition);
    height: 100%;
}

.about-value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(37,99,235,.12);
}

.about-value-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin: 0 auto .75rem;
}

.about-value-title {
    font-weight: 700;
    font-size: .95rem;
    color: var(--color-heading);
    margin-bottom: .35rem;
}

.about-value-text {
    font-size: .82rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* ── Mission highlight box ── */
.about-mission-box {
    background: linear-gradient(135deg, #EFF6FF, #F5F3FF);
    border-left: 4px solid var(--color-primary);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: 1.4rem 1.5rem;
    margin-top: .5rem;
}

.about-mission-label {
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--color-primary);
    margin-bottom: .6rem;
}

.about-mission-text {
    font-size: .97rem;
    color: var(--color-text);
    line-height: 1.75;
    margin: 0;
    font-style: italic;
}

/* ── Bottom stat strip ── */
.about-stat-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 32px rgba(37,99,235,.08);
    border: 1px solid #EEF2FF;
    margin-top: 4rem;
    padding: 2rem 1rem;
}

.about-stat-item {
    flex: 1;
    min-width: 120px;
    text-align: center;
    padding: .5rem 1.5rem;
}

.about-stat-num {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: .3rem;
}

.about-stat-num span {
    font-size: 1.2rem;
    opacity: .8;
}

.about-stat-label {
    font-size: .82rem;
    font-weight: 500;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: .05em;
}

.about-stat-divider {
    width: 1px;
    height: 48px;
    background: #E2E8F0;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .about-float-tl { left: .5rem; }
    .about-float-br { right: .5rem; }
    .about-stat-divider { display: none; }
    .about-stat-item { min-width: 45%; border-bottom: 1px solid #EEF2FF; padding: 1rem; }
}

@media (max-width: 575px) {
    .about-img-accent { display: none; }
    .about-stat-item { min-width: 100%; }
}

/* ============================================================
   8. TRUST BAR
   ============================================================ */
.trust-bar-section {
    background: #fff;
    border-top: 1px solid #F1F5F9;
    border-bottom: 1px solid #F1F5F9;
    padding: 1.75rem 0;
}

.trust-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.trust-bar-item {
    display: flex;
    align-items: center;
    gap: .75rem;
    flex: 1;
    min-width: 150px;
}

.trust-bar-icon {
    font-size: 1.5rem;
    color: var(--color-primary);
    flex-shrink: 0;
}

.trust-bar-label {
    font-weight: 700;
    font-size: .9rem;
    color: var(--color-heading);
    line-height: 1.2;
}

.trust-bar-sub {
    font-size: .77rem;
    color: var(--color-text-muted);
}

.trust-bar-divider {
    width: 1px;
    height: 36px;
    background: #E2E8F0;
    flex-shrink: 0;
}


/* ============================================================
   10. SYMPTOMS GRID
   ============================================================ */
.symptom-card {
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    height: 100%;
    border: 1px solid #F1F5F9;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.symptom-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--color-primary);
    border-radius: 4px 0 0 4px;
    opacity: 0;
    transition: var(--transition);
}

.symptom-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary-light);
}

.symptom-card:hover::before {
    opacity: 1;
}

.symptom-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: var(--color-accent-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.symptom-card:hover .symptom-icon-wrap {
    background: var(--color-primary);
    color: #fff;
    transform: scale(1.1);
}

.symptom-card h5 {
    font-weight: 700;
    font-size: 1rem;
    color: var(--color-heading);
    margin-bottom: .5rem;
}

.symptom-card p {
    font-size: .9rem;
    color: var(--color-text-muted);
    margin-bottom: 0;
    line-height: 1.65;
}

/* CTA symptom card */
.symptom-card--cta {
    background: var(--gradient-booking);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.symptom-card--cta::before { display: none; }

.symptom-cta-content {
    text-align: center;
    color: #fff;
}

.symptom-cta-icon {
    font-size: 2.5rem;
    color: #fff;
    opacity: .85;
    margin-bottom: 1rem;
    display: block;
}

.symptom-card--cta h5 {
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: .5rem;
}

.symptom-card--cta p {
    color: rgba(255,255,255,.8);
}

.symptom-card--cta .btn {
    background: #fff;
    color: var(--color-primary);
    border: none;
    border-radius: 100px;
    font-weight: 700;
    padding: .6rem 1.5rem;
    transition: var(--transition);
}

.symptom-card--cta .btn:hover {
    background: rgba(255,255,255,.9);
    transform: translateY(-2px);
}


/* ============================================================
   11. WHY ONLINE COUNSELLING — BENEFIT LIST
   ============================================================ */
.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.benefit-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    background: var(--color-primary-light);
    color: var(--color-primary);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.benefit-item:hover .benefit-icon {
    background: var(--color-primary);
    color: #fff;
    transform: scale(1.08);
}


/* ============================================================
   12. PROCESS TIMELINE
   ============================================================ */
.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    position: relative;
}

.process-step-number {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    font-weight: 800;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(37,99,235,.3);
    position: relative;
    z-index: 2;
}

.process-step-connector {
    position: absolute;
    left: 25px;
    top: 52px;
    width: 2px;
    height: calc(100% + 0px);
    background: linear-gradient(to bottom, var(--color-primary), var(--color-primary-light));
    z-index: 1;
}

.process-step-connector.last {
    display: none;
}

.process-step-card {
    background: var(--color-bg-card);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    flex: 1;
    border: 1px solid #F1F5F9;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.process-step-card:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary-light);
}

.process-icon {
    font-size: 1.6rem;
    color: var(--color-primary);
    margin-bottom: .5rem;
}

.process-step-card h5 {
    font-weight: 700;
    color: var(--color-heading);
    margin-bottom: .4rem;
    font-size: 1rem;
}

.process-step-card p {
    font-size: .9rem;
    color: var(--color-text-muted);
    margin-bottom: .5rem;
}

.process-duration {
    display: inline-flex;
    align-items: center;
    font-size: .78rem;
    font-weight: 600;
    color: var(--color-primary);
    background: var(--color-primary-light);
    padding: .25rem .7rem;
    border-radius: 100px;
}


/* ============================================================
   13. COUNSELLOR CARDS
   ============================================================ */
.counsellor-card {
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid #F1F5F9;
    transition: var(--transition);
    height: 100%;
}

.counsellor-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.counsellor-img-wrap {
    position: relative;
    height: 220px;
    background: #f8f9fb;
    overflow: hidden;
}

.counsellor-img-skeleton {
    height: 100%;
    border-radius: 0;
    position: absolute;
    inset: 0;
}

.counsellor-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform .4s ease, opacity .4s ease;
}

.counsellor-card:hover .counsellor-img {
    transform: scale(1.04);
}

.counsellor-online-badge {
    position: absolute;
    top: .75rem;
    right: .75rem;
    background: rgba(5,150,105,.9);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    padding: .3rem .7rem;
    border-radius: 100px;
    backdrop-filter: blur(4px);
}

.counsellor-online-badge i {
    font-size: .5rem;
    vertical-align: middle;
    margin-right: 3px;
}

.counsellor-online-badge.available-soon {
    background: rgba(217,119,6,.9);
}

.counsellor-info {
    padding: 1.25rem;
}

.counsellor-name {
    font-weight: 800;
    font-size: 1rem;
    color: var(--color-heading);
    margin-bottom: .15rem;
}

.counsellor-credentials {
    font-size: .78rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: .25rem;
}

.counsellor-specialty {
    font-size: .77rem;
    color: var(--color-text-muted);
    font-weight: 500;
    margin-bottom: .6rem;
}

.counsellor-bio {
    font-size: .85rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: .75rem;
}

.counsellor-rating {
    font-size: .85rem;
    color: #F59E0B;
}


/* ============================================================
   14. WHO IT'S FOR — USE CASE CARDS
   ============================================================ */
.usecase-card {
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
    border: 1px solid #F1F5F9;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    text-align: center;
}

.usecase-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary-light);
}

.usecase-icon {
    font-size: 2.25rem;
    color: var(--color-primary);
    display: block;
    margin: 0 auto .75rem;
    transition: var(--transition);
}

.usecase-card:hover .usecase-icon {
    transform: scale(1.15);
    color: var(--color-secondary);
}

.usecase-card h5 {
    font-weight: 700;
    color: var(--color-heading);
    margin-bottom: .5rem;
    font-size: 1rem;
}

.usecase-card p {
    font-size: .88rem;
    color: var(--color-text-muted);
    margin-bottom: 0;
}


/* ============================================================
   15. TESTIMONIALS
   ============================================================ */
.overall-rating-badge {
    display: inline-flex;
    align-items: center;
    font-size: .9rem;
    color: #F59E0B;
    margin-top: .75rem;
    font-weight: 500;
}

.overall-rating-badge span {
    color: var(--color-text-muted);
}

.testimonial-card {
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(255,255,255,.8);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testimonial-stars {
    color: #F59E0B;
    font-size: .9rem;
    margin-bottom: .75rem;
}

.testimonial-quote {
    font-size: .92rem;
    color: var(--color-text);
    line-height: 1.75;
    font-style: italic;
    border: none;
    padding: 0;
    margin: 0 0 1.25rem;
}

.testimonial-quote::before {
    content: '\201C';
    font-size: 2rem;
    color: var(--color-primary);
    line-height: .5;
    float: left;
    margin-right: .3rem;
    font-family: Georgia, serif;
    opacity: .4;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.testimonial-avatar-skeleton {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

/* Force opacity:1 for small circular avatars loaded via onload */
.testimonial-author img { opacity: 1 !important; }

.testimonial-name {
    font-weight: 700;
    font-size: .9rem;
    color: var(--color-heading);
}

.testimonial-location {
    font-size: .77rem;
    color: var(--color-text-muted);
}

/* Carousel controls */
.carousel-btn {
    background: var(--color-bg-card);
    border: 2px solid var(--color-primary-light);
    color: var(--color-primary);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.carousel-btn:hover {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

.indicator-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid var(--color-primary);
    background: transparent;
    padding: 0;
    transition: var(--transition);
    cursor: pointer;
}

.indicator-dot.active {
    background: var(--color-primary);
}


/* ============================================================
   16. STATS SECTION
   ============================================================ */
.stats-section {
    background: linear-gradient(135deg, #0A1628 0%, #0F2A50 50%, #0A1628 100%);
    position: relative;
    overflow: hidden;
}

/* Subtle radial glow accents */
.stats-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37,99,235,.12) 0%, transparent 65%);
    top: -200px;
    left: -100px;
    pointer-events: none;
}

.stats-section::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(5,150,105,.08) 0%, transparent 65%);
    bottom: -150px;
    right: -80px;
    pointer-events: none;
}

/* Section header text — light on dark */
.stats-section-label {
    display: inline-block;
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: #93C5FD;
    background: rgba(37,99,235,.18);
    border: 1px solid rgba(147,197,253,.25);
    padding: .3rem .85rem;
    border-radius: 100px;
    margin-bottom: 1rem;
}

.stats-section-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #F1F5F9;
    line-height: 1.25;
    margin-bottom: .5rem;
}

.stats-section-sub {
    font-size: 1rem;
    color: #94A3B8;
    margin-bottom: 0;
}

/* Stat cards */
.stat-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius-lg);
    padding: 2.25rem 1rem 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(37,99,235,.06) 0%, transparent 60%);
    border-radius: var(--radius-lg);
    opacity: 0;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,.07);
    border-color: rgba(147,197,253,.3);
    box-shadow: 0 12px 40px rgba(0,0,0,.3);
}

.stat-card:hover::before {
    opacity: 1;
}

/* Icon inside stat card */
.stat-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: rgba(37,99,235,.2);
    border: 1px solid rgba(37,99,235,.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: #93C5FD;
    margin: 0 auto 1rem;
    transition: var(--transition);
}

.stat-card:hover .stat-icon-wrap {
    background: rgba(37,99,235,.35);
    transform: scale(1.1);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.25rem;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1;
    margin-bottom: .5rem;
    letter-spacing: -.02em;
}

/* suffix (+, %, /5) styled in accent blue */
.stat-number .stat-suffix {
    font-size: 1.75rem;
    color: #93C5FD;
    font-weight: 700;
    margin-left: 2px;
}

.stat-label {
    font-weight: 700;
    font-size: .95rem;
    color: #E2E8F0;
    margin-bottom: .3rem;
}

.stat-sublabel {
    font-size: .78rem;
    color: #64748B;
}

/* ── SUCCESS STORY CARDS ── */
.success-story-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.09);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    height: 100%;
    transition: var(--transition);
    position: relative;
}

.success-story-card::before {
    content: '\201C';
    position: absolute;
    top: .75rem;
    left: 1.25rem;
    font-size: 4rem;
    line-height: 1;
    font-family: Georgia, serif;
    color: rgba(37,99,235,.3);
    pointer-events: none;
}

.success-story-card:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,.08);
    border-color: rgba(147,197,253,.25);
}

.success-story-quote {
    font-size: .92rem;
    color: #CBD5E1;
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 1.25rem;
    padding-top: 1.25rem; /* clear the big quote mark */
}

.success-story-meta {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.success-story-avatar-sk {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
}

.success-story-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(147,197,253,.35);
    flex-shrink: 0;
    opacity: 1 !important;
}

.success-story-name {
    font-weight: 700;
    font-size: .83rem;
    color: #E2E8F0;
    margin-bottom: .2rem;
}

.success-story-outcome {
    font-size: .75rem;
    font-weight: 600;
    color: #34D399;
}

.stat-label {
    font-weight: 700;
    font-size: 1rem;
    color: #E2E8F0;
    margin-bottom: .25rem;
}

.stat-sublabel {
    font-size: .8rem;
    color: #94A3B8;
}


/* ============================================================
   17. FAQ ACCORDION
   ============================================================ */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.faq-item {
    background: var(--color-bg-card);
    border-radius: var(--radius-md) !important;
    border: 1px solid #E2E8F0 !important;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--color-primary-light) !important;
    box-shadow: var(--shadow-card);
}

.faq-button {
    font-weight: 600;
    font-size: .95rem;
    color: var(--color-heading);
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 1.25rem 1.5rem;
}

.faq-button:not(.collapsed) {
    color: var(--color-primary);
}

.faq-button::after {
    color: var(--color-primary);
}

.faq-body {
    font-size: .92rem;
    color: var(--color-text-muted);
    line-height: 1.75;
    padding: 0 1.5rem 1.25rem;
}


/* ============================================================
   18. BOOKING SECTION & FORM
   ============================================================ */
.booking-section {
    background: var(--gradient-booking);
    padding: var(--section-py) 0;
}

.text-white-75 {
    color: rgba(255,255,255,.8) !important;
}

.booking-trust-list {
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

.booking-trust-item {
    display: flex;
    align-items: center;
    gap: .65rem;
    color: rgba(255,255,255,.9);
    font-size: .9rem;
}

.booking-trust-item i {
    color: #86EFAC;
    font-size: 1rem;
    flex-shrink: 0;
}

.booking-proof-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,.5);
    margin-right: -10px;
    object-fit: cover;
}

/* Force load for booking proof avatars */
.booking-social-proof img {
    opacity: 1 !important;
}

/* Booking Form Card */
.booking-form-card {
    background: #fff;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.booking-form-header {
    padding: 1.75rem 2rem 1.25rem;
    border-bottom: 1px solid #F1F5F9;
    background: var(--color-bg-warm);
}

.booking-form-header h4 {
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--color-heading);
    margin-bottom: .25rem;
}

.booking-form {
    padding: 2rem;
}

.booking-form .form-label {
    font-size: .85rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: .35rem;
}

.booking-form .form-control,
.booking-form .form-select {
    border: 1.5px solid #E2E8F0;
    border-radius: var(--radius-sm);
    font-size: .9rem;
    color: var(--color-text);
    transition: var(--transition);
    padding: .65rem 1rem;
}

.booking-form .form-control:focus,
.booking-form .form-select:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(37,99,235,.1);
    outline: none;
}

.btn-submit-form {
    background: var(--color-primary);
    color: #fff;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1.05rem;
    padding: 1rem;
    box-shadow: var(--shadow-blue);
    transition: var(--transition);
}

.btn-submit-form:hover {
    background: var(--color-primary-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(37,99,235,.38);
}

.btn-submit-form.btn-success {
    background: var(--color-secondary) !important;
}


/* ============================================================
   19. EMERGENCY NOTICE
   ============================================================ */
.emergency-section {
    background: var(--color-emergency-bg);
    padding: 2rem 0;
    border-top: 3px solid var(--color-emergency);
}

.emergency-card {
    padding: .5rem 0;
}

.emergency-icon {
    font-size: 2.5rem;
    color: var(--color-emergency);
}

.emergency-heading {
    font-weight: 800;
    color: var(--color-emergency);
    margin-bottom: .4rem;
    font-size: 1.1rem;
}

.emergency-text {
    font-size: .9rem;
    color: #7F1D1D;
    line-height: 1.65;
}

.btn-emergency {
    background: var(--color-emergency);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: .85rem;
    padding: .6rem 1rem;
    line-height: 1.3;
    transition: var(--transition);
    text-align: center;
}

.btn-emergency:hover {
    background: #B91C1C;
    color: #fff;
    transform: translateY(-2px);
}

.btn-emergency-outline {
    background: transparent;
    color: var(--color-emergency);
    border: 1.5px solid var(--color-emergency);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: .82rem;
    padding: .5rem 1rem;
    transition: var(--transition);
    text-align: center;
}

.btn-emergency-outline:hover {
    background: var(--color-emergency);
    color: #fff;
}


/* ============================================================
   20. BLOG / RESOURCE CARDS
   ============================================================ */
.blog-card {
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid #F1F5F9;
    height: 100%;
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-img-wrap {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: #f3f4f6;
}

.blog-img-skeleton {
    height: 100%;
    position: absolute;
    inset: 0;
    border-radius: 0;
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease, opacity .4s ease;
}

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

.blog-category-badge {
    position: absolute;
    top: .75rem;
    left: .75rem;
    background: var(--color-primary);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    padding: .3rem .75rem;
    border-radius: 100px;
}

.blog-body {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    font-size: .77rem;
    color: var(--color-text-muted);
    margin-bottom: .75rem;
}

.blog-title {
    font-weight: 700;
    font-size: .98rem;
    color: var(--color-heading);
    line-height: 1.4;
    margin-bottom: .6rem;
    transition: var(--transition);
}

.blog-card:hover .blog-title {
    color: var(--color-primary);
}

.blog-excerpt {
    font-size: .85rem;
    color: var(--color-text-muted);
    line-height: 1.65;
    margin-bottom: 1rem;
}

.blog-read-more {
    font-size: .85rem;
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}

.blog-read-more:hover {
    gap: .35rem;
    color: var(--color-primary-dark);
}


/* ============================================================
   21. INSURANCE SECTION
   ============================================================ */
.insurance-card {
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
    text-align: center;
    box-shadow: var(--shadow-card);
    border: 1px solid #F1F5F9;
    transition: var(--transition);
}

.insurance-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary-light);
}

.insurance-icon {
    font-size: 2.25rem;
    color: var(--color-secondary);
    display: block;
    margin: 0 auto .75rem;
}

.insurance-card h5 {
    font-weight: 700;
    color: var(--color-heading);
    margin-bottom: .6rem;
}

.insurance-card p {
    font-size: .88rem;
    color: var(--color-text-muted);
    margin-bottom: 0;
}

.insurance-logos-section {
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid #F1F5F9;
}

.insurance-logos-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.insurance-logo-item {
    background: var(--color-bg-warm);
    border: 1px solid #E2E8F0;
    border-radius: var(--radius-sm);
    padding: .7rem 1.5rem;
    font-size: .82rem;
    font-weight: 700;
    color: var(--color-text-muted);
    transition: var(--transition);
}

.insurance-logo-item:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: var(--color-accent-soft);
}


/* ============================================================
   22. FINAL CTA SECTION
   ============================================================ */
.final-cta-section {
    background: var(--gradient-final-cta);
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37,99,235,.15) 0%, transparent 70%);
    top: -100px;
    left: -100px;
}

.final-cta-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(5,150,105,.1) 0%, transparent 70%);
    bottom: -80px;
    right: -80px;
}

.final-cta-overlay { display: none; }

.final-cta-icon {
    font-size: 3rem;
    color: #93C5FD;
    display: block;
    margin: 0 auto 1.5rem;
}

.final-cta-heading {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 1rem;
}

.final-cta-subtext {
    font-size: 1.05rem;
    color: rgba(255,255,255,.75);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.75;
}

.btn-final-cta {
    background: #fff;
    color: var(--color-primary);
    border: none;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1rem;
    padding: .95rem 2.25rem;
    transition: var(--transition);
    box-shadow: 0 6px 25px rgba(0,0,0,.2);
}

.btn-final-cta:hover {
    background: #EFF6FF;
    color: var(--color-primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 14px 35px rgba(0,0,0,.3);
}

.btn-final-ghost {
    background: transparent;
    color: rgba(255,255,255,.85);
    border: 2px solid rgba(255,255,255,.35);
    border-radius: 100px;
    font-weight: 700;
    font-size: 1rem;
    padding: .95rem 2.25rem;
    transition: var(--transition);
}

.btn-final-ghost:hover {
    background: rgba(255,255,255,.1);
    color: #fff;
    border-color: rgba(255,255,255,.6);
}

.final-cta-note {
    color: rgba(255,255,255,.5);
    font-size: .82rem;
    margin-bottom: 0;
}


/* ============================================================
   22b. FLOATING ACTION BUTTONS
   ============================================================ */

/* Cluster wrapper — fixed width = max expanded width so sibling
   buttons never shift when one expands */
.fab-cluster {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1050;
    display: flex;
    flex-direction: column;
    align-items: flex-end;   /* anchor every button to the right edge */
    gap: .55rem;
    padding: .6rem 0;
    width: 168px;            /* equals the fully-expanded button width */

    /* Hidden by default — slides in from the right */
    opacity: 0;
    pointer-events: none;
    translate: 100% 0;
    transition: opacity .35s ease, translate .35s cubic-bezier(.34,1.56,.64,1);
}

/* Triggered by JS once user scrolls past hero */
.fab-cluster.fab-visible {
    opacity: 1;
    pointer-events: auto;
    translate: 0 0;
}

/* Each button — collapses to icon only; expands left on hover.
   margin-left:auto keeps it pinned to the right regardless of width. */
.fab-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    border-radius: 100px 0 0 100px;
    height: 46px;
    padding-right: .1rem;
    text-decoration: none;
    overflow: hidden;
    box-shadow: -2px 4px 16px rgba(0,0,0,.18);
    transition: width .3s cubic-bezier(.34,1.2,.64,1), box-shadow .25s ease;
    width: 46px;        /* collapsed — icon only */
    margin-left: auto;  /* stays flush with right edge at any width */
}

/* Only the hovered button expands */
.fab-btn:hover {
    width: 168px;
    box-shadow: -4px 6px 24px rgba(0,0,0,.28);
}

/* Icon bubble */
.fab-icon {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    border-radius: 50% 0 0 50%;
}

/* Label — hidden until expanded */
.fab-label {
    color: #fff;
    font-weight: 600;
    font-size: .82rem;
    white-space: nowrap;
    letter-spacing: .02em;
    opacity: 0;
    transform: translateX(8px);
    transition: opacity .2s ease .05s, transform .2s ease .05s;
    padding-left: .85rem;
    flex: 1;
}

.fab-btn:hover .fab-label {
    opacity: 1;
    transform: translateX(0);
}

/* Colour themes */
.fab-whatsapp       { background: #25D366; }
.fab-whatsapp:hover { background: #1EBE58; }
.fab-whatsapp .fab-icon { background: #1DA851; border-radius: 100px 0 0 100px; }

.fab-call           { background: var(--color-primary); }
.fab-call:hover     { background: var(--color-primary-dark); }
.fab-call .fab-icon { background: #1D4ED8; border-radius: 100px 0 0 100px; }

.fab-book           { background: #7C3AED; }
.fab-book:hover     { background: #6D28D9; }
.fab-book .fab-icon { background: #6D28D9; border-radius: 100px 0 0 100px; }

/* Stagger the entrance animation per button */
.fab-cluster.fab-visible .fab-whatsapp { transition-delay: 0s;    }
.fab-cluster.fab-visible .fab-call     { transition-delay: .07s;  }
.fab-cluster.fab-visible .fab-book     { transition-delay: .14s;  }

/* Mobile — slightly smaller, no label on touch */
@media (max-width: 575px) {
    .fab-cluster { width: 42px; }
    .fab-btn, .fab-btn:hover { width: 42px; height: 42px; } /* icon-only on touch */
    .fab-icon { width: 42px; height: 42px; font-size: 1.1rem; }
    .fab-label { display: none; }
}

/* ============================================================
   23. FOOTER
   ============================================================ */
.site-footer {
    background: #0F172A;
}

.footer-top {
    padding: 4rem 0 3rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: .6rem;
    text-decoration: none;
}

.footer-brand-icon {
    font-size: 1.5rem;
    color: #60A5FA;
}

.footer-brand-name {
    font-size: 1.1rem;
    color: #E2E8F0;
}

.footer-brand-name strong {
    color: #60A5FA;
}

.footer-tagline {
    font-size: .88rem;
    color: #94A3B8;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    font-size: .85rem;
    color: #94A3B8;
    margin-bottom: .5rem;
}

.footer-contact-item i {
    color: #60A5FA;
    font-size: .9rem;
    width: 16px;
}

.footer-contact-item a {
    color: #94A3B8;
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact-item a:hover {
    color: #E2E8F0;
}

.footer-contact-item i {
    margin-top: .15rem; /* align icon with first text line */
    flex-shrink: 0;
}

.footer-contact-heading { margin-bottom: .75rem; }

.footer-hours-row { margin-bottom: .75rem; line-height: 1.6; }

.footer-closed {
    color: #F87171;
    font-weight: 600;
}

.footer-address-item {
    align-items: flex-start;
    line-height: 1.55;
    margin-bottom: .85rem;
}

.footer-social {
    display: flex;
    gap: .6rem;
}

.footer-social-link {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,.06);
    color: #94A3B8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
}

.footer-social-link:hover {
    background: var(--color-primary);
    color: #fff;
    transform: translateY(-2px);
}

.footer-col-heading {
    font-weight: 700;
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #E2E8F0;
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: .5rem;
}

.footer-links a {
    font-size: .87rem;
    color: #94A3B8;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: #E2E8F0;
    padding-left: 4px;
}

.footer-newsletter-text {
    font-size: .83rem;
    color: #94A3B8;
    margin-bottom: .75rem;
    line-height: 1.6;
}

.footer-email-input {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    color: #E2E8F0;
    border-radius: var(--radius-sm);
    font-size: .85rem;
}

.footer-email-input::placeholder {
    color: #64748B;
}

.footer-email-input:focus {
    background: rgba(255,255,255,.1);
    border-color: rgba(96,165,250,.5);
    color: #E2E8F0;
    box-shadow: 0 0 0 2px rgba(96,165,250,.15);
}

.btn-footer-subscribe {
    background: var(--color-primary);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    font-size: .85rem;
    font-weight: 600;
    padding: .5rem;
    transition: var(--transition);
}

.btn-footer-subscribe:hover {
    background: var(--color-primary-dark);
    color: #fff;
}

.footer-certifications {
    display: flex;
    flex-direction: column;
    gap: .4rem;
}

.cert-badge {
    font-size: .75rem;
    color: #64748B;
    font-weight: 500;
}

/* Footer bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.07);
    padding: 1.5rem 0 1rem;
}

.footer-copyright {
    font-size: .82rem;
    color: #64748B;
    margin-bottom: .5rem;
}

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    justify-content: flex-end;
}

.footer-legal-links a {
    font-size: .78rem;
    color: #64748B;
    text-decoration: none;
    transition: var(--transition);
}

.footer-legal-links a:hover {
    color: #94A3B8;
}

.footer-disclaimer {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,.05);
}

.footer-disclaimer p {
    font-size: .75rem;
    color: #475569;
    line-height: 1.65;
    margin-bottom: 0;
}


/* ============================================================
   24. UTILITIES & HELPERS
   ============================================================ */

/* Smooth section transition effect */
section {
    position: relative;
}

/* Ensure all lazy-load images hidden until loaded */
img[loading="lazy"] {
    opacity: 0;
}

/* Override for decorative avatar images that should always be visible */
.float-avatar,
.booking-proof-avatar,
.testimonial-avatar {
    opacity: 1 !important;
}

/* Bootstrap override: carousel no animation jitter */
.carousel-item {
    transition: transform .6s ease-in-out;
}








/* Fixed Footer Buttons - Mobile Only */
.fixed-footer-buttons-mob {
    display: none; /* Hidden on desktop */
}

@media (max-width: 767px) {
    .fixed-footer-buttons-mob {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        display: flex;
        z-index: 9999;
        background: #ffffff;
        padding: 10px 12px;
        gap: 10px;
        box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.15);
        box-sizing: border-box;
    }

    .fixed-footer-buttons-mob a {
        flex: 1;
        text-align: center;
        text-decoration: none;
        padding: 14px 10px;
        font-size: 18px;
        font-weight: 700;
        border-radius: 4px;
        color: #ffffff !important;
        line-height: 1.2;
        transition: all 0.3s ease;
    }

    /* Call Now Button - Gold Color */
    .fixed-footer-buttons-mob .btn-primary {
        background: #c1904d;
        border: none;
    }

    .fixed-footer-buttons-mob .btn-primary:hover,
    .fixed-footer-buttons-mob .btn-primary:focus {
        background: #b07e3f;
        color: #ffffff !important;
    }

    /* Book Now Button - Green Color */
    .fixed-footer-buttons-mob .btn-success {
        background: #1f8a4c;
        border: none;
    }

    .fixed-footer-buttons-mob .btn-success:hover,
    .fixed-footer-buttons-mob .btn-success:focus {
        background: #176d3b;
        color: #ffffff !important;
    }

     
}













/* ============================================================
   25. RESPONSIVE OVERRIDES
   ============================================================ */

/* — Tablet (≤992px) — */
@media (max-width: 992px) {
    :root {
        --section-py: 4rem;
    }

    .hero-headline {
        font-size: 2.4rem;
    }

    .trust-bar-inner {
        justify-content: flex-start;
    }

    .trust-bar-divider {
        display: none;
    }

    .trust-bar-item {
        flex: 0 0 calc(50% - 1rem);
    }

    .process-timeline {
        max-width: 100%;
    }
}

/* — Mobile (≤768px) — */
@media (max-width: 768px) {
    :root {
        --section-py: 3rem;
    }

    .hero-content {
        padding: 2rem 0 1rem;
        text-align: center;
    }

    .hero-pill {
        font-size: .75rem;
    }

    .hero-headline {
        font-size: 2rem;
    }

    .hero-subtext {
        font-size: 1rem;
        max-width: 100%;
    }

    .hero-trust-row {
        justify-content: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-rating {
        justify-content: center;
        display: flex;
    }

    .trust-bar-item {
        flex: 0 0 calc(50% - .75rem);
    }

    .image-badge-card {
        position: static;
        margin-top: 1rem;
    }

    .process-step-card {
        padding: 1.25rem;
    }

    .booking-form {
        padding: 1.5rem;
    }

    .footer-legal-links {
        justify-content: flex-start;
        margin-top: .5rem;
    }

    .section-heading {
        font-size: 1.75rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

/* — Small mobile (≤480px) — */
@media (max-width: 480px) {
    .hero-headline {
        font-size: 1.75rem;
    }

    .btn-hero-primary,
    .btn-hero-ghost {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .trust-bar-item {
        flex: 0 0 100%;
    }

    .hero-float-1,
    .hero-float-2 {
        display: none;
    }

    .final-cta-heading {
        font-size: 1.75rem;
    }
}
