/* ============================================================
   VISHWA SHREEJA AYURVEDIC CLINIC — STYLES
   Color Palette: Deep Forest Green + Warm Cream + Earth Tones
   ============================================================ */

/* ─── CSS Variables ─────────────────────────────────────────── */
:root {
    /* Colors: Teal, Green & Light Blue Theme */
    --accent-dark:   #0d4750; /* Deep teal */
    --accent-mid:    #1c7b8a; /* Vibrant teal */
    --accent-soft:   #34a7b8; /* Soft cyan/teal */
    --accent-light:  #90e0ef; /* Light blue */
    --accent-pale:   #eaf9fc; /* Very light cyan */
    --cream:         #fefbfc;
    --cream-warm:    #f2fafa; /* Cool light blue/white */
    --earth:         #4ade80; /* Lime green accent */
    --earth-light:   #86efac; /* Soft green */
    --gold:          #fde047; /* Yellow highlight instead of gold */
    --text-dark:     #132427; /* Very dark teal */
    --text-mid:      #304c52; /* Slate teal */
    --text-light:    #6b8a91; /* Muted slate */
    --white:         #ffffff;
    --gray-light:    #f5fafa; /* Pale slate/blue */

    /* Spacing */
    --section-py: 5rem;
    --container-max: 1200px;

    /* Typography */
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans:  'Inter', system-ui, sans-serif;

    /* Shadows */
    --shadow-sm:  0 2px 8px rgba(26,74,46,.08);
    --shadow-md:  0 8px 30px rgba(26,74,46,.12);
    --shadow-lg:  0 20px 60px rgba(26,74,46,.18);

    /* Transitions */
    --transition: all .3s ease;
    --transition-slow: all .5s ease;
}

/* ─── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a { text-decoration: none; color: inherit; transition: var(--transition); }

ul { list-style: none; }

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.mt-1  { margin-top: 0.5rem; }
.mt-2  { margin-top: 1rem; }
.mt-3  { margin-top: 1.5rem; }

/* ─── Top Bar ───────────────────────────────────────────────── */
.top-bar {
    background: var(--accent-dark);
    color: var(--accent-pale);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 1.5rem;
    font-size: 0.82rem;
    font-weight: 500;
    gap: 1rem;
    flex-wrap: wrap;
    position: sticky;
    top: 0;
    z-index: 1100;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-shrink: 0;
}
.top-bar-phone {
    color: var(--accent-light);
    font-weight: 600;
    font-size: 0.82rem;
    white-space: nowrap;
    transition: var(--transition);
}
.top-bar-phone:hover { color: var(--white); }
.top-bar-text { flex: 1; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.top-bar-btn {
    background: var(--gold);
    color: var(--accent-dark);
    font-weight: 700;
    padding: 0.35rem 1rem;
    border-radius: 20px;
    white-space: nowrap;
    font-size: 0.82rem;
    transition: var(--transition);
}
.top-bar-btn:hover { background: var(--earth-light); }

/* ─── Navbar ────────────────────────────────────────────────── */
.navbar {
    position: sticky;
    top: 38px;
    z-index: 1000;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(64,145,108,.15);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-md); top: 0; }

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}
.logo-leaf { font-size: 2rem; line-height: 1; }
.logo-text { display: flex; flex-direction: column; gap: 1px; }
.logo-main {
    font-family: var(--font-serif);
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--accent-dark);
    line-height: 1.1;
    letter-spacing: -0.01em;
}
.logo-sub {
    font-size: 0.68rem;
    color: var(--accent-soft);
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex-wrap: nowrap;
}
.nav-link {
    padding: 0.5rem 0.7rem;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-mid);
    border-radius: 8px;
    transition: var(--transition);
    white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
    color: var(--accent-soft);
    background: var(--accent-pale);
}
.nav-book-btn {
    padding: 0.5rem 1.1rem;
    background: var(--accent-mid);
    color: var(--white);
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.88rem;
    white-space: nowrap;
    transition: var(--transition);
}
.nav-book-btn:hover { background: var(--accent-dark); transform: translateY(-1px); }

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 5px;
    border-radius: 8px;
    transition: var(--transition);
}
.hamburger:hover { background: var(--accent-pale); }
.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--accent-dark);
    border-radius: 2px;
    transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Buttons ───────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    font-family: var(--font-sans);
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    text-decoration: none;
}
.btn-primary {
    background: var(--accent-mid);
    color: var(--white);
    border-color: var(--accent-mid);
}
.btn-primary:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45,106,79,.35);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,.6);
}
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: var(--white); }
.btn-wide { width: 100%; justify-content: center; }

/* ─── Section Commons ───────────────────────────────────────── */
.section { padding: var(--section-py) 0; }

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}
.section-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-soft);
    margin-bottom: 0.75rem;
}
.section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--accent-dark);
    line-height: 1.2;
    margin-bottom: 0.75rem;
}
.title-bar {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-soft), var(--gold));
    border-radius: 3px;
    margin: 0 auto 1.5rem;
}
.section-desc {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── Hero Section ──────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--accent-dark) 0%, #155d69 40%, #1c7b8a 100%);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 8rem 1.5rem 5rem;
    max-width: 100%;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(144,224,239,.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(74,222,128,.12) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2390e0ef' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-content {
    max-width: 580px;
    padding-right: 2rem;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(201,168,76,.15);
    border: 1px solid rgba(201,168,76,.3);
    color: var(--gold);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(8px);
}
.badge-dot {
    width: 7px;
    height: 7px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.4; }
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 0.5rem;
}
.hero-title-sub {
    color: var(--gold);
    display: block;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.hero-tagline {
    font-family: var(--font-serif);
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-style: italic;
    color: var(--gold);
    margin-bottom: 1.25rem;
    font-weight: 500;
}
/* ── Hero Nav Shortcut Buttons ── */
.hero-nav-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
    margin-bottom: 2.5rem;
    max-width: 440px;
}
.hero-nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.7rem 1rem;
    background: rgba(255,255,255,0.10);
    border: 1.5px solid rgba(255,255,255,0.28);
    border-radius: 12px;
    color: rgba(255,255,255,0.92);
    font-size: 0.88rem;
    font-weight: 600;
    text-align: center;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: var(--transition);
    white-space: nowrap;
}
.hero-nav-btn:hover {
    background: rgba(255,255,255,0.20);
    border-color: rgba(255,255,255,0.55);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.18);
    color: var(--white);
}
/* Book Appointment button gets accent styling */
.hero-nav-btn--accent {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--accent-dark);
    grid-column: span 2;
    font-weight: 700;
}
.hero-nav-btn--accent:hover {
    background: #f5d300;
    border-color: #f5d300;
    color: var(--accent-dark);
    box-shadow: 0 8px 28px rgba(253,224,71,0.4);
}
/* ── Hero Info Boxes (Location + Online Consult) ── */
.hero-info-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
    margin-bottom: 2rem;
    max-width: 440px;
}
.hero-info-box {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.65rem 0.85rem;
    background: rgba(255,255,255,0.10);
    border: 1.5px solid rgba(255,255,255,0.22);
    border-radius: 12px;
    color: rgba(255,255,255,0.92);
    font-size: 0.8rem;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: var(--transition);
    cursor: pointer;
}
.hero-info-box:hover {
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.45);
    transform: translateY(-1px);
}
.hero-info-box--green {
    background: rgba(74,222,128,0.15);
    border-color: rgba(74,222,128,0.35);
}
.hero-info-box--green:hover {
    background: rgba(74,222,128,0.25);
    border-color: rgba(74,222,128,0.55);
}
.hib-icon { font-size: 1.3rem; flex-shrink: 0; }
.hero-info-box strong { display: block; font-size: 0.82rem; font-weight: 700; color: var(--white); }
.hero-info-box span { font-size: 0.72rem; color: rgba(255,255,255,0.75); line-height: 1.3; }

.hero-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.stat { text-align: center; }
.stat strong {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}
.stat span {
    font-size: 0.75rem;
    color: rgba(255,255,255,.6);
    white-space: nowrap;
}
.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,.2);
}

.hero-image-panel {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* ── Clean 2×2 Photo Grid — all 4 images ── */
.hero-photo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 0.75rem;
    width: 460px;
    height: 440px;
    position: relative;
    z-index: 1;
}
.grid-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 3px solid rgba(255,255,255,0.88);
    box-shadow: 0 6px 24px rgba(13,71,80,.2);
    transition: transform .35s ease, box-shadow .35s ease;
    display: block;
}
.grid-photo:hover {
    transform: scale(1.04);
    box-shadow: 0 12px 36px rgba(13,71,80,.35);
    z-index: 5;
    position: relative;
}
/* Distinct corner rounding per quadrant */
.gp-1 { border-radius: 20px 6px 6px 6px; }
.gp-2 { border-radius: 6px 20px 6px 6px; }
.gp-3 { border-radius: 6px 6px 6px 20px; }
.gp-4 { border-radius: 6px 6px 20px 6px; }


.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255,255,255,.4);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}
.scroll-wheel {
    width: 4px;
    height: 8px;
    background: rgba(255,255,255,.7);
    border-radius: 2px;
    animation: scrollDown 1.5s ease-in-out infinite;
}
@keyframes scrollDown {
    0%   { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(12px); opacity: 0; }
}

/* ─── About Section ─────────────────────────────────────────── */
.about-section { background: var(--cream); }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}
.about-img-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: visible;
}
.about-img-wrapper img {
    border-radius: 20px;
    height: 460px;
    object-position: center;
    box-shadow: var(--shadow-lg);
}
.about-img-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--white);
    border-radius: 16px;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--accent-pale);
}
.aib-icon { font-size: 1.8rem; }
.about-img-badge strong { display: block; color: var(--accent-dark); font-size: 0.9rem; }
.about-img-badge p { color: var(--text-light); font-size: 0.78rem; margin: 0; }

.about-intro {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--accent-dark);
    margin-bottom: 1rem;
    line-height: 1.7;
}
.about-body {
    color: var(--text-mid);
    margin-bottom: 2rem;
    line-height: 1.8;
}
.about-features { display: flex; flex-direction: column; gap: 1rem; }
.af-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 12px;
    border-left: 4px solid var(--accent-soft);
    box-shadow: var(--shadow-sm);
}
.af-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.af-item strong { display: block; color: var(--accent-dark); font-size: 0.95rem; margin-bottom: 0.2rem; }
.af-item p { color: var(--text-light); font-size: 0.85rem; margin: 0; }

/* Doctor Profile */
.doctor-profile {
    background: var(--white);
    border-radius: 24px;
    padding: 3rem;
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 3rem;
    align-items: start;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--accent-pale);
}
.doc-img-placeholder {
    background: linear-gradient(135deg, var(--accent-pale), var(--cream-warm));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 240px;
    border: 3px solid var(--accent-light);
}
.doc-avatar-emoji { font-size: 6rem; }
.doc-real-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 17px;
    display: block;
}
.doc-info h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--accent-dark);
    font-weight: 700;
    margin-bottom: 0.35rem;
}
.doc-title {
    color: var(--accent-soft);
    font-size: 0.9rem;
    font-weight: 600;
}
.doc-info p {
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 0.75rem;
}
.doc-qualifications { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.doc-tag {
    background: var(--accent-pale);
    color: var(--accent-dark);
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid var(--accent-light);
}

/* ─── Treatments Section ────────────────────────────────────── */
.treatments-section {
    background: linear-gradient(180deg, var(--white) 0%, var(--accent-pale) 100%);
}

.treatments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.treatment-card {
    background: var(--white);
    border-radius: 18px;
    padding: 1.75rem;
    border: 1px solid rgba(52,167,184,.15);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}
.treatment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-soft), var(--gold));
    opacity: 0;
    transition: var(--transition);
}
.treatment-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-light);
}
.treatment-card:hover::before { opacity: 1; }

.tc-icon-wrap {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, var(--accent-pale), var(--cream-warm));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border: 1px solid var(--accent-light);
}
.tc-icon { font-size: 1.6rem; }
.tc-content h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-dark);
    margin-bottom: 0.5rem;
}
.tc-content p {
    font-size: 0.88rem;
    color: var(--text-mid);
    line-height: 1.7;
    flex-grow: 1;
}
.tc-enquire {
    display: inline-block;
    margin-top: 1.25rem;
    color: var(--accent-soft);
    font-weight: 700;
    font-size: 0.85rem;
    transition: var(--transition);
    padding: 0.4rem 0;
    border-bottom: 2px solid var(--accent-pale);
}
.tc-enquire:hover {
    color: var(--accent-dark);
    border-color: var(--accent-soft);
}

/* ─── Speciality Section ────────────────────────────────────── */
.speciality-section { background: var(--cream); }

.speciality-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
.spec-card {
    background: var(--white);
    border-radius: 16px;
    padding: 1.5rem 1.25rem;
    text-align: center;
    border: 1px solid rgba(52,167,184,.15);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: default;
}
.spec-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-light);
    background: var(--accent-pale);
}
.spec-icon { font-size: 2rem; display: block; margin-bottom: 0.75rem; }
.spec-card h4 {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-dark);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}
.spec-card p { font-size: 0.76rem; color: var(--text-light); line-height: 1.6; margin: 0; }

/* ─── Gallery Section ───────────────────────────────────────── */
.gallery-section { background: var(--white); }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 240px 240px;
    gap: 1rem;
}
.gi-large {
    grid-row: span 2;
}
.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}
.gallery-item img { transition: transform .5s ease; height: 100%; }
.gallery-item:hover img { transform: scale(1.06); }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 50%, rgba(26,74,46,.75));
    display: flex;
    align-items: flex-end;
    padding: 1.25rem;
    opacity: 0;
    transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
}
.gallery-note {
    text-align: center;
    color: var(--text-light);
    margin-top: 2rem;
    font-size: 0.9rem;
}

/* ─── Testimonials Section ──────────────────────────────────── */
.testimonials-section {
    background: linear-gradient(135deg, var(--accent-dark) 0%, #155d69 100%);
    position: relative;
    overflow: hidden;
}
.testimonials-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2390e0ef' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}
.testimonials-section .section-header { position: relative; z-index: 1; }
.testimonials-section .section-label  { color: var(--gold); }
.testimonials-section .section-title  { color: var(--white); }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}
.testimonial-card {
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 20px;
    padding: 2rem;
    transition: var(--transition);
}
.testimonial-card:hover {
    background: rgba(255,255,255,.1);
    transform: translateY(-4px);
}
.testi-stars { font-size: 1rem; margin-bottom: 1rem; }
.testi-text {
    color: rgba(255,255,255,.85);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}
.testi-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-soft), var(--accent-mid));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}
.testi-author strong { display: block; color: var(--white); font-size: 0.9rem; }
.testi-author p { color: rgba(255,255,255,.5); font-size: 0.78rem; margin: 0; }

/* ─── Contact Section ───────────────────────────────────────── */
.contact-section { background: var(--gray-light); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 3rem;
    align-items: start;
}
.contact-info-col h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--accent-dark);
    margin-bottom: 0.75rem;
}
.contact-intro {
    color: var(--text-mid);
    margin-bottom: 2rem;
    line-height: 1.7;
}
.contact-items { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem; }
.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.ci-icon {
    width: 44px;
    height: 44px;
    background: var(--accent-pale);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    border: 1px solid var(--accent-light);
}
.contact-item strong { display: block; color: var(--accent-dark); font-size: 0.9rem; margin-bottom: 0.25rem; }
.contact-item p,
.contact-item a {
    color: var(--text-mid);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}
.contact-item a:hover { color: var(--accent-soft); }

/* Contact Form */
.contact-form-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--accent-pale);
}
.contact-form-card h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--accent-dark);
    margin-bottom: 1.5rem;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.form-group { display: flex; flex-direction: column; margin-bottom: 1rem; }
.form-group label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--accent-dark);
    margin-bottom: 0.4rem;
}
.form-group input,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1.5px solid rgba(52,167,184,.25);
    border-radius: 10px;
    font-size: 0.9rem;
    font-family: var(--font-sans);
    color: var(--text-dark);
    background: var(--cream);
    transition: var(--transition);
    outline: none;
    resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent-soft);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(52,167,184,.15);
}
.form-success-msg {
    text-align: center;
    color: var(--accent-soft);
    font-weight: 600;
    margin-top: 1rem;
    font-size: 0.95rem;
}

/* ─── FAQ Section ───────────────────────────────────────────── */
.faq-section { background: var(--cream); }

.faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.faq-item {
    background: var(--white);
    border-radius: 14px;
    border: 1.5px solid rgba(52,167,184,.15);
    overflow: hidden;
    transition: var(--transition);
}
.faq-item:hover { border-color: var(--accent-light); }

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.97rem;
    font-weight: 600;
    color: var(--accent-dark);
    font-family: var(--font-sans);
    text-align: left;
    transition: var(--transition);
}
.faq-question:hover { background: var(--accent-pale); }
.faq-question[aria-expanded="true"] { color: var(--accent-soft); background: var(--accent-pale); }

.faq-arrow {
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: transform .3s ease;
    color: var(--accent-soft);
}
.faq-question[aria-expanded="true"] .faq-arrow { transform: rotate(180deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
}
.faq-answer p {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-mid);
    line-height: 1.8;
    font-size: 0.92rem;
}

/* ─── Footer ────────────────────────────────────────────────── */
.footer-main {
    background: var(--accent-dark);
    padding: 4.5rem 0 3rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.3fr;
    gap: 3rem;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.footer-logo-main {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
}
.footer-logo-sub {
    display: block;
    font-size: 0.68rem;
    color: var(--accent-light);
    margin-top: 2px;
}
.footer-tagline {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 0.75rem;
}
.footer-desc { color: rgba(255,255,255,.55); font-size: 0.88rem; line-height: 1.7; }

.footer-heading {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-light);
    margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a, .footer-links li {
    color: rgba(255,255,255,.6);
    font-size: 0.88rem;
    transition: var(--transition);
}
.footer-links a:hover { color: var(--white); }

.footer-contact-list { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-contact-list li,
.footer-contact-list a {
    color: rgba(255,255,255,.6);
    font-size: 0.88rem;
    display: block;
    transition: var(--transition);
}
.footer-contact-list a:hover { color: var(--white); }

.footer-bottom {
    background: #09343a;
    padding: 1.25rem 0;
    text-align: center;
}
.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.footer-bottom p { color: rgba(255,255,255,.45); font-size: 0.82rem; margin: 0; }
.footer-bottom-sub { color: rgba(255,255,255,.3) !important; }

/* ─── WhatsApp Float Button ─────────────────────────────────── */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    width: 58px;
    height: 58px;
    background: #4ade80;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,.45);
    transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,.6); }
.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: white;
}

/* ─── Treatment Accordion List ───────────────────────────── */
.treatments-list {
    border-radius: 16px;
    overflow: hidden;
    border: 1.5px solid var(--accent-pale);
    box-shadow: var(--shadow-sm);
}
.treatment-item {
    background: var(--white);
    border-bottom: 1.5px solid var(--accent-pale);
}
.treatment-item:last-child { border-bottom: none; }
.ti-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    transition: background .2s ease;
    gap: 1rem;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}
.ti-header:hover { background: var(--cream); }
.treatment-item.open .ti-header { background: var(--cream); }
.ti-name {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-dark);
    margin: 0;
    flex: 1;
}
.ti-more {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--accent-mid);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.15rem;
    letter-spacing: 0.02em;
    flex-shrink: 0;
}
.ti-arr {
    font-size: 1.15rem;
    display: inline-block;
    transition: transform .25s ease;
    line-height: 1;
}
.treatment-item.open .ti-arr { transform: rotate(90deg); }
.ti-body {
    display: none;
    padding: 0 1.5rem 1.4rem;
    border-top: 1px solid var(--accent-pale);
    animation: tiSlideIn .2s ease;
}
.treatment-item.open .ti-body { display: block; }
@keyframes tiSlideIn {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}
.ti-body p {
    font-size: 0.93rem;
    color: var(--text-mid);
    line-height: 1.75;
    margin: 1rem 0 1rem;
}
.ti-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.ti-enquire-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: var(--accent-dark);
    color: var(--white);
    padding: 0.55rem 1.2rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s ease, transform .2s ease;
    min-height: 44px;
}
.ti-enquire-btn:hover { background: var(--accent-mid); transform: translateY(-1px); }
.ti-poster-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: transparent;
    color: var(--accent-mid);
    border: 1.5px solid var(--accent-pale);
    padding: 0.55rem 1.2rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s ease, border-color .2s ease;
    min-height: 44px;
}
.ti-poster-btn:hover { background: var(--cream); border-color: var(--accent-mid); }


/* ─── Next Section Navigation Button ──────────────────────── */
.next-section-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    width: fit-content;
    margin: 2.5rem auto 0;
    padding: 0.65rem 1.5rem;
    background: rgba(255,255,255,0.85);
    border: 1.5px solid var(--accent-pale);
    border-radius: 50px;
    color: var(--accent-soft);
    font-size: 0.8rem;
    font-weight: 600;
    font-family: var(--font-sans);
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: all .25s ease;
    box-shadow: 0 2px 12px rgba(13,71,80,.08);
    cursor: pointer;
    backdrop-filter: blur(6px);
}

.next-section-btn:hover {
    background: var(--white);
    border-color: var(--accent-mid);
    color: var(--accent-dark);
    box-shadow: 0 4px 20px rgba(13,71,80,.16);
    transform: translateY(-2px);
}
/* On dark-bg sections the button stands out better */
.treatments-section .next-section-btn,
.speciality-section .next-section-btn,
.testimonials-section .next-section-btn {
    background: rgba(255,255,255,0.14);
    border-color: rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.85);
}
.treatments-section .next-section-btn:hover,
.speciality-section .next-section-btn:hover,
.testimonials-section .next-section-btn:hover {
    background: rgba(255,255,255,0.25);
    color: var(--white);
}
.nsb-label {
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1;
}
.nsb-arrow {
    font-size: 1.1rem;
    animation: nsbBounce 1.8s ease-in-out infinite;
    line-height: 1;
}
@keyframes nsbBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(4px); }
}

/* ─── Doctor Section ─────────────────────────────────────── */
.doctor-section { background: var(--cream); }
.doctor-section .doctor-profile { margin-top: 0; }

/* ─── Trust Strip ────────────────────────────────────────────── */
.trust-strip {
    background: var(--white);
    border-bottom: 1px solid var(--accent-pale);
    border-top: 1px solid var(--accent-pale);
    padding: 1.1rem 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.trust-strip-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    min-width: max-content;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    white-space: nowrap;
}
.trust-icon { font-size: 1.4rem; flex-shrink: 0; }
.trust-item strong {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--accent-dark);
    line-height: 1.2;
}
.trust-item span {
    font-size: 0.72rem;
    color: var(--text-light);
    display: block;
}
.trust-divider {
    width: 1px;
    height: 36px;
    background: var(--accent-pale);
    flex-shrink: 0;
}

/* ─── Contact Enhancements ───────────────────────────────────── */
.contact-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}
.btn-outline-green {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    font-family: var(--font-sans);
    border: 2px solid var(--accent-mid);
    color: var(--accent-mid);
    background: transparent;
    transition: var(--transition);
    text-decoration: none;
    min-height: 48px;
}
.btn-outline-green:hover {
    background: var(--accent-pale);
    border-color: var(--accent-dark);
    color: var(--accent-dark);
    transform: translateY(-1px);
}

/* ─── Map Section ────────────────────────────────────────────── */
.map-container {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 20px;
    border: 1px solid var(--accent-pale);
    box-shadow: var(--shadow-sm);
}
.map-heading {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-dark);
    margin-bottom: 0.5rem;
}
.map-note {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}
.map-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--accent-mid);
    color: var(--white);
    padding: 0.55rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.88rem;
    margin-bottom: 1.25rem;
    transition: var(--transition);
    min-height: 44px;
}
.map-link-btn:hover { background: var(--accent-dark); transform: translateY(-1px); }
.map-embed-wrapper {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

/* ─── Improved touch targets for all devices ─────────────── */
.tc-enquire { min-height: 44px; display: inline-flex; align-items: center; }
.faq-question { min-height: 52px; }
.btn { min-height: 48px; }

/* ─── Responsive — Tablet (≤ 1024px) ───────────────────── */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        padding-top: 6rem;
        text-align: center;
    }
    .hero-content { max-width: 100%; padding-right: 0; }
    .hero-nav-buttons { margin: 0 auto 2.5rem; }
    .hero-stats  { justify-content: center; }

    /* Show 2-photo side-by-side strip on tablet */
    .hero-image-panel {
        display: flex;
        justify-content: center;
        margin-top: 2rem;
    }
    .hero-photo-grid {
        width: 100%;
        max-width: 500px;
        height: 200px;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr;
        gap: 0.75rem;
    }
    .grid-photo-main    { grid-column: 1; grid-row: 1; border-radius: 16px 6px 6px 16px; }
    .grid-photo-top     { grid-column: 2; grid-row: 1; border-radius: 6px 16px 16px 6px; margin-top: 0; }
    .grid-photo-bottom  { display: none; }
    .grid-photo-side    { display: none; }

    .treatments-grid   { grid-template-columns: repeat(2, 1fr); }
    .speciality-grid   { grid-template-columns: repeat(3, 1fr); }
    .about-grid        { grid-template-columns: 1fr; }
    .about-img-wrapper img { max-height: 320px; }
    .about-img-badge { right: 1rem; }
    .doctor-profile    { grid-template-columns: 1fr; text-align: center; }
    .doc-img-placeholder { height: 180px; max-width: 200px; margin: 0 auto; }
    .doc-qualifications { justify-content: center; }

    .testimonials-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid      { grid-template-columns: 1fr; }
    .footer-grid       { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .footer-brand      { grid-column: 1 / -1; }

    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
    .gi-large { grid-row: span 1; height: 240px; }
    .gallery-item { height: 200px; }

    .trust-divider { display: none; }
    .trust-strip-inner { justify-content: flex-start; padding: 0 1rem; gap: 1.5rem; }
}

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

    /* Top bar — compact */
    .top-bar { font-size: 0.72rem; padding: 0.35rem 0.75rem; flex-wrap: nowrap; }
    .top-bar-text { display: none; }
    .top-bar-phone { font-size: 0.75rem; }
    .top-bar-btn { padding: 0.3rem 0.75rem; min-height: 36px; display: inline-flex; align-items: center; font-size: 0.75rem; }

    /* Navbar */
    .navbar { top: 32px; backdrop-filter: none; -webkit-backdrop-filter: none; background: var(--white); }
    .navbar.scrolled { top: 0; }
    .hamburger { display: flex; }
    /* Keep full name on mobile but smaller */
    .logo-main { font-size: 1.1rem; }
    .logo-sub {
        display: block;
        font-size: 0.52rem;
        letter-spacing: 0.03em;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 200px;
    }


    .nav-links {
        position: fixed;
        top: 0; right: -100%;
        width: min(300px, 85vw);
        height: 100dvh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 1.5rem 2rem;
        gap: 0.25rem;
        box-shadow: -4px 0 30px rgba(0,0,0,.15);
        transition: right .35s cubic-bezier(.4,0,.2,1);
        z-index: 1050;
        overflow-y: auto;
        overscroll-behavior: contain;
    }
    .nav-links.open { right: 0; }
    .hamburger { z-index: 1060; position: relative; }
    .nav-link { width: 100%; padding: 0.85rem 1rem; font-size: 1rem; min-height: 48px; display: flex; align-items: center; }
    .nav-book-btn { width: 100%; text-align: center; padding: 0.85rem 1rem; border-radius: 10px; min-height: 48px; justify-content: center; }

    .mobile-overlay {
        position: fixed; inset: 0;
        background: rgba(0,0,0,.45);
        z-index: 998; display: none;
    }
    .mobile-overlay.show { display: block; }

    /* ── Hero mobile: decluttered ── */
    .hero {
        grid-template-columns: 1fr;
        padding: 4rem 1rem 2.5rem;
        min-height: auto;
        text-align: center;
        gap: 1.25rem;
    }
    .hero-content { max-width: 100%; padding-right: 0; overflow: hidden; }
    .hero-title { font-size: 1.65rem; line-height: 1.2; }
    .hero-title-sub { font-size: 0.95rem; }
    /* Hero nav buttons — 2-col grid, full-width on mobile */
    .hero-nav-buttons {
        grid-template-columns: 1fr 1fr;
        max-width: 100%;
        margin: 0 0 2rem;
    }
    .hero-nav-btn { font-size: 0.82rem; padding: 0.65rem 0.6rem; }

    /* Hero info boxes mobile */
    .hero-info-boxes {
        grid-template-columns: 1fr 1fr;
        max-width: 100%;
        margin: 0 0 1.5rem;
    }
    .hero-info-box { padding: 0.55rem 0.6rem; gap: 0.4rem; }
    .hib-icon { font-size: 1rem; }
    .hero-info-box strong { font-size: 0.75rem; }
    .hero-info-box span { font-size: 0.65rem; }

    /* Stats row — hide dividers, wrap neatly */
    .hero-stats { justify-content: center; gap: 1.25rem; flex-wrap: wrap; }
    .stat-divider { display: none; }
    .stat strong { font-size: 1.25rem; }
    .stat span { font-size: 0.7rem; }

    /* Hero photo 2×2 compact */
    .hero-image-panel { display: flex; justify-content: center; width: 100%; overflow: hidden; }
    .hero-photo-grid {
        width: 100%;
        height: 200px;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        gap: 0.4rem;
    }
    .grid-photo { border-width: 2px; }
    .gp-1 { border-radius: 12px 4px 4px 4px; }
    .gp-2 { border-radius: 4px 12px 4px 4px; }
    .gp-3 { border-radius: 4px 4px 4px 12px; }
    .gp-4 { border-radius: 4px 4px 12px 4px; }

    /* Next button compact */
    .next-section-btn { margin-top: 1.5rem; padding: 0.55rem 1.25rem; }

    /* Trust strip — scroll bar hidden visually */
    .trust-strip { scrollbar-width: none; }
    .trust-strip::-webkit-scrollbar { display: none; }
    .trust-strip-inner { gap: 1.25rem; padding: 0.75rem 1rem; justify-content: flex-start; }
    .trust-divider { display: none; }
    .trust-item { min-width: 130px; }

    /* Sections */
    .treatments-grid { grid-template-columns: 1fr; }
    .treatments-list { border-radius: 12px; }
    .ti-header { padding: 1rem 1.1rem; }
    .ti-name { font-size: 1rem; }
    .ti-body { padding: 0 1.1rem 1.1rem; }
    .ti-actions { flex-direction: column; }
    .ti-enquire-btn, .ti-poster-btn { width: 100%; justify-content: center; }
    .speciality-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; }

    .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .gi-large, .gallery-item { height: 220px; }

    .form-row { grid-template-columns: 1fr; }
    .contact-cta-buttons { display: flex; flex-direction: column; gap: 0.75rem; }
    .btn-outline-green { width: 100%; justify-content: center; }

    .map-container { padding: 1.25rem; }
    .map-embed-wrapper iframe { height: 220px; }

    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom .container { flex-direction: column; text-align: center; }

    .whatsapp-float { bottom: 1.25rem; right: 1.25rem; width: 52px; height: 52px; }
    .whatsapp-float svg { width: 28px; height: 28px; }

    /* Safe area insets (iPhone X+) */
    .top-bar { padding-left: max(1rem, env(safe-area-inset-left)); padding-right: max(1rem, env(safe-area-inset-right)); }
    .footer-bottom { padding-bottom: max(1.25rem, env(safe-area-inset-bottom)); }
}

/* ─── Responsive — Small Mobile (≤ 480px) ────────────────── */
@media (max-width: 480px) {
    .hero-title { font-size: 1.45rem; }
    .hero-photo-grid { height: 170px; }
    .logo-sub { max-width: 160px; font-size: 0.48rem; }
    .speciality-grid { grid-template-columns: 1fr 1fr; }
    .contact-form-card { padding: 1.25rem; }
    .doctor-profile { padding: 1.5rem 1rem; }
    .hero-photo-grid { height: 150px; max-width: 100%; }
}


/* ─── Sticky Mobile Book Now Bar ────────────────────────────── */
.sticky-book-bar {
    display: none; /* hidden on desktop */
}

@media (max-width: 768px) {
    /* Show sticky bar */
    .sticky-book-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 2000;
        background: var(--accent-dark);
        padding: 0.6rem 1rem;
        gap: 0.6rem;
        align-items: center;
        box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
        padding-bottom: max(0.6rem, env(safe-area-inset-bottom));
    }
    .sticky-book-call {
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.3rem;
        padding: 0.65rem 1rem;
        background: rgba(255,255,255,0.12);
        border: 1.5px solid rgba(255,255,255,0.3);
        border-radius: 10px;
        color: var(--white);
        font-size: 0.85rem;
        font-weight: 600;
        white-space: nowrap;
        min-height: 44px;
        transition: var(--transition);
    }
    .sticky-book-call:hover { background: rgba(255,255,255,0.22); }
    .sticky-book-btn {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.35rem;
        padding: 0.65rem 1rem;
        background: var(--gold);
        border-radius: 10px;
        color: var(--accent-dark);
        font-size: 0.88rem;
        font-weight: 700;
        white-space: nowrap;
        min-height: 44px;
        transition: var(--transition);
    }
    .sticky-book-btn:hover { background: #f5d300; }

    /* Ensure page content clears the sticky bar */
    body { padding-bottom: 72px; }
    /* Move WhatsApp float above sticky bar */
    .whatsapp-float { bottom: 5.5rem !important; }
}
