/* ============================================================
   Garg Hospital – style.css
   Brand Color: #189699 (real teal from original site)
   Bootstrap: 4.6.2 | PHP: 8.2 PDO
   Fonts: Inter (body) | Playfair Display (headings)
   ============================================================ */

:root {
    --gh-teal:         #189699;
    --gh-teal-dark:    #117376;
    --gh-teal-light:   #E8F7F7;
    --gh-teal-xlight:  #F0FAFA;
    --gh-red:          #C0392B;
    --gh-red-light:    #FDF0F0;
    --gh-gold:         #D4A017;
    --gh-dark:         #0D1B2A;
    --gh-dark2:        #1A2E42;
    --gh-text:         #1E293B;
    --gh-muted:        #64748B;
    --gh-light-bg:     #F8FAFC;
    --gh-white:        #FFFFFF;
    --gh-border:       #D9EDF0;
    --gh-gradient:     linear-gradient(135deg, #189699 0%, #117376 100%);
    --gh-gradient-dark:linear-gradient(135deg, #0D1B2A 0%, #117376 100%);
    --gh-shadow-sm:    0 2px 12px rgba(24,150,153,.10);
    --gh-shadow-md:    0 8px 32px rgba(24,150,153,.16);
    --gh-shadow-lg:    0 20px 60px rgba(24,150,153,.20);
    --gh-radius:       14px;
    --gh-radius-sm:    8px;
    --font-display:    'Playfair Display', Georgia, serif;
    --font-body:       'Inter', 'Nunito Sans', system-ui, -apple-system, sans-serif;
    --font-ui:         'Nunito Sans', 'Inter', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    overflow-x: hidden;   /* prevent horizontal scroll on mobile */
    max-width: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--gh-text);
    background: var(--gh-white);
    font-size: 15px;
    line-height: 1.75;
    overflow-x: hidden;
    max-width: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: -0.01em;
}

h1,h2,h3,h4,h5,h6 {
    font-family: var(--font-display);
    color: var(--gh-dark);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

p { font-family: var(--font-body); line-height: 1.78; }
a { color: var(--gh-teal); }
a:hover { color: var(--gh-teal-dark); text-decoration: none; }
img { max-width: 100%; }
address { margin-bottom: 0; }

/* ── Section helpers ──────────────────────────────────────── */
.section-pad   { padding: 80px 0; }
.section-light { background: var(--gh-light-bg); }
.section-teal  { background: var(--gh-teal-xlight); }

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--gh-teal-light);
    color: var(--gh-teal);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.section-title { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 700; margin-bottom: 12px; }
.section-title span { color: var(--gh-teal); }
.section-sub { color: var(--gh-muted); font-size: 15.5px; max-width: 560px; }

.divider-teal {
    width: 54px;
    height: 4px;
    background: var(--gh-gradient);
    border-radius: 2px;
    margin: 14px 0;
}
.divider-center { margin: 14px auto; }

/* ── Buttons ────────────────────────────────────────────────── */
.gh-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--gh-gradient);
    color: var(--gh-white) !important;
    padding: 11px 26px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    transition: all .3s;
    text-decoration: none !important;
    box-shadow: 0 5px 18px rgba(24,150,153,.35);
}
.gh-btn:hover { transform: translateY(-2px); box-shadow: 0 9px 28px rgba(24,150,153,.45); }

.gh-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: transparent;
    color: var(--gh-white) !important;
    border: 2px solid rgba(255,255,255,.55);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    transition: all .3s;
    text-decoration: none !important;
}
.gh-btn-outline:hover { background: rgba(255,255,255,.12); border-color: var(--gh-white); }

.gh-btn-red {
    background: linear-gradient(135deg, #C0392B 0%, #922B21 100%);
    box-shadow: 0 5px 18px rgba(192,57,43,.35);
}
.gh-btn-red:hover { box-shadow: 0 9px 28px rgba(192,57,43,.45); }

.gh-btn-wa {
    background: #25D366 !important;
    box-shadow: 0 5px 18px rgba(37,211,102,.35) !important;
}
.gh-btn-wa:hover { box-shadow: 0 9px 28px rgba(37,211,102,.45) !important; }

/* ── Ticker ────────────────────────────────────────────────── */
.gh-ticker {
    background: var(--gh-dark);
    color: rgba(255,255,255,.8);
    font-size: 13px;
    padding: 7px 0;
    overflow: hidden;
}
.gh-ticker-label {
    background: var(--gh-teal);
    color: var(--gh-white);
    padding: 4px 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    white-space: nowrap;
    border-radius: 0 4px 4px 0;
}
.gh-ticker-scroll {
    overflow: hidden;
    white-space: nowrap;
    padding: 0 16px;
}
.gh-ticker-scroll span {
    display: inline-block;
    animation: tickerScroll 35s linear infinite;
}
@keyframes tickerScroll {
    0%   { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}
.gh-ticker-right { flex-shrink: 0; }
.gh-emergency-pill {
    background: var(--gh-red);
    color: var(--gh-white) !important;
    padding: 3px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    text-decoration: none !important;
}

/* ── Top Bar ───────────────────────────────────────────────── */
.gh-topbar {
    background: var(--gh-teal-light);
    border-bottom: 1px solid var(--gh-border);
    padding: 8px 0;
    font-size: 13px;
    color: var(--gh-muted);
}
.gh-topbar-left { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.gh-topbar-left a { color: var(--gh-muted); text-decoration: none; transition: color .2s; }
.gh-topbar-left a:hover { color: var(--gh-teal); }
.gh-topbar-sep { color: var(--gh-border); }
.gh-topbar-social { display: flex; gap: 6px; }
.gh-topbar-social a {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--gh-white);
    border: 1px solid var(--gh-border);
    display: flex; align-items: center; justify-content: center;
    color: var(--gh-teal) !important;
    font-size: 12px;
    text-decoration: none;
    transition: all .2s;
}
.gh-topbar-social a:hover { background: var(--gh-teal); color: var(--gh-white) !important; }
.gh-topbar-appt {
    background: var(--gh-teal);
    color: var(--gh-white) !important;
    padding: 5px 16px;
    border-radius: 50px;
    font-size: 12.5px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all .2s;
    display: inline-flex; align-items: center;
}
.gh-topbar-appt:hover { background: var(--gh-teal-dark); }

/* ── Navbar ───────────────────────────────────────────────── */
.gh-navbar {
    background: var(--gh-white);
    box-shadow: 0 2px 20px rgba(0,0,0,.08);
    padding: 8px 0;
    transition: all .3s;
}
.gh-navbar.scrolled { padding: 4px 0; box-shadow: 0 4px 28px rgba(24,150,153,.15); }

/* Real logo */
.gh-logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.gh-logo-icon {
    width: 46px; height: 46px;
    background: var(--gh-gradient);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gh-white); font-size: 20px;
}
.gh-nav-name {
    display: block;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--gh-dark);
    line-height: 1.1;
}
.gh-nav-tag {
    font-size: 10px;
    color: var(--gh-teal);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
}

/* Toggler */
.gh-toggler { border: none; background: transparent; padding: 6px; display: flex; flex-direction: column; gap: 5px; cursor: pointer; }
.gh-bar { display: block; width: 24px; height: 2px; background: var(--gh-dark); border-radius: 2px; transition: all .3s; }

/* ── Mobile emergency button (between logo & hamburger) ── */
.gh-nav-emergency {
    margin-left: auto;
    margin-right: 10px;
    text-decoration: none !important;
    background: #fff0f0;
    border: 1.5px solid rgba(220,38,38,.25);
    border-radius: 10px;
    padding: 5px 10px 5px 8px;
    gap: 8px;
    line-height: 1.2;
    flex-shrink: 0;
}
.gh-nav-emerg-icon {
    width: 30px;
    height: 30px;
    background: #dc2626;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 13px;
    flex-shrink: 0;
    animation: emergPulse 2s ease-in-out infinite;
}
@keyframes emergPulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(220,38,38,.4); }
    50%      { box-shadow: 0 0 0 5px rgba(220,38,38,0); }
}
.gh-nav-emerg-text small {
    display: block;
    font-size: 9px;
    color: #dc2626;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.gh-nav-emerg-text strong {
    display: block;
    font-size: 12px;
    color: #1a1a1a;
    font-weight: 700;
    letter-spacing: -.2px;
}

.gh-navbar .nav-link {
    font-weight: 500;
    font-size: 14.5px;
    color: var(--gh-text) !important;
    padding: 8px 14px !important;
    border-radius: 8px;
    transition: all .2s;
    position: relative;
}
.gh-navbar .nav-link:hover,
.gh-navbar .nav-link.active { color: var(--gh-teal) !important; background: var(--gh-teal-light); }

.gh-btn-appointment {
    background: var(--gh-gradient);
    color: var(--gh-white) !important;
    padding: 9px 20px !important;
    border-radius: 50px;
    font-size: 13.5px;
    font-weight: 600;
    border: none;
    box-shadow: 0 4px 14px rgba(24,150,153,.35);
    transition: all .3s;
    text-decoration: none !important;
    display: inline-flex; align-items: center;
}
.gh-btn-appointment:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(24,150,153,.45); }

/* Dropdown */
.gh-dropdown {
    border: none;
    border-radius: var(--gh-radius-sm);
    box-shadow: var(--gh-shadow-lg);
    padding: 10px 8px;
    min-width: 230px;
    border-top: 3px solid var(--gh-teal);
    margin-top: 6px;
}
.gh-dropdown .dropdown-item { font-size: 14px; padding: 9px 16px; border-radius: 6px; color: var(--gh-text); transition: all .2s; font-family: var(--font-body); }
.gh-dropdown .dropdown-item:hover { background: var(--gh-teal-light); color: var(--gh-teal); }

/* ── HERO ─────────────────────────────────────────────────── */
.gh-hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 80px 0 60px;
    background: #0D1B2A;
}

/* Real banner image */
.gh-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/banner.jpg');
    background-size: cover;
    background-position: center;
    opacity: .32;
    transition: opacity 1s;
}

.gh-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg,
        rgba(13,27,42,.95) 0%,
        rgba(24,150,153,.55) 60%,
        rgba(13,27,42,.7) 100%);
}

.gh-hero-pattern {
    position: absolute;
    inset: 0;
    background-image: 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='%23189699' fill-opacity='0.07'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4z'/%3E%3C/g%3E%3C/svg%3E");
}

.gh-hero > .container-fluid { position: relative; z-index: 2; }

.gh-hero-live {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(24,150,153,.2);
    border: 1px solid rgba(24,150,153,.5);
    backdrop-filter: blur(8px);
    color: var(--gh-white);
    padding: 7px 18px;
    border-radius: 50px;
    font-size: 13px;
    margin-bottom: 20px;
}
.gh-hero-dot {
    width: 8px; height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulseDot 1.5s infinite;
}
@keyframes pulseDot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.6;transform:scale(1.4)} }

.gh-hero-title {
    font-size: clamp(2rem, 5vw, 3.6rem);
    font-weight: 700;
    color: var(--gh-white);
    line-height: 1.14;
    margin-bottom: 18px;
}
.gh-hero-title .teal-word { color: #5DD6D9; }
.gh-hero-title .ghost { color: transparent; -webkit-text-stroke: 2px rgba(255,255,255,.4); }

.gh-hero-sub {
    color: rgba(255,255,255,.78);
    font-size: 16.5px;
    margin-bottom: 32px;
    max-width: 520px;
    line-height: 1.8;
}

/* Hero phone bar */
.gh-hero-phones {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}
.gh-hero-phone-item {
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 10px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all .3s;
}
.gh-hero-phone-item:hover { background: rgba(24,150,153,.3); border-color: var(--gh-teal); }
.gh-hero-phone-item i { color: var(--gh-teal); font-size: 16px; }
.gh-hero-phone-item .label { color: rgba(255,255,255,.6); font-size: 11px; display: block; }
.gh-hero-phone-item .num { color: var(--gh-white); font-size: 14px; font-weight: 600; display: block; }

/* Hero stat badges */
.gh-hero-stats { display: flex; gap: 24px; flex-wrap: wrap; }
.gh-stat-badge {
    text-align: center;
    padding: 16px 20px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px;
    backdrop-filter: blur(8px);
}
.gh-stat-badge-num { display: block; font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--gh-white); line-height: 1; }
.gh-stat-badge-lbl { display: block; font-size: 12px; color: rgba(255,255,255,.6); margin-top: 3px; }

/* Quick Appointment Card */
.gh-appt-card {
    background: rgba(255,255,255,.09);
    backdrop-filter: blur(22px);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 20px;
    padding: 30px;
    position: relative;
}
.gh-appt-card h5 { color: var(--gh-white); font-size: 19px; margin-bottom: 4px; }
.gh-appt-card > p { color: rgba(255,255,255,.6); font-size: 13px; margin-bottom: 20px; }
.gh-appt-field { margin-bottom: 12px; }
.gh-appt-field select,
.gh-appt-field input {
    width: 100%;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.22);
    color: var(--gh-white);
    border-radius: 9px;
    padding: 10px 14px;
    font-size: 14px;
    font-family: var(--font-body);
    outline: none;
    -webkit-appearance: none;
    transition: border .2s;
}
.gh-appt-field select option { background: var(--gh-dark2); color: var(--gh-white); }
.gh-appt-field select:focus,
.gh-appt-field input:focus  { border-color: rgba(255,255,255,.55); }
.gh-appt-field input::placeholder { color: rgba(255,255,255,.4); }
.gh-appt-submit {
    width: 100%;
    background: var(--gh-gradient);
    color: var(--gh-white);
    border: none;
    border-radius: 9px;
    padding: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-body);
    transition: all .3s;
    display: flex; align-items: center; justify-content: center; gap: 8px;
}
.gh-appt-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(24,150,153,.45); }

/* Floating phone badges */
.gh-float-badge {
    position: absolute;
    background: var(--gh-white);
    border-radius: 12px;
    padding: 10px 14px;
    box-shadow: var(--gh-shadow-md);
    display: flex; align-items: center; gap: 9px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gh-dark);
    white-space: nowrap;
    animation: floatBadge 4s ease-in-out infinite;
}
.gh-float-badge i { color: var(--gh-teal); font-size: 16px; }
.gh-float-badge-1 { top: -18px; left: -26px; animation-delay: 0s; }
.gh-float-badge-2 { bottom: -18px; right: -18px; animation-delay: 2s; }
@keyframes floatBadge { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@media (max-width: 991px) { .gh-float-badge { display: none; } }

/* ── Stats Bar ────────────────────────────────────────────── */
.gh-stats-bar {
    background: var(--gh-white);
    box-shadow: var(--gh-shadow-md);
    border-radius: var(--gh-radius);
    margin-top: -40px;
    position: relative;
    z-index: 10;
    overflow: hidden;
    border-top: 4px solid var(--gh-teal);
}
.gh-stat-item { padding: 26px 14px; text-align: center; border-right: 1px solid var(--gh-border); transition: background .3s; }
.gh-stat-item:last-child { border-right: none; }
.gh-stat-item:hover { background: var(--gh-teal-light); }
.gh-stat-item i { font-size: 26px; color: var(--gh-teal); margin-bottom: 8px; display: block; }
.gh-stat-num { display: block; font-family: var(--font-display); font-size: 1.85rem; font-weight: 700; color: var(--gh-dark); line-height: 1; }
.gh-stat-lbl { font-size: 12.5px; color: var(--gh-muted); margin-top: 4px; display: block; }

/* ── Department Cards ─────────────────────────────────────── */
.gh-dept-card {
    background: var(--gh-white);
    border-radius: var(--gh-radius);
    padding: 28px 20px;
    text-align: center;
    border: 1px solid var(--gh-border);
    transition: all .35s;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.gh-dept-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: var(--gh-gradient);
    transform: scaleX(0);
    transition: transform .35s;
}
.gh-dept-card:hover { transform: translateY(-8px); box-shadow: var(--gh-shadow-lg); border-color: transparent; }
.gh-dept-card:hover::after { transform: scaleX(1); }
.gh-dept-icon {
    width: 68px; height: 68px;
    background: var(--gh-teal-light);
    border-radius: 18px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 26px; color: var(--gh-teal);
    margin-bottom: 16px;
    transition: all .35s;
}
.gh-dept-card:hover .gh-dept-icon { background: var(--gh-gradient); color: var(--gh-white); }
.gh-dept-card h5 { font-size: 16px; margin-bottom: 8px; }
.gh-dept-card p  { font-size: 13.5px; color: var(--gh-muted); margin-bottom: 0; }

/* ── Gallery Section ──────────────────────────────────────── */
.gh-gallery-grid { display: flex; flex-wrap: wrap; margin: 0 -6px; }
.gh-gallery-item {
    width: 25%;
    padding: 6px;
    position: relative;
    overflow: hidden;
}
.gh-gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--gh-radius-sm);
    transition: transform .4s;
    display: block;
}
.gh-gallery-item:hover img { transform: scale(1.06); }

.gh-gallery-overlay {
    position: absolute;
    inset: 6px;
    background: rgba(24,150,153,.7);
    border-radius: var(--gh-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s;
}
.gh-gallery-item:hover .gh-gallery-overlay { opacity: 1; }
.gh-gallery-overlay i { color: var(--gh-white); font-size: 28px; }
.gh-gallery-label {
    position: absolute;
    bottom: 6px;
    left: 6px; right: 6px;
    background: rgba(0,0,0,.6);
    color: var(--gh-white);
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    padding: 5px 8px;
    border-radius: 0 0 var(--gh-radius-sm) var(--gh-radius-sm);
}

@media (max-width: 767px) { .gh-gallery-item { width: 50%; } }
@media (max-width: 480px) { .gh-gallery-item { width: 100%; } }

/* Full gallery page */
.gh-gallery-page-item {
    overflow: hidden;
    border-radius: var(--gh-radius-sm);
    position: relative;
}
.gh-gallery-page-item img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform .4s;
    display: block;
}
.gh-gallery-page-item:hover img { transform: scale(1.06); }

/* ── Doctor Cards ─────────────────────────────────────────── */
.gh-doctor-card {
    background: var(--gh-white);
    border-radius: var(--gh-radius);
    overflow: hidden;
    border: 1px solid var(--gh-border);
    box-shadow: var(--gh-shadow-sm);
    transition: all .35s;
    height: 100%;
}
.gh-doctor-card:hover { transform: translateY(-6px); box-shadow: var(--gh-shadow-lg); }
.gh-doctor-img {
    height: 250px;
    background: linear-gradient(135deg, var(--gh-teal-light) 0%, var(--gh-border) 100%);
    display: flex; align-items: flex-end; justify-content: center;
    overflow: hidden; position: relative;
}
.gh-doctor-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform .5s; }
.gh-doctor-card:hover .gh-doctor-img img { transform: scale(1.05); }
.gh-doctor-placeholder { font-size: 100px; color: rgba(24,150,153,.18); line-height: 1; }
.gh-doctor-avail { position: absolute; bottom: 0; left: 0; right: 0; background: var(--gh-gradient); color: var(--gh-white); padding: 8px 14px; font-size: 12px; display: flex; align-items: center; gap: 5px; }
.gh-doctor-body { padding: 20px; }
.gh-doctor-body h5 { font-size: 16.5px; margin-bottom: 3px; }
.gh-doctor-spec { display: block; color: var(--gh-teal); font-size: 13px; font-weight: 600; margin-bottom: 8px; }
.gh-doctor-qual { display: block; font-size: 12.5px; color: var(--gh-muted); margin-bottom: 12px; }
.gh-doctor-meta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 14px; }
.gh-doctor-meta span { font-size: 12px; color: var(--gh-muted); display: flex; align-items: center; gap: 4px; }
.gh-doctor-meta i { color: var(--gh-teal); }

/* ── Testimonials ─────────────────────────────────────────── */
.gh-testi-card {
    background: var(--gh-white);
    border-radius: var(--gh-radius);
    padding: 28px;
    border: 1px solid var(--gh-border);
    box-shadow: var(--gh-shadow-sm);
    height: 100%;
    position: relative;
}
.gh-testi-card::before {
    content: '\201C';
    font-family: serif;
    font-size: 68px;
    line-height: 1;
    color: var(--gh-teal);
    opacity: .14;
    position: absolute;
    top: 12px; right: 20px;
}
.gh-stars { color: #F4C430; font-size: 13px; margin-bottom: 12px; }
.gh-testi-text { font-size: 14px; color: var(--gh-text); line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.gh-testi-author { display: flex; align-items: center; gap: 12px; }
.gh-author-avatar {
    width: 44px; height: 44px;
    background: var(--gh-gradient);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--gh-white); font-size: 16px; font-family: var(--font-display); font-weight: 700;
    flex-shrink: 0;
}
.gh-author-name { font-weight: 600; font-size: 14px; color: var(--gh-dark); }
.gh-author-city { font-size: 12px; color: var(--gh-muted); }

/* ── Why Choose Us ─────────────────────────────────────────── */
.gh-why-card {
    display: flex; gap: 16px;
    padding: 20px;
    border-radius: var(--gh-radius-sm);
    border: 1px solid var(--gh-border);
    background: var(--gh-white);
    transition: all .3s;
    height: 100%;
}
.gh-why-card:hover { box-shadow: var(--gh-shadow-md); transform: translateX(4px); }
.gh-why-icon {
    width: 52px; height: 52px;
    background: var(--gh-teal-light);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 21px; color: var(--gh-teal); flex-shrink: 0;
    transition: all .3s;
}
.gh-why-card:hover .gh-why-icon { background: var(--gh-gradient); color: var(--gh-white); }
.gh-why-content h5 { font-size: 15px; margin-bottom: 4px; }
.gh-why-content p  { font-size: 13.5px; color: var(--gh-muted); margin: 0; }

/* ── CTA Section ─────────────────────────────────────────── */
.gh-cta {
    background: linear-gradient(135deg, #0D1B2A 0%, #117376 60%, #189699 100%);
    padding: 72px 0;
    position: relative;
    overflow: hidden;
}
.gh-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='2' fill='%23189699' fill-opacity='0.1'/%3E%3C/svg%3E");
    pointer-events: none;
}
.gh-cta > .container, .gh-cta > .container-fluid { position: relative; z-index: 1; }

/* ── Page Hero ───────────────────────────────────────────── */
.gh-page-hero {
    background: linear-gradient(135deg, #0D1B2A 0%, #117376 100%);
    padding: 100px 0 56px;
    color: var(--gh-white);
    position: relative;
    overflow: hidden;
}
.gh-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 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='%23189699' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4z'/%3E%3C/g%3E%3C/svg%3E");
}
.gh-page-hero > .container, .gh-page-hero > .container-fluid { position: relative; }
.gh-page-hero h1 { color: var(--gh-white); font-size: clamp(1.9rem, 4vw, 2.8rem); }
.gh-page-hero p { color: rgba(255,255,255,.74); font-size: 16px; }
.breadcrumb { background: transparent; padding: 0; margin-bottom: 12px; }
.breadcrumb-item a { color: rgba(255,255,255,.65); text-decoration: none; }
.breadcrumb-item.active { color: var(--gh-white); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.4); }

/* ── Contact Forms ───────────────────────────────────────── */
.gh-info-card { background: var(--gh-white); border-radius: var(--gh-radius); padding: 28px; box-shadow: var(--gh-shadow-md); }
.gh-info-item { display: flex; align-items: flex-start; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--gh-border); }
.gh-info-item:last-child { border-bottom: none; }
.gh-info-icon { width: 46px; height: 46px; background: var(--gh-teal-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--gh-teal); flex-shrink: 0; }
.gh-info-item h6 { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--gh-muted); margin-bottom: 2px; font-family: var(--font-body); }
.gh-info-item p, .gh-info-item a { font-size: 14.5px; color: var(--gh-dark); margin: 0; font-weight: 500; text-decoration: none; }
.gh-info-item a:hover { color: var(--gh-teal); }

.gh-form-card { background: var(--gh-white); border-radius: var(--gh-radius); padding: 36px; box-shadow: var(--gh-shadow-md); }
.gh-form-card .form-control,
.gh-form-card select.form-control {
    border: 1.5px solid var(--gh-border);
    border-radius: 9px;
    padding: 11px 14px;
    font-size: 14.5px;
    font-family: var(--font-body);
    color: var(--gh-text);
    height: auto;
    transition: border .2s, box-shadow .2s;
}
.gh-form-card .form-control:focus,
.gh-form-card select.form-control:focus { border-color: var(--gh-teal); box-shadow: 0 0 0 4px rgba(24,150,153,.09); outline: none; }
label.gh-label { font-weight: 500; font-size: 14px; color: var(--gh-text); margin-bottom: 5px; }
.gh-submit-btn {
    background: var(--gh-gradient);
    color: var(--gh-white);
    border: none;
    padding: 12px 32px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-body);
    transition: all .3s;
    display: inline-flex; align-items: center; gap: 8px;
}
.gh-submit-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(24,150,153,.38); }

.map-wrap { border-radius: var(--gh-radius); overflow: hidden; box-shadow: var(--gh-shadow-md); }
.map-wrap iframe { display: block; width: 100%; }

/* Nav Tabs */
.gh-nav-tabs .nav-link { border: none; border-radius: 50px !important; font-size: 14px; font-weight: 600; color: var(--gh-muted); padding: 9px 22px; background: var(--gh-light-bg); margin-right: 8px; transition: all .2s; }
.gh-nav-tabs .nav-link.active { background: var(--gh-gradient); color: var(--gh-white) !important; }

/* ── Filter Buttons ──────────────────────────────────────── */
.gh-filter-btn { border: 1.5px solid var(--gh-border); border-radius: 50px; background: transparent; color: var(--gh-muted); font-size: 13px; font-weight: 500; padding: 7px 18px; cursor: pointer; font-family: var(--font-body); transition: all .2s; }
.gh-filter-btn.active, .gh-filter-btn:hover { background: var(--gh-teal-light); color: var(--gh-teal); border-color: var(--gh-teal); }

/* ── About page boxes ────────────────────────────────────── */
.gh-highlight-box { background: var(--gh-gradient); border-radius: var(--gh-radius); padding: 26px; color: var(--gh-white); }
.gh-highlight-box h5 { color: var(--gh-white); font-size: 18px; }
.gh-highlight-box p  { color: rgba(255,255,255,.8); margin: 0; font-size: 14.5px; }
.gh-accent-box { background: #FDF0F0; border-left: 4px solid var(--gh-red); border-radius: var(--gh-radius); padding: 22px 24px; }
.gh-accent-box h5 { color: var(--gh-red); font-size: 17px; }
.gh-accent-box p  { color: var(--gh-text); font-size: 14px; margin: 0; }

/* Timeline */
.gh-timeline { position: relative; padding-left: 44px; }
.gh-timeline::before { content:''; position:absolute; left:13px; top:0; bottom:0; width:2px; background:var(--gh-border); }
.gh-timeline-item { position: relative; padding-bottom: 28px; }
.gh-timeline-dot { position: absolute; left: -37px; top: 3px; width: 28px; height: 28px; background: var(--gh-gradient); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gh-white); font-size: 11px; font-weight: 700; }
.gh-timeline-year { display: inline-block; background: var(--gh-teal-light); color: var(--gh-teal); padding: 2px 10px; border-radius: 50px; font-size: 12px; font-weight: 600; margin-bottom: 3px; }
.gh-timeline-item h6 { font-size: 15px; font-family: var(--font-body); font-weight: 600; margin-bottom: 3px; }
.gh-timeline-item p  { font-size: 13.5px; color: var(--gh-muted); margin: 0; }

/* ── FOOTER ──────────────────────────────────────────────── */
.gh-footer { background: #0D1B2A; color: rgba(255,255,255,.72); }
.gh-footer-top { padding: 60px 0 44px; }

.gh-footer-logo { height: 80px; width: auto; object-fit: contain; margin-bottom: 4px; }

.gh-footer-heading {
    font-family: var(--font-body);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    color: var(--gh-white);
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gh-teal);
    display: inline-block;
}

.gh-footer-contact-item {
    display: flex; gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
    align-items: flex-start;
}
.gh-footer-contact-item i { color: var(--gh-teal); margin-top: 3px; flex-shrink: 0; width: 16px; font-size: 15px; }
.gh-footer-contact-item a { color: rgba(255,255,255,.65); text-decoration: none; transition: color .2s; }
.gh-footer-contact-item a:hover { color: var(--gh-white); }
.gh-footer-emerg { color: #FFD700 !important; font-weight: 700; font-size: 16px; }

.gh-footer-links { list-style: none; padding: 0; margin: 0; }
.gh-footer-links li { margin-bottom: 10px; }
.gh-footer-links a { color: rgba(255,255,255,.65); text-decoration: none; font-size: 14px; display: flex; align-items: center; gap: 7px; transition: all .2s; }
.gh-footer-links a i { font-size: 10px; color: var(--gh-teal); }
.gh-footer-links a:hover { color: var(--gh-white); padding-left: 4px; }

.gh-footer-social { display: flex; gap: 8px; flex-wrap: wrap; }
.gh-footer-social a {
    width: 36px; height: 36px;
    border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gh-white) !important;
    font-size: 14px;
    text-decoration: none;
    transition: all .2s;
    opacity: .9;
}
.gh-footer-social a:hover { opacity: 1; transform: translateY(-2px); }

.gh-payment-icons { display: flex; gap: 10px; font-size: 24px; flex-wrap: wrap; }
.gh-payment-icons .far.fa-credit-card { color: #4ade80; }
.gh-payment-icons .fab.fa-cc-visa     { color: #ffffff; }
.gh-payment-icons .fab.fa-google-pay  { color: #ee5b50; }
.gh-payment-icons .fab.fa-amazon-pay  { color: #f99706; }

.gh-footer-map { border-radius: 12px; overflow: hidden; }

.gh-footer-bottom { background: rgba(0,0,0,.35); padding: 16px 0; font-size: 13px; color: rgba(255,255,255,.5); }

/* ── WhatsApp Float ──────────────────────────────────────── */
.gh-wa-float {
    position: fixed;
    bottom: 88px; right: 20px;
    width: 56px; height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 27px;
    color: var(--gh-white) !important;
    text-decoration: none !important;
    box-shadow: 0 6px 22px rgba(37,211,102,.5);
    z-index: 9999;
    animation: waPulse 3s ease-in-out infinite;
    transition: transform .3s;
}
@keyframes waPulse { 0%,100%{box-shadow:0 6px 22px rgba(37,211,102,.5)} 50%{box-shadow:0 6px 38px rgba(37,211,102,.78)} }
.gh-wa-float:hover { transform: scale(1.1) translateY(-3px); }

.gh-wa-tooltip {
    position: absolute;
    right: 66px; top: 50%;
    transform: translateY(-50%);
    background: var(--gh-dark);
    color: var(--gh-white);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12.5px;
    font-family: var(--font-body);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s;
}
.gh-wa-tooltip::after { content:''; position:absolute; left:100%; top:50%; transform:translateY(-50%); border:5px solid transparent; border-left-color:var(--gh-dark); }
.gh-wa-float:hover .gh-wa-tooltip { opacity: 1; }

/* ── Back to Top ─────────────────────────────────────────── */
.gh-back-top {
    position: fixed;
    bottom: 24px; right: 20px;
    width: 42px; height: 42px;
    background: var(--gh-gradient);
    color: var(--gh-white);
    border: none;
    border-radius: 11px;
    font-size: 15px;
    cursor: pointer;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: var(--gh-shadow-md);
    transition: all .3s;
}
.gh-back-top.show { display: flex; }
.gh-back-top:hover { transform: translateY(-3px); }

/* ── Alerts ──────────────────────────────────────────────── */
.gh-alert { border: none; border-radius: var(--gh-radius-sm); padding: 14px 18px; font-size: 14.5px; font-family: var(--font-body); }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 991px) {
    .gh-hero { padding: 90px 0 50px; min-height: auto; }
    .gh-stats-bar { margin-top: 0; border-radius: 0; }
    .gh-stat-item { border-right: none; border-bottom: 1px solid var(--gh-border); }
    .gh-stat-item:last-child { border-bottom: none; }
    .gh-form-card { padding: 22px; }
    .gh-navbar .nav-item { margin-bottom: 3px; }
    .gh-btn-appointment { margin-top: 6px; }
    .gh-logo-img { height: 48px; }
}
@media (max-width: 767px) {
    .section-pad { padding: 56px 0; }
    .gh-hero-title { font-size: 2rem; }
    .gh-hero-phones { justify-content: center; }
    .gh-hero-stats { justify-content: center; }
}

/* ============================================================
   ADDITIONAL STYLES – v3 (index + about page additions)
   ============================================================ */

/* ── Ayushman Hero Badge ────────────────────────────────────── */
.gh-ayush-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(238,131,32,.15);
    border: 1px solid rgba(238,131,32,.4);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 12px 18px;
    margin-top: 8px;
}

/* ── Ayushman Logo Wrap ─────────────────────────────────────── */
.gh-ayush-logo-wrap {
    background: var(--gh-white);
    border-radius: var(--gh-radius);
    padding: 28px;
    box-shadow: var(--gh-shadow-md);
    display: inline-block;
}

.gh-ayush-img { max-height: 200px; object-fit: contain; }

/* ── Ayushman Badge Box ─────────────────────────────────────── */
.gh-ayush-badge-box {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #FFF3E0;
    border: 1.5px solid #ee8320;
    border-radius: 50px;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 700;
    color: #E65100;
}

.gh-ayush-badge-box i { color: #ee8320; }

/* ── Ayushman Benefit Items ─────────────────────────────────── */
.gh-ayush-benefit {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.gh-ayush-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.gh-ayush-benefit-title {
    font-weight: 600;
    font-size: 14px;
    color: var(--gh-dark);
    margin-bottom: 2px;
}

.gh-ayush-benefit-desc {
    font-size: 12.5px;
    color: var(--gh-muted);
    line-height: 1.5;
}

/* ── Feature Circle (3-feature strip) ──────────────────────── */
.gh-feature-circle {
    width: 120px; height: 120px;
    background: var(--gh-gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 50px;
    color: var(--gh-white);
    margin: 0 auto 16px;
    box-shadow: 0 8px 24px rgba(212,160,23,.35);
    transition: transform .3s;
}

.gh-feature-circle:hover { transform: scale(1.06); }
.gh-feature-circle i { color: var(--gh-white) !important; }

/* ── Doctor List Card (compact, mirrors original index layout) */
.gh-doc-list-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--gh-white);
    border: 1px solid var(--gh-border);
    border-radius: var(--gh-radius-sm);
    padding: 14px 16px;
    transition: all .3s;
    position: relative;
}

.gh-doc-list-card:hover {
    box-shadow: var(--gh-shadow-md);
    border-color: var(--gh-teal);
    transform: translateX(4px);
}

.gh-doc-list-img {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--gh-teal-light);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.gh-doc-list-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.gh-doc-list-img i {
    font-size: 26px;
    color: var(--gh-teal);
}

.gh-doc-list-info { flex: 1; min-width: 0; }

.gh-doc-list-info h6 {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--gh-teal-dark);
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: var(--font-body);
}

.gh-doc-list-info p {
    font-size: 12.5px;
    color: var(--gh-red);
    font-weight: 500;
    margin-bottom: 2px;
}

.gh-doc-list-info span {
    font-size: 11.5px;
    color: var(--gh-muted);
    display: flex; align-items: center; gap: 4px;
}

.gh-doc-list-btn {
    width: 36px; height: 36px;
    background: var(--gh-teal-light);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--gh-teal);
    font-size: 15px;
    flex-shrink: 0;
    text-decoration: none;
    transition: all .2s;
}

.gh-doc-list-btn:hover {
    background: var(--gh-teal);
    color: var(--gh-white);
}

/* ── Specialty Cards ──────────────────────────────────────── */
.gh-specialty-card {
    background: var(--gh-white);
    border-radius: var(--gh-radius);
    overflow: hidden;
    box-shadow: var(--gh-shadow-sm);
    border: 1px solid var(--gh-border);
    transition: all .35s;
    height: 100%;
}

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

.gh-specialty-img {
    height: 210px;
    overflow: hidden;
}

.gh-specialty-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s;
}

.gh-specialty-card:hover .gh-specialty-img img { transform: scale(1.06); }

.gh-specialty-body { padding: 20px; }
.gh-specialty-body h5 { font-size: 17px; margin-bottom: 10px; }
.gh-specialty-body p  { font-size: 13.5px; color: var(--gh-muted); margin-bottom: 0; }

/* ── Parallax Section ─────────────────────────────────────── */
.gh-parallax-section {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 380px;
    display: flex;
    align-items: center;
    position: relative;
}

.gh-parallax-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13,27,42,.72);
    display: flex;
    align-items: center;
    width: 100%;
}

/* ── Diagnostics Cards ────────────────────────────────────── */
.gh-diag-card {
    background: var(--gh-white);
    border-radius: var(--gh-radius);
    padding: 28px 16px;
    text-align: center;
    border: 1px solid var(--gh-border);
    box-shadow: var(--gh-shadow-sm);
    transition: all .35s;
    height: 100%;
}

.gh-diag-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--gh-shadow-lg);
    border-color: var(--gh-teal);
}

.gh-diag-icon {
    width: 70px; height: 70px;
    background: var(--gh-gradient);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--gh-white);
    margin-bottom: 14px;
    transition: all .35s;
}

.gh-diag-card:hover .gh-diag-icon {
    transform: scale(1.08);
    box-shadow: 0 8px 22px rgba(24,150,153,.4);
}

.gh-diag-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--gh-dark);
    margin-bottom: 0;
}

/* ── About page: gold variable ────────────────────────────── */
:root { --gh-gold: #D4A017; }

/* ── Responsive for new sections ─────────────────────────── */
@media (max-width: 767px) {
    .gh-parallax-section { background-attachment: scroll; min-height: 280px; }
    .gh-ayush-logo-wrap  { padding: 18px; }
    .gh-feature-circle   { width: 90px; height: 90px; font-size: 38px; }
}

/* ============================================================
   WHATSAPP SCROLL POPUP – v4
   ============================================================ */
.gh-wa-wrapper {
    position: fixed;
    bottom: 24px;
    right: 22px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.gh-wa-float {
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--gh-white) !important;
    text-decoration: none !important;
    box-shadow: 0 6px 24px rgba(37,211,102,.55);
    cursor: pointer;
    position: relative;
    animation: waPulse 2.8s ease-in-out infinite;
    transition: transform .3s;
    flex-shrink: 0;
}

.gh-wa-float:hover { transform: scale(1.1); }

@keyframes waPulse {
    0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,.55); }
    50%      { box-shadow: 0 6px 42px rgba(37,211,102,.85); }
}

/* Notification badge */
.gh-wa-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 20px;
    height: 20px;
    background: #ef4444;
    border-radius: 50%;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    border: 2px solid var(--gh-white);
    animation: badgePop .4s ease-out;
}

@keyframes badgePop { 0%{transform:scale(0)} 80%{transform:scale(1.2)} 100%{transform:scale(1)} }

/* Popup Card */
.gh-wa-popup {
    background: var(--gh-white);
    border-radius: 18px;
    box-shadow: 0 12px 48px rgba(0,0,0,.22);
    width: 310px;
    margin-bottom: 12px;
    overflow: hidden;
    display: none;
    animation: popupIn .35s cubic-bezier(.175,.885,.32,1.275);
    transform-origin: bottom right;
}

.gh-wa-popup.open { display: block; }

@keyframes popupIn {
    0%   { opacity:0; transform:scale(.7) translateY(20px); }
    100% { opacity:1; transform:scale(1) translateY(0); }
}

/* Popup Header */
.gh-wa-popup-header {
    background: #075E54;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.gh-wa-popup-avatar {
    width: 44px; height: 44px;
    background: #25D366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    color: var(--gh-white);
    flex-shrink: 0;
}

.gh-wa-popup-info { flex: 1; }
.gh-wa-popup-info strong { display: block; color: var(--gh-white); font-size: 14px; font-family: var(--font-body); }
.gh-wa-popup-info span  { color: rgba(255,255,255,.75); font-size: 11.5px; display: flex; align-items: center; gap: 5px; font-family: var(--font-body); }

.gh-wa-online-dot {
    width: 8px; height: 8px;
    background: #4ade80;
    border-radius: 50%;
    flex-shrink: 0;
    animation: pulseDot 1.5s infinite;
}

.gh-wa-close {
    background: transparent;
    border: none;
    color: rgba(255,255,255,.75);
    font-size: 16px;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
    transition: color .2s;
    flex-shrink: 0;
}
.gh-wa-close:hover { color: var(--gh-white); }

/* Popup Body */
.gh-wa-popup-body {
    padding: 16px;
    background: #ECE5DD;
    background-image: 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='%23000' fill-opacity='0.03'%3E%3Cpath d='M0 0h60v60H0z'/%3E%3C/g%3E%3C/svg%3E");
}

/* Chat bubble */
.gh-wa-bubble {
    background: var(--gh-white);
    border-radius: 0 12px 12px 12px;
    padding: 12px 14px;
    margin-bottom: 14px;
    box-shadow: 0 1px 3px rgba(0,0,0,.1);
    position: relative;
    max-width: 90%;
}

.gh-wa-bubble::before {
    content: '';
    position: absolute;
    top: 0; left: -8px;
    border: 8px solid transparent;
    border-right-color: var(--gh-white);
    border-top-color: var(--gh-white);
    border-radius: 2px 0 0 0;
}

.gh-wa-bubble p {
    margin: 0 0 4px;
    font-size: 13.5px;
    color: var(--gh-dark);
    font-family: var(--font-body);
    line-height: 1.5;
}

.gh-wa-bubble p:last-child { margin-bottom: 0; }

/* Option buttons */
.gh-wa-options { display: flex; flex-direction: column; gap: 8px; }

.gh-wa-option {
    background: var(--gh-white);
    border: 1.5px solid #25D366;
    border-radius: 50px;
    padding: 9px 16px;
    font-size: 13px;
    font-weight: 600;
    color: #075E54 !important;
    text-decoration: none !important;
    text-align: center;
    transition: all .2s;
    font-family: var(--font-body);
    display: block;
}

.gh-wa-option:hover {
    background: #25D366;
    color: var(--gh-white) !important;
    transform: scale(1.02);
}

/* Popup Footer */
.gh-wa-popup-footer {
    padding: 10px 16px;
    background: var(--gh-white);
    font-size: 12px;
    color: var(--gh-muted);
    text-align: center;
    border-top: 1px solid var(--gh-border);
    font-family: var(--font-body);
}

/* ── Doctor Avatar (SVG professional placeholder) ─────────── */
.gh-doc-avatar-wrap {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--gh-teal-light) 0%, #C8EAEb 100%);
}

.gh-doc-svg-avatar {
    width: 100%; height: 100%;
    object-fit: cover;
}

/* Doctor avatar generic SVG fallback colours by specialty */
.gh-doc-avatar-male   { background: linear-gradient(135deg,#DBEAFE 0%,#BFDBFE 100%); }
.gh-doc-avatar-female { background: linear-gradient(135deg,#FCE7F3 0%,#FBCFE8 100%); }

/* fa-phone-volume everywhere override – same icon family */
.fa-phone-volume { font-family: 'Font Awesome 6 Free'; font-weight: 900; }

/* ── Updated back-to-top position (above WA button) ──────── */
.gh-back-top {
    bottom: 92px !important;
    right: 22px !important;
}

/* ── Responsive popup ────────────────────────────────────── */
@media (max-width: 480px) {
    .gh-wa-wrapper {
        right: 16px;
        bottom: 16px;
        left: auto;
    }
    .gh-wa-popup {
        /* Fit within viewport: screen width minus 16px margin on each side */
        width: calc(100vw - 32px);
        max-height: 72vh;
        overflow-y: auto;
        border-radius: 14px;
        margin-bottom: 10px;
    }
    .gh-back-top {
        bottom: 88px !important;
        right: 16px !important;
    }
}

/* ── Emergency Hero Phone Item (red variant) ─────────────── */
.gh-hero-phone-item.gh-hero-phone-emerg {
    border-color: rgba(239,68,68,.5);
    background: rgba(239,68,68,.12);
}
.gh-hero-phone-item.gh-hero-phone-emerg i { color: #ef4444; }
.gh-hero-phone-item.gh-hero-phone-emerg .num { color: #fca5a5; }
.gh-hero-phone-item.gh-hero-phone-emerg:hover {
    background: rgba(239,68,68,.25);
    border-color: #ef4444;
}

/* ── Ayushman badge justify fix ──────────────────────────── */
.gh-ayush-badge-box { justify-content: center; }
