/* ==========================================================================
   kartik-front.css — GMH Redesign 2026
   Guru Mauli Super Speciality Hormone & Women's Hospital
   Loaded via wp_enqueue_style('kartik-front-overrides', ...) in functions.php
   ========================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Sora:wght@600;700;800&display=swap");

/* ── GMH Design Tokens ── */
:root {
    --gmh-primary:       #111827;
    --gmh-primary-dark:  #000000;
    --gmh-primary-light: #F3F4F6;
    --gmh-maroon:        #8B1A4A;
    --gmh-maroon-dark:   #6B1238;
    --gmh-maroon-light:  #FDF0F6;
    --gmh-green:         #4D8B31;
    --gmh-green-light:   #EEF6E8;
    --gmh-gold:          #C5940A;
    --gmh-gold-light:    #FEF7E0;
    --gmh-navy:          #0B1F35;
    --gmh-navy-med:      #162D48;
    --gmh-navy-soft:     #1E3D5C;
    --gmh-sky:           #F0F8FF;
    --gmh-body:          #3D4F62;
    --gmh-muted:         #6B7E8F;
    --gmh-border:        #D8E8F2;
    --gmh-white:         #FFFFFF;
    --gmh-shadow-sm:     0 4px 16px rgba(0,0,0,0.08);
    --gmh-shadow-md:     0 8px 32px rgba(0,0,0,0.12);
    --gmh-shadow-lg:     0 16px 48px rgba(0,0,0,0.16);
    --gmh-radius:        14px;
    --gmh-radius-lg:     22px;
    --gmh-transition:    0.22s ease;
}

/* ── Base override for front page ── */
body.theme-3 {
    background: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--gmh-body);
}

.main-wrapper {
    overflow-x: clip;
}

/* Header logo max height */
.header .navbar-brand.logo img {
    max-height: 58px;
    width: auto;
}

/* ── Reset headings for GMH sections ── */
.gmh-hero h1,
.gmh-about h2,
.gmh-conditions h2,
.gmh-stats h2,
.gmh-why h2,
.gmh-why-card h3,
.gmh-team h2,
.gmh-testimonials h2,
.gmh-cta-full h2,
.gmh-clinic h2,
.gmh-faq-form h2,
.gmh-blog h2,
.gmh-section-head h2,
.gmh-about__title,
.gmh-team-card h3,
.gmh-blog-card h3,
.gmh-appt-form-card h3 {
    font-family: 'Sora', sans-serif;
    letter-spacing: -0.025em;
    line-height: 1.12;
}

/* ── Kicker Labels ── */
.gmh-kicker {
    display: inline-flex;
    align-items: center;
    height: 28px;
    padding: 0 14px;
    border-radius: 999px;
    background: #F3F4F6;
    border: 1px solid #D1D5DB;
    color: #374151;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

/* ── Section Headings ── */
.gmh-section-head {
    margin-bottom: 48px;
}
.gmh-section-head h2 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    color: var(--gmh-navy);
    margin: 0 0 14px;
    letter-spacing: -0.025em;
    line-height: 1.12;
}
.gmh-section-head p {
    font-size: 1rem;
    color: var(--gmh-muted);
    max-width: 56ch;
    line-height: 1.7;
    margin: 0;
}
.gmh-section-head--center { text-align: center; }
.gmh-section-head--center p { margin-left: auto; margin-right: auto; }

/* ── Badges ── */
.gmh-badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
}
.gmh-badge--primary {
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    backdrop-filter: blur(6px);
}
.gmh-badge--maroon {
    background: var(--gmh-maroon-light);
    color: var(--gmh-maroon);
    border: 1px solid rgba(139,26,74,0.2);
}
.gmh-badge--light {
    background: var(--gmh-primary-light);
    color: var(--gmh-primary-dark);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ── Shared Buttons ── */
.gmh-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 28px;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 700;
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none !important;
    transition: transform var(--gmh-transition), box-shadow var(--gmh-transition), background var(--gmh-transition), border-color var(--gmh-transition), color var(--gmh-transition);
    white-space: nowrap;
    line-height: 1;
}
.gmh-btn:hover { transform: translateY(-2px); }

.gmh-btn--primary { background: var(--gmh-primary); color: #fff !important; box-shadow: 0 8px 24px rgba(21,102,163,0.32); border-color: var(--gmh-primary); }
.gmh-btn--primary:hover { background: var(--gmh-primary-dark); color: #fff !important; box-shadow: 0 12px 32px rgba(21,102,163,0.40); }

.gmh-btn--whatsapp { background: #25D366; color: #fff !important; box-shadow: 0 8px 24px rgba(37,211,102,0.28); border-color: #25D366; }
.gmh-btn--whatsapp:hover { background: #1da852; color: #fff !important; }

.gmh-btn--outline { background: transparent; border-color: var(--gmh-primary); color: var(--gmh-primary) !important; }
.gmh-btn--outline:hover { background: var(--gmh-primary); color: #fff !important; }

.gmh-btn--white { background: #fff; color: var(--gmh-navy) !important; box-shadow: 0 4px 16px rgba(0,0,0,0.12); border-color: #fff; }
.gmh-btn--white:hover { background: #f0f4f8; color: var(--gmh-navy) !important; }

.gmh-btn--white-outline { background: transparent; border-color: rgba(255,255,255,0.5); color: #fff !important; }
.gmh-btn--white-outline:hover { background: rgba(255,255,255,0.1); color: #fff !important; }

.gmh-btn--sm { min-height: 40px; padding: 0 20px; font-size: 0.82rem; }

/* ════════════════════════════════════════════
   GMH TOP BAR
   ════════════════════════════════════════════ */
.gmh-topbar {
    background: var(--gmh-navy);
    padding: 9px 0;
    font-size: 0.8rem;
    position: relative;
    z-index: 1001;
}
.gmh-topbar__inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.gmh-topbar__info {
    display: flex;
    align-items: center;
    gap: 24px;
    color: rgba(255,255,255,0.75);
}
.gmh-topbar__info a,
.gmh-topbar__info span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: color var(--gmh-transition);
    font-weight: 500;
}
.gmh-topbar__info a:hover { color: #fff; }
.gmh-topbar__info i { font-size: 0.88rem; color: #5BC4EF; }
.gmh-topbar__action .gmh-btn {
    min-height: 30px;
    padding: 0 14px;
    font-size: 0.75rem;
    background: rgba(37,211,102,0.18);
    border: 1px solid rgba(37,211,102,0.35);
    color: #4ADE80 !important;
    box-shadow: none;
}
.gmh-topbar__action .gmh-btn:hover { background: #25D366; color: #fff !important; }

/* Hide old topbar, keep new one */
.gmh-header-wrap .header-topbar-four { display: none !important; }
.gmh-header-wrap .header.header-four { box-shadow: 0 2px 20px rgba(0,0,0,0.08); background: #fff; }

/* Fix: Kartik forces nav links white — override for white header */
@media (min-width: 992px) {
    .gmh-header-wrap .header-four .header-nav .main-nav > li > a,
    .gmh-header-wrap .header-four .header-nav .main-nav .has-submenu.active > a {
        color: #111827 !important;
        font-weight: 600;
    }
    .gmh-header-wrap .header-four .header-nav .main-nav > li > a:hover {
        color: #555 !important;
    }
    .gmh-header-wrap .header-four .header-nav .main-nav > li.active > a {
        color: #111827 !important;
    }
}
/* Mobile menu links */
@media (max-width: 991.98px) {
    .gmh-header-wrap .main-menu-wrapper .main-nav > li > a {
        color: #111827 !important;
    }
}

/* Header Book Appointment button */
.gmh-header-wrap .header-navbar-rht .gmh-btn--primary {
    background: var(--gmh-primary);
    color: #fff !important;
    border-color: var(--gmh-primary);
    font-size: 0.84rem;
    min-height: 42px;
    padding: 0 20px;
    box-shadow: 0 4px 14px rgba(21,102,163,0.28);
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none !important;
}
.gmh-header-wrap .header-navbar-rht .gmh-btn--primary:hover {
    background: var(--gmh-primary-dark);
    color: #fff !important;
    transform: translateY(-1px);
}
.gmh-header-wrap .header-navbar-rht .gmh-btn--outline {
    background: transparent;
    border: 1.5px solid var(--gmh-primary);
    color: var(--gmh-primary) !important;
    font-size: 0.82rem;
    min-height: 42px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none !important;
}

/* ════════════════════════════════════════════
   SECTION 1 — HERO
   ════════════════════════════════════════════ */
/* ──────────────────────────────────────────────
   Hero: Animations
   ────────────────────────────────────────────── */
@keyframes gmh-pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.4; transform: scale(0.75); }
}
@keyframes gmh-float-bounce-1 {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-8px); }
}
@keyframes gmh-float-bounce-2 {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-10px); }
}
@keyframes gmh-float-bounce-3 {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-6px); }
}

/* ──────────────────────────────────────────────
   Hero: Section
   ────────────────────────────────────────────── */
.gmh-hero {
    position: relative;
    background: linear-gradient(135deg, var(--gmh-navy) 0%, #0D2845 55%, #112244 100%);
    overflow: hidden;
    padding: 0 !important;
}
.gmh-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse 55% 70% at 75% 60%, rgba(21,102,163,0.22) 0%, transparent 65%),
        radial-gradient(ellipse 35% 45% at 8% 15%, rgba(139,26,74,0.14) 0%, transparent 60%),
        radial-gradient(ellipse 30% 30% at 50% 100%, rgba(91,196,239,0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

/* ──────────────────────────────────────────────
   Hero: Layout Grid
   ────────────────────────────────────────────── */
.gmh-hero__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 40px;
    align-items: flex-end;
    min-height: 800px;
    position: relative;
    z-index: 2;
}

/* ──────────────────────────────────────────────
   Hero: Left Content
   ────────────────────────────────────────────── */
.gmh-hero__content {
    padding-top: 90px;
    padding-bottom: 80px;
}

/* Eyebrow text */
.gmh-hero__eyebrow {
    font-size: 0.78rem;
    font-weight: 700;
    color: #5BC4EF;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin: 0 0 14px;
}

/* Status pill */
.gmh-hero__status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 100px;
    padding: 6px 14px 6px 10px;
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.02em;
    margin-bottom: 22px;
    backdrop-filter: blur(6px);
}
.gmh-hero__live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22C55E;
    flex-shrink: 0;
    animation: gmh-pulse-dot 1.8s ease-in-out infinite;
}

/* H1 Title */
.gmh-hero__title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2.1rem, 3.6vw, 3.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin: 0 0 22px;
}
.gmh-hero__title-accent {
    color: #5BC4EF;
    font-style: normal;
    display: inline;
}

/* Hero subtitle */
.gmh-hero__sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.65;
    max-width: 52ch;
    margin: 0 0 28px;
}

/* Bullet points */
.gmh-hero__bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.gmh-hero__bullets li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.97rem;
    color: rgba(255,255,255,0.82);
    line-height: 1.4;
}
.gmh-hero__bullets li .isax {
    color: #5BC4EF;
    font-size: 1.05rem;
    flex-shrink: 0;
}

/* Credential chips */
.gmh-hero__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}
.gmh-hero__chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 100px;
    padding: 5px 14px;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255,255,255,0.88);
    letter-spacing: 0.02em;
    white-space: nowrap;
}
.gmh-hero__chip .isax {
    font-size: 0.85rem;
    color: #5BC4EF;
}

/* CTA buttons */
.gmh-hero__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

/* Stats grid — 3 columns × 2 rows */
.gmh-hero__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--gmh-radius);
    backdrop-filter: blur(8px);
    max-width: 560px;
    overflow: hidden;
}
.gmh-hero__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 14px 10px;
    border-right: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
/* Remove right border on 3rd column */
.gmh-hero__stat:nth-child(3n) { border-right: none; }
/* Remove bottom border on last row */
.gmh-hero__stat:nth-child(4),
.gmh-hero__stat:nth-child(5),
.gmh-hero__stat:nth-child(6) { border-bottom: none; }
.gmh-hero__stat strong {
    font-family: 'Sora', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 5px;
}
.gmh-hero__stat span {
    font-size: 0.62rem;
    color: rgba(255,255,255,0.55);
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.3;
}
/* Separator kept for backwards-compat but unused */
.gmh-hero__stat-sep { display: none; }

/* ──────────────────────────────────────────────
   Hero: Right — Image + Glow + Floating Cards
   ────────────────────────────────────────────── */
.gmh-hero__image-wrap {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 800px;
    overflow: visible;
}

/* Radial glow behind image */
.gmh-hero__glow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 420px;
    height: 500px;
    background: radial-gradient(ellipse 70% 60% at 50% 90%, rgba(21,102,163,0.45) 0%, rgba(91,196,239,0.15) 40%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.gmh-hero__image {
    position: relative;
    z-index: 2;
    height: 780px;
    width: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 24px 24px 0 0;
    display: block;
    filter: drop-shadow(0 20px 60px rgba(0,0,0,0.4));
}

/* Floating credential cards — shared */
.gmh-hero__float {
    position: absolute;
    background: rgba(255,255,255,0.96);
    border-radius: 14px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18), 0 2px 8px rgba(0,0,0,0.1);
    z-index: 4;
    min-width: 190px;
    border: 1px solid rgba(21,102,163,0.1);
}
.gmh-hero__float strong {
    display: block;
    font-size: 0.76rem;
    font-weight: 700;
    color: var(--gmh-navy);
    line-height: 1.3;
}
.gmh-hero__float span {
    display: block;
    font-size: 0.65rem;
    color: var(--gmh-muted);
    margin-top: 1px;
}

/* Float icon base */
.gmh-hero__float-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gmh-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--gmh-primary);
    flex-shrink: 0;
}
.gmh-hero__float-icon--maroon {
    background: rgba(139,26,74,0.1);
    color: var(--gmh-maroon);
}
.gmh-hero__float-icon--green {
    background: rgba(77,139,49,0.12);
    color: var(--gmh-green);
}

/* Individual positions + animation delays */
.gmh-hero__float--1 {
    top: 50px;
    right: -20px;
    animation: gmh-float-bounce-1 3.5s ease-in-out infinite;
}
.gmh-hero__float--2 {
    bottom: 200px;
    right: -20px;
    animation: gmh-float-bounce-2 4s ease-in-out infinite;
    animation-delay: 0.6s;
}
.gmh-hero__float--3 {
    bottom: 90px;
    right: -20px;
    animation: gmh-float-bounce-3 3.2s ease-in-out infinite;
    animation-delay: 1.2s;
}

/* Wave */
.gmh-hero__wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 0;
    z-index: 3;
    pointer-events: none;
}
.gmh-hero__wave svg {
    display: block;
    width: 100%;
    height: 60px;
}

/* ════════════════════════════════════════════
   SECTION 2 — SYMPTOMS STRIP
   ════════════════════════════════════════════ */
.gmh-symptoms {
    background: var(--gmh-sky);
    padding: 32px 0 !important;
    border-bottom: 1px solid var(--gmh-border);
}
.gmh-symptoms__container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}
.gmh-symptoms__head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}
.gmh-symptoms__icon {
    width: 34px;
    height: 34px;
    background: #FEF2F2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C0392B;
    font-size: 1rem;
    flex-shrink: 0;
}
.gmh-symptoms__label {
    flex: 1;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--gmh-navy);
    margin: 0;
    min-width: 180px;
}
.gmh-symptoms__cta {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--gmh-primary);
    white-space: nowrap;
    text-decoration: none;
    transition: color var(--gmh-transition);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.gmh-symptoms__cta:hover { color: var(--gmh-primary-dark); text-decoration: none; }
.gmh-symptoms__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.gmh-symptom-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    background: #fff;
    border: 1px solid var(--gmh-border);
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gmh-body);
    cursor: default;
    transition: border-color var(--gmh-transition), color var(--gmh-transition);
}
.gmh-symptom-tag:hover { border-color: var(--gmh-primary); color: var(--gmh-primary); }
.gmh-symptom-tag i { font-size: 0.85rem; color: var(--gmh-primary); }

/* ════════════════════════════════════════════
   SECTION 3 — ABOUT DOCTOR
   ════════════════════════════════════════════ */
.gmh-about {
    background: var(--gmh-white);
    padding: 100px 0 !important;
}
.gmh-about__container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 72px;
    align-items: center;
}
.gmh-about__img-wrap { position: relative; }
.gmh-about__img-main {
    width: 100%;
    height: 560px;
    object-fit: cover;
    object-position: top center;
    border-radius: var(--gmh-radius-lg);
    box-shadow: var(--gmh-shadow-lg);
    display: block;
}
.gmh-about__qual-badge {
    position: absolute;
    top: 26px;
    right: -18px;
    z-index: 2;
}
.gmh-about__exp-card {
    position: absolute;
    bottom: 26px;
    left: -18px;
    background: var(--gmh-primary);
    color: #fff;
    border-radius: var(--gmh-radius);
    padding: 16px 20px;
    text-align: center;
    box-shadow: var(--gmh-shadow-md);
    min-width: 115px;
}
.gmh-about__exp-card strong {
    display: block;
    font-family: 'Sora', sans-serif;
    font-size: 1.9rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
}
.gmh-about__exp-card span {
    font-size: 0.68rem;
    font-weight: 600;
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.gmh-about__title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--gmh-navy);
    margin: 0 0 18px;
    letter-spacing: -0.025em;
    line-height: 1.12;
}
.gmh-about__title em { font-style: normal; color: var(--gmh-primary); }
.gmh-about__creds {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}
.gmh-cred-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 14px;
    border-radius: 999px;
    background: #F3F4F6;
    border: 1px solid #D1D5DB;
    color: #374151;
    font-size: 0.78rem;
    font-weight: 700;
}
.gmh-about__bio {
    font-size: 1rem;
    color: var(--gmh-body);
    line-height: 1.75;
    margin-bottom: 22px;
}
.gmh-check-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 16px;
}
.gmh-check-list li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--gmh-body);
}
.gmh-check-list li i { color: var(--gmh-primary); font-size: 1rem; }
.gmh-about__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

/* ════════════════════════════════════════════
   SECTION 4 — CONDITIONS TREATED
   ════════════════════════════════════════════ */
.gmh-conditions {
    background: var(--gmh-sky);
    padding: 100px 0 !important;
}
.gmh-conditions__container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}
.gmh-conditions__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-bottom: 40px;
}
.gmh-condition-card {
    background: var(--gmh-white);
    border-radius: var(--gmh-radius);
    overflow: hidden;
    box-shadow: var(--gmh-shadow-sm);
    text-decoration: none !important;
    display: flex;
    flex-direction: column;
    transition: transform var(--gmh-transition), box-shadow var(--gmh-transition);
    border: 1px solid var(--gmh-border);
    color: inherit;
}
.gmh-condition-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--gmh-shadow-md);
    text-decoration: none !important;
    color: inherit;
}
.gmh-condition-card__img {
    height: 200px;
    overflow: hidden;
    background: var(--gmh-primary-light);
    position: relative;
}
.gmh-condition-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: transform 0.4s ease;
}
.gmh-condition-card:hover .gmh-condition-card__img img { transform: scale(1.06); }
.gmh-condition-card__body {
    padding: 18px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.gmh-condition-card__body h3 {
    font-family: 'Sora', sans-serif;
    font-size: 0.96rem;
    font-weight: 700;
    color: var(--gmh-navy);
    margin: 0 0 8px;
    letter-spacing: -0.01em;
}
.gmh-condition-card__body p {
    font-size: 0.81rem;
    color: var(--gmh-muted);
    line-height: 1.55;
    margin: 0;
    flex: 1;
}
.gmh-condition-card__more {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gmh-primary);
    margin-top: 14px;
}
.gmh-conditions__footer { text-align: center; }

/* ════════════════════════════════════════════
   SECTION 5 — STATS BAR
   ════════════════════════════════════════════ */
.gmh-stats {
    background: var(--gmh-primary);
    padding: 56px 0 !important;
}
.gmh-stats__container {
  
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    text-align: center;
}
.gmh-stats__item {
    padding: 0 20px;
    border-right: 1px solid rgba(255,255,255,0.18);
}
.gmh-stats__item:last-child { border-right: none; }
.gmh-stats__item strong {
    display: block;
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
}
.gmh-stats__item span {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.72);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ════════════════════════════════════════════
   SECTION 6 — WHY CHOOSE US
   ════════════════════════════════════════════ */
.gmh-why {
    background: var(--gmh-white);
    padding: 100px 0 !important;
}
.gmh-why__container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}
.gmh-why__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}
.gmh-why-card {
    background: var(--gmh-sky);
    border-radius: var(--gmh-radius-lg);
    padding: 34px 26px;
    border: 1px solid var(--gmh-border);
    transition: transform var(--gmh-transition), box-shadow var(--gmh-transition);
}
.gmh-why-card:hover { transform: translateY(-4px); box-shadow: var(--gmh-shadow-md); }
.gmh-why-card__icon {
    width: 54px;
    height: 54px;
    border-radius: var(--gmh-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 18px;
}
.gmh-why-card__icon--blue   { background: var(--gmh-primary-light); color: var(--gmh-primary); }
.gmh-why-card__icon--maroon { background: var(--gmh-maroon-light);  color: var(--gmh-maroon); }
.gmh-why-card__icon--green  { background: var(--gmh-green-light);   color: var(--gmh-green); }
.gmh-why-card__icon--gold   { background: var(--gmh-gold-light);    color: var(--gmh-gold); }
.gmh-why-card h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--gmh-navy);
    margin: 0 0 10px;
}
.gmh-why-card p {
    font-size: 0.86rem;
    color: var(--gmh-muted);
    line-height: 1.65;
    margin: 0;
}

/* ════════════════════════════════════════════
   SECTION 7 — TEAM
   ════════════════════════════════════════════ */
.gmh-team {
    background: var(--gmh-sky);
    padding: 100px 0 !important;
}
.gmh-team__container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}
.gmh-team__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
    max-width: 840px;
    margin: 0 auto;
}
.gmh-team-card {
    background: var(--gmh-white);
    border-radius: var(--gmh-radius-lg);
    overflow: hidden;
    box-shadow: var(--gmh-shadow-sm);
    border: 1px solid var(--gmh-border);
    transition: transform var(--gmh-transition), box-shadow var(--gmh-transition);
}
.gmh-team-card:hover { transform: translateY(-5px); box-shadow: var(--gmh-shadow-md); }
.gmh-team-card__img {
    height: 280px;
    overflow: hidden;
    background: var(--gmh-primary-light);
}
.gmh-team-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    transition: transform 0.5s ease;
}
.gmh-team-card:hover .gmh-team-card__img img { transform: scale(1.04); }
.gmh-team-card__body { padding: 26px; }
.gmh-team-card__body h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gmh-navy);
    margin: 0 0 4px;
}
.gmh-team-card__spec {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--gmh-primary);
    margin: 0 0 16px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.gmh-team-card__creds {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}
.gmh-team-card__creds li {
    font-size: 0.82rem;
    color: var(--gmh-muted);
    padding: 5px 0;
    border-bottom: 1px solid var(--gmh-border);
    display: flex;
    align-items: center;
    gap: 8px;
}
.gmh-team-card__creds li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gmh-primary);
    flex-shrink: 0;
}

/* ════════════════════════════════════════════
   SECTION 8 — TESTIMONIALS
   ════════════════════════════════════════════ */
.gmh-testimonials {
    background: var(--gmh-white);
    padding: 100px 0 !important;
}
.gmh-testimonials__container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}
.gmh-google-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #F1F3FF;
    border: 1px solid #D0D5FF;
    border-radius: 999px;
    padding: 6px 16px;
    font-size: 0.82rem;
    color: #3B49DF;
    font-weight: 700;
    margin-top: 10px;
}
.gmh-stars { color: #F59E0B; letter-spacing: 1px; }
.gmh-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.gmh-testimonial-card {
    background: var(--gmh-sky);
    border-radius: var(--gmh-radius-lg);
    padding: 30px;
    border: 1px solid var(--gmh-border);
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.gmh-testimonial-card__stars { color: #F59E0B; font-size: 1rem; letter-spacing: 1px; }
.gmh-testimonial-card__text {
    font-size: 0.93rem;
    color: var(--gmh-body);
    line-height: 1.7;
    font-style: italic;
    margin: 0;
    flex: 1;
}
.gmh-testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid var(--gmh-border);
    margin-top: auto;
}
.gmh-testimonial-card__avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gmh-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    flex-shrink: 0;
}
.gmh-testimonial-card__author strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--gmh-navy);
}
.gmh-testimonial-card__author span { font-size: 0.74rem; color: var(--gmh-muted); }

/* ════════════════════════════════════════════
   SECTION 9 — CTA FULL-WIDTH
   ════════════════════════════════════════════ */
.gmh-cta-full {
    background: linear-gradient(135deg, var(--gmh-maroon) 0%, var(--gmh-maroon-dark) 100%);
    padding: 80px 0 !important;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.gmh-cta-full__container {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}
.gmh-cta-full h2 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.8rem, 3.2vw, 2.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -0.025em;
    margin: 0 0 16px;
}
.gmh-cta-full p {
    font-size: 1rem;
    color: rgba(255,255,255,0.78);
    line-height: 1.65;
    margin: 0 0 34px;
}
.gmh-cta-full__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ════════════════════════════════════════════
   SECTION 10 — GALLERY
   ════════════════════════════════════════════ */
.gmh-gallery {
    background: var(--gmh-sky);
    padding: 100px 0 !important;
}
.gmh-gallery__container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}
.gmh-gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.gmh-gallery-item {
    position: relative;
    border-radius: var(--gmh-radius);
    overflow: hidden;
    display: block;
    aspect-ratio: 4/3;
    text-decoration: none !important;
}
.gmh-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.gmh-gallery-item:hover img { transform: scale(1.06); }
.gmh-gallery-item__overlay {
    position: absolute;
    inset: 0;
    background: rgba(11,31,53,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--gmh-transition);
    color: #fff;
    font-size: 1.6rem;
}
.gmh-gallery-item:hover .gmh-gallery-item__overlay { opacity: 1; }

/* ════════════════════════════════════════════
   SECTION 11 — CLINIC INFO
   ════════════════════════════════════════════ */
.gmh-clinic {
    background: var(--gmh-white);
    padding: 100px 0 !important;
}
.gmh-clinic__container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}
.gmh-clinic__info h2 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    color: var(--gmh-navy);
    margin: 6px 0 30px;
    letter-spacing: -0.02em;
    line-height: 1.15;
}
.gmh-clinic__detail {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 22px;
}
.gmh-clinic__detail > i {
    width: 40px;
    height: 40px;
    border-radius: var(--gmh-radius);
    background: var(--gmh-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--gmh-primary);
    flex-shrink: 0;
    margin-top: 2px;
}
.gmh-clinic__detail strong {
    display: block;
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--gmh-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 3px;
}
.gmh-clinic__detail p,
.gmh-clinic__detail a {
    font-size: 0.94rem;
    color: var(--gmh-body);
    margin: 0;
    line-height: 1.6;
    text-decoration: none;
}
.gmh-clinic__detail a:hover { color: var(--gmh-primary); }
.gmh-clinic__info .gmh-btn { margin-top: 14px; }
.gmh-clinic__map {
    border-radius: var(--gmh-radius-lg);
    overflow: hidden;
    box-shadow: var(--gmh-shadow-lg);
    border: 1px solid var(--gmh-border);
    aspect-ratio: 1;
    min-height: 380px;
}
.gmh-clinic__map iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: none;
}
.gmh-clinic__map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 380px;
    background: var(--gmh-sky);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: var(--gmh-muted);
    font-size: 0.9rem;
    text-align: center;
    padding: 24px;
}
.gmh-clinic__map-placeholder i {
    font-size: 2.4rem;
    color: var(--gmh-primary);
    opacity: 0.45;
}

/* ════════════════════════════════════════════
   SECTION 12 — FAQ + FORM
   ════════════════════════════════════════════ */
.gmh-faq-form {
    background: var(--gmh-sky);
    padding: 100px 0 !important;
}
.gmh-faq-form__container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: start;
}
.gmh-faq-form__faq h2 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    color: var(--gmh-navy);
    margin: 6px 0 28px;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

/* Accordion */
.gmh-accordion { display: flex; flex-direction: column; gap: 10px; }
.gmh-accordion-item {
    background: var(--gmh-white);
    border: 1px solid var(--gmh-border);
    border-radius: var(--gmh-radius);
    overflow: hidden;
    transition: border-color var(--gmh-transition), box-shadow var(--gmh-transition);
}
.gmh-accordion-item--open {
    border-color: var(--gmh-primary);
    box-shadow: 0 0 0 3px rgba(21,102,163,0.07);
}
.gmh-accordion-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--gmh-navy);
    text-align: left;
    transition: color var(--gmh-transition);
}
.gmh-accordion-trigger:hover { color: var(--gmh-primary); }
.gmh-accordion-trigger i {
    flex-shrink: 0;
    font-size: 1rem;
    color: var(--gmh-muted);
    transition: transform var(--gmh-transition);
}
.gmh-accordion-item--open .gmh-accordion-trigger i {
    transform: rotate(-180deg);
    color: var(--gmh-primary);
}
.gmh-accordion-body {
    padding: 0 20px 16px;
    font-size: 0.88rem;
    color: var(--gmh-body);
    line-height: 1.72;
}
.gmh-accordion-body p { margin: 0; }
.gmh-accordion-body[hidden] { display: none; }

/* Appointment form card */
.gmh-appt-form-card {
    background: var(--gmh-white);
    border-radius: var(--gmh-radius-lg);
    overflow: hidden;
    box-shadow: var(--gmh-shadow-md);
    border: 1px solid var(--gmh-border);
}
.gmh-appt-form-card__header {
    background: var(--gmh-primary);
    padding: 26px 28px 22px;
}
.gmh-appt-form-card__header h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 5px;
    letter-spacing: -0.01em;
}
.gmh-appt-form-card__header p {
    font-size: 0.83rem;
    color: rgba(255,255,255,0.72);
    margin: 0;
}
/* Scope appointment form elements inside the card */
.gmh-appt-form-card .brandadoc-appointment-form-wrapper { padding: 0; background: transparent; border-radius: 0; box-shadow: none; }
.gmh-appt-form-card form,
.gmh-appt-form-card .appointment-form-container { padding: 24px 28px; }
.gmh-appt-form-card .form-group { margin-bottom: 14px; }
.gmh-appt-form-card label { font-size: 0.82rem; font-weight: 600; color: var(--gmh-navy); margin-bottom: 5px; }
.gmh-appt-form-card .form-control,
.gmh-appt-form-card input[type="text"],
.gmh-appt-form-card input[type="email"],
.gmh-appt-form-card input[type="tel"],
.gmh-appt-form-card input[type="date"],
.gmh-appt-form-card select,
.gmh-appt-form-card textarea {
    border-radius: 10px !important;
    border: 1.5px solid var(--gmh-border) !important;
    font-size: 0.88rem !important;
    padding: 11px 14px !important;
    background: var(--gmh-sky) !important;
    width: 100%;
    color: var(--gmh-body) !important;
    outline: none;
    box-shadow: none !important;
    transition: border-color var(--gmh-transition);
}
.gmh-appt-form-card .form-control:focus,
.gmh-appt-form-card input:focus,
.gmh-appt-form-card select:focus,
.gmh-appt-form-card textarea:focus {
    border-color: var(--gmh-primary) !important;
    background: #fff !important;
}
.gmh-appt-form-card button[type="submit"],
.gmh-appt-form-card .btn-submit,
.gmh-appt-form-card .submit-btn,
.gmh-appt-form-card .btn-primary {
    background: var(--gmh-primary) !important;
    border: none !important;
    border-radius: 999px !important;
    font-weight: 700 !important;
    padding: 12px 28px !important;
    width: 100% !important;
    color: #fff !important;
    font-size: 0.9rem !important;
    cursor: pointer;
    transition: background var(--gmh-transition);
    margin-top: 4px;
}
.gmh-appt-form-card button[type="submit"]:hover,
.gmh-appt-form-card .btn-primary:hover {
    background: var(--gmh-primary-dark) !important;
}

/* ════════════════════════════════════════════
   SECTION 13 — BLOG
   ════════════════════════════════════════════ */
.gmh-blog {
    background: var(--gmh-white);
    padding: 100px 0 !important;
}
.gmh-blog__container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}
.gmh-blog__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin-bottom: 40px;
}
.gmh-blog-card {
    background: var(--gmh-white);
    border-radius: var(--gmh-radius-lg);
    overflow: hidden;
    border: 1px solid var(--gmh-border);
    transition: transform var(--gmh-transition), box-shadow var(--gmh-transition);
    display: flex;
    flex-direction: column;
}
.gmh-blog-card:hover { transform: translateY(-5px); box-shadow: var(--gmh-shadow-md); }
.gmh-blog-card__img {
    display: block;
    height: 210px;
    overflow: hidden;
    text-decoration: none;
}
.gmh-blog-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.gmh-blog-card:hover .gmh-blog-card__img img { transform: scale(1.04); }
.gmh-blog-card__body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.gmh-blog-card__meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.76rem;
    color: var(--gmh-muted);
    flex-wrap: wrap;
}
.gmh-blog-card__body h3 {
    font-family: 'Sora', sans-serif;
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--gmh-navy);
    margin: 0 0 10px;
    line-height: 1.42;
    letter-spacing: -0.01em;
}
.gmh-blog-card__body h3 a { color: inherit; text-decoration: none; }
.gmh-blog-card__body h3 a:hover { color: var(--gmh-primary); }
.gmh-blog-card__body p {
    font-size: 0.84rem;
    color: var(--gmh-muted);
    line-height: 1.62;
    margin: 0;
    flex: 1;
}
.gmh-blog-card__more {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gmh-primary);
    margin-top: 14px;
    text-decoration: none;
}
.gmh-blog-card__more:hover { text-decoration: none; color: var(--gmh-primary-dark); }
.gmh-blog__footer { text-align: center; }

/* ════════════════════════════════════════════
   GMH FOOTER
   ════════════════════════════════════════════ */
.gmh-footer {
    background: var(--gmh-navy);
    color: rgba(255,255,255,0.72);
    font-size: 0.88rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.gmh-footer__top {
    padding: 70px 0 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.gmh-footer__grid {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 48px;
}
.gmh-footer__brand .gmh-footer-logo { margin-bottom: 16px; display: inline-block; }
.gmh-footer__brand .gmh-footer-logo a {
    display: inline-block;
    background: rgba(255,255,255,0.97);
    border-radius: 10px;
    padding: 8px 14px;
}
.gmh-footer__brand .gmh-footer-logo img {
    max-height: 52px;
    width: auto;
    display: block;
}
.gmh-footer__brand p {
    line-height: 1.75;
    color: rgba(255,255,255,0.58);
    margin: 0 0 20px;
    max-width: 30ch;
    font-size: 0.86rem;
}
.gmh-footer__social { display: flex; gap: 10px; }
.gmh-footer__social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    text-decoration: none;
    transition: background var(--gmh-transition), color var(--gmh-transition);
}
.gmh-footer__social a:hover { background: var(--gmh-primary); color: #fff; border-color: var(--gmh-primary); }
.gmh-footer-col h4 {
    font-family: 'Sora', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 18px;
}
.gmh-footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.gmh-footer-menu a {
    color: rgba(255,255,255,0.58);
    text-decoration: none;
    font-size: 0.86rem;
    transition: color var(--gmh-transition), padding-left var(--gmh-transition);
    display: flex;
    align-items: center;
    gap: 7px;
}
.gmh-footer-menu a:hover { color: #fff; padding-left: 4px; }
.gmh-footer-menu a .isax { font-size: 0.75rem; color: #5BC4EF; flex-shrink: 0; }
.gmh-footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.gmh-footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255,255,255,0.58);
    font-size: 0.86rem;
}
.gmh-footer-contact li i { color: #5BC4EF; font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.gmh-footer-contact a { color: rgba(255,255,255,0.58); text-decoration: none; transition: color var(--gmh-transition); }
.gmh-footer-contact a:hover { color: #fff; }
.gmh-footer__bottom { padding: 18px 0; }
.gmh-footer__bottom-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.38);
}
.gmh-footer__bottom-inner a { color: rgba(255,255,255,0.38); text-decoration: none; transition: color var(--gmh-transition); }
.gmh-footer__bottom-inner a:hover { color: rgba(255,255,255,0.7); }
.gmh-footer__bottom-links { display: flex; gap: 20px; flex-wrap: wrap; }

/* WhatsApp Float */
.gmh-float-wa {
    position: fixed;
    bottom: 26px;
    right: 26px;
    z-index: 9999;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.55rem;
    box-shadow: 0 4px 18px rgba(37,211,102,0.45);
    text-decoration: none !important;
    transition: transform var(--gmh-transition), box-shadow var(--gmh-transition);
}
.gmh-float-wa:hover { transform: scale(1.12); box-shadow: 0 8px 26px rgba(37,211,102,0.55); color: #fff !important; }

/* Progress wrap (existing Kartik) — keep */
.progress-wrap { position: fixed; right: 28px; bottom: 90px; z-index: 9998; }

/* ════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════ */
@media (max-width: 1199.98px) {
    .gmh-hero__container    { grid-template-columns: 1fr 400px; gap: 24px; min-height: 720px; }
    .gmh-hero__image-wrap   { height: 720px; }
    .gmh-hero__image        { height: 700px; }
    .gmh-hero__float--1     { right: -10px; }
    .gmh-hero__float--2     { right: -10px; }
    .gmh-hero__float--3     { right: -10px; }
    .gmh-about__container   { grid-template-columns: 380px 1fr; gap: 48px; }
    .gmh-conditions__grid   { grid-template-columns: repeat(3, 1fr); }
    .gmh-footer__grid       { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 991.98px) {
    .gmh-hero__container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 50px;
        padding-bottom: 70px;
        min-height: auto;
        align-items: center;
    }
    .gmh-hero__status      { margin: 0 auto 22px; }
    .gmh-hero__bullets     { text-align: left; max-width: 380px; margin: 0 auto 24px; }
    .gmh-hero__chips       { justify-content: center; }
    .gmh-hero__actions     { justify-content: center; }
    .gmh-hero__stats       { max-width: 100%; margin: 0 auto; }
    .gmh-hero__image-wrap  { display: none; }

    .gmh-about__container  { grid-template-columns: 1fr; gap: 40px; }
    .gmh-about__img-wrap   { max-width: 420px; margin: 0 auto; }
    .gmh-about__img-main   { height: 440px; }
    .gmh-about__qual-badge { right: 0; }
    .gmh-about__exp-card   { left: 0; }
    .gmh-check-list        { grid-template-columns: 1fr; }

    .gmh-conditions__grid  { grid-template-columns: repeat(2, 1fr); }

    .gmh-stats__container  { grid-template-columns: repeat(2, 1fr); gap: 28px; }
    .gmh-stats__item       { border-right: none; padding: 0 0 20px; }
    .gmh-stats__item:nth-child(odd)  { border-right: 1px solid rgba(255,255,255,0.18); padding-right: 20px; }
    .gmh-stats__item:last-child      { border-bottom: none; }

    .gmh-why__grid         { grid-template-columns: repeat(2, 1fr); }
    .gmh-team__grid        { grid-template-columns: 1fr; max-width: 420px; }
    .gmh-testimonials__grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .gmh-clinic__container { grid-template-columns: 1fr; gap: 40px; }
    .gmh-clinic__map       { aspect-ratio: 16/9; min-height: auto; }
    .gmh-faq-form__container { grid-template-columns: 1fr; }
    .gmh-blog__grid        { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
    .gmh-gallery__grid     { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767.98px) {
    .gmh-topbar__info      { gap: 12px; flex-wrap: wrap; justify-content: center; }
    .gmh-topbar__inner     { justify-content: center; }
    .gmh-footer__grid      { grid-template-columns: 1fr; }
}

@media (max-width: 575.98px) {
    .gmh-hero__title       { font-size: 1.75rem; }
    .gmh-hero__chips       { gap: 8px; }
    .gmh-hero__chip        { font-size: 0.7rem; padding: 4px 11px; }
    .gmh-hero__bullets li  { font-size: 0.9rem; }
    .gmh-hero__stats       { grid-template-columns: repeat(2, 1fr); max-width: 100%; }
    .gmh-hero__stat:nth-child(3n)   { border-right: 1px solid rgba(255,255,255,0.1); }
    .gmh-hero__stat:nth-child(2n)   { border-right: none; }
    .gmh-hero__stat:nth-child(4),
    .gmh-hero__stat:nth-child(5),
    .gmh-hero__stat:nth-child(6)    { border-bottom: none; }
    .gmh-hero__stat:nth-child(5),
    .gmh-hero__stat:nth-child(6)    { border-bottom: none; }
    .gmh-hero__stat:nth-child(3)    { border-bottom: 1px solid rgba(255,255,255,0.1); }
    .gmh-conditions__grid  { grid-template-columns: 1fr; }
    .gmh-stats__container  { grid-template-columns: 1fr; }
    .gmh-stats__item       { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.15); padding-bottom: 20px; }
    .gmh-stats__item:last-child { border-bottom: none; }
    .gmh-why__grid         { grid-template-columns: 1fr; }
    .gmh-gallery__grid     { grid-template-columns: 1fr; }
    .gmh-cta-full__actions { flex-direction: column; align-items: center; }
    .gmh-about__container  { padding: 0 16px; }
    .gmh-hero__container   { padding: 0 16px; }
    .gmh-hero__content     { padding-top: 48px; padding-bottom: 56px; }
}

/* ══════════════════════════════════════════════════
   INNER PAGE — HERO / BREADCRUMB
   ══════════════════════════════════════════════════ */
.gmh-page-hero {
    background: linear-gradient(135deg, var(--gmh-navy) 0%, #1a2f4a 100%);
    padding: 60px 24px 52px;
    text-align: center;
}
.gmh-page-hero__inner {
    max-width: 760px;
    margin: 0 auto;
}
.gmh-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 14px;
}
.gmh-breadcrumb a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
}
.gmh-breadcrumb a:hover { color: #fff; }
.gmh-breadcrumb span { color: rgba(255,255,255,0.5); }
.gmh-breadcrumb i { font-size: 0.78rem; }
.gmh-page-hero__inner h1 {
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: #fff;
    margin: 0 0 12px;
    line-height: 1.25;
}
.gmh-page-hero__inner p {
    color: rgba(255,255,255,0.72);
    font-size: 1rem;
    line-height: 1.65;
    margin: 0;
}

/* Services page — wider grid */
.gmh-conditions--page .gmh-conditions__container {
    padding: 64px 24px 80px;
}
.gmh-conditions--page .gmh-conditions__grid {
    grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1100px) {
    .gmh-conditions--page .gmh-conditions__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .gmh-conditions--page .gmh-conditions__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .gmh-conditions--page .gmh-conditions__grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════
   INNER PAGE — CTA STRIP
   ══════════════════════════════════════════════════ */
.gmh-page-cta {
    background: var(--gmh-primary);
    padding: 48px 24px;
}
.gmh-page-cta__inner {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}
.gmh-page-cta__inner h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 6px;
}
.gmh-page-cta__inner p {
    color: rgba(255,255,255,0.78);
    font-size: 0.93rem;
    margin: 0;
}
.gmh-page-cta__inner .gmh-btn--primary {
    background: #fff;
    color: var(--gmh-primary);
    border-color: #fff;
    white-space: nowrap;
    flex-shrink: 0;
}
.gmh-page-cta__inner .gmh-btn--primary:hover {
    background: var(--gmh-primary-light);
    border-color: var(--gmh-primary-light);
}
@media (max-width: 640px) {
    .gmh-page-cta__inner { flex-direction: column; text-align: center; align-items: center; }
}

/* ══════════════════════════════════════════════════
   GSC SERVICE ICON CARDS — Home Page & Services List
   ══════════════════════════════════════════════════ */
.gsc-svc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}
.gsc-svc-icon-card {
    background: var(--gmh-white);
    border-radius: var(--gmh-radius);
    padding: 28px 22px 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none !important;
    color: inherit;
    border: 1px solid var(--gmh-border);
    box-shadow: var(--gmh-shadow-sm);
    transition: transform var(--gmh-transition), box-shadow var(--gmh-transition), border-color var(--gmh-transition);
    position: relative;
    overflow: hidden;
}
.gsc-svc-icon-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: currentColor;
    opacity: 0;
    transition: opacity var(--gmh-transition);
}
.gsc-svc-icon-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--gmh-shadow-md);
    text-decoration: none !important;
    color: inherit;
    border-color: transparent;
}
.gsc-svc-icon-card:hover::before { opacity: 1; }

/* Icon box */
.gsc-svc-icon-card__icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 18px;
    flex-shrink: 0;
}

/* Colour variants */
.gsc-icon--blue   { background: #EFF6FF; color: #1D4ED8; }
.gsc-icon--teal   { background: #F0FDFA; color: #0D9488; }
.gsc-icon--purple { background: #F5F3FF; color: #7C3AED; }
.gsc-icon--orange { background: #FFF7ED; color: #EA580C; }
.gsc-icon--rose   { background: #FFF1F2; color: #E11D48; }
.gsc-icon--green  { background: #F0FDF4; color: #15803D; }
.gsc-icon--amber  { background: #FFFBEB; color: #D97706; }

.gsc-svc-icon-card:hover .gsc-icon--blue   { background: #1D4ED8; color: #fff; }
.gsc-svc-icon-card:hover .gsc-icon--teal   { background: #0D9488; color: #fff; }
.gsc-svc-icon-card:hover .gsc-icon--purple { background: #7C3AED; color: #fff; }
.gsc-svc-icon-card:hover .gsc-icon--orange { background: #EA580C; color: #fff; }
.gsc-svc-icon-card:hover .gsc-icon--rose   { background: #E11D48; color: #fff; }
.gsc-svc-icon-card:hover .gsc-icon--green  { background: #15803D; color: #fff; }
.gsc-svc-icon-card:hover .gsc-icon--amber  { background: #D97706; color: #fff; }

/* Top-bar accent colour matching icon */
.gsc-svc-icon-card.gsc-card--blue::before   { color: #1D4ED8; }
.gsc-svc-icon-card.gsc-card--teal::before   { color: #0D9488; }
.gsc-svc-icon-card.gsc-card--purple::before { color: #7C3AED; }
.gsc-svc-icon-card.gsc-card--orange::before { color: #EA580C; }
.gsc-svc-icon-card.gsc-card--rose::before   { color: #E11D48; }
.gsc-svc-icon-card.gsc-card--green::before  { color: #15803D; }
.gsc-svc-icon-card.gsc-card--amber::before  { color: #D97706; }

.gsc-svc-icon-card__title {
    font-family: 'Sora', sans-serif;
    font-size: 0.97rem;
    font-weight: 700;
    color: var(--gmh-navy);
    margin: 0 0 8px;
    line-height: 1.3;
    letter-spacing: -0.01em;
}
.gsc-svc-icon-card__excerpt {
    font-size: 0.81rem;
    color: var(--gmh-muted);
    line-height: 1.58;
    margin: 0;
    flex: 1;
}
.gsc-svc-icon-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.79rem;
    font-weight: 700;
    color: var(--gmh-primary);
    margin-top: 16px;
    transition: gap var(--gmh-transition);
}
.gsc-svc-icon-card:hover .gsc-svc-icon-card__cta { gap: 8px; }

/* Responsive — icon grid */
@media (max-width: 1100px) {
    .gsc-svc-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .gsc-svc-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
@media (max-width: 480px) {
    .gsc-svc-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════
   SINGLE SERVICE DETAIL PAGE
   ══════════════════════════════════════════════════ */

/* Hero strip */
.gsc-svc-hero {
    background: linear-gradient(135deg, var(--gmh-navy) 0%, var(--gmh-navy-soft) 100%);
    padding: 48px 0 52px;
    border-bottom: 4px solid rgba(255,255,255,0.06);
}
.gsc-svc-hero .container { position: relative; }
.gsc-svc-hero__inner {
    display: flex;
    align-items: center;
    gap: 28px;
}
.gsc-svc-hero__icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
    opacity: 0.92;
}
.gsc-svc-hero__text h2 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
    letter-spacing: -0.02em;
}
.gsc-svc-hero__text p {
    color: rgba(255,255,255,0.72);
    font-size: 0.97rem;
    line-height: 1.6;
    margin: 0;
    max-width: 640px;
}

/* Content wrapper */
.gsc-svc-content {
    padding: 10px 0;
}
.gsc-svc-detail { }

/* Section blocks within service detail */
.gsc-svc-overview,
.gsc-svc-indications,
.gsc-svc-process,
.gsc-svc-info,
.gsc-svc-after {
    margin-bottom: 36px;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--gmh-border);
}
.gsc-svc-key-info { margin-bottom: 16px; }

.gsc-svc-overview h2,
.gsc-svc-indications h2,
.gsc-svc-process h2,
.gsc-svc-info h2,
.gsc-svc-after h2,
.gsc-svc-key-info h2 {
    font-family: 'Sora', sans-serif;
    font-size: 1.18rem;
    font-weight: 700;
    color: var(--gmh-navy);
    margin: 0 0 14px;
    letter-spacing: -0.015em;
}
.gsc-svc-overview p,
.gsc-svc-indications p,
.gsc-svc-process p,
.gsc-svc-info p,
.gsc-svc-after p {
    font-size: 0.94rem;
    line-height: 1.7;
    color: var(--gmh-body);
    margin-bottom: 12px;
}
.gsc-svc-overview ul,
.gsc-svc-indications ul,
.gsc-svc-info ul {
    padding-left: 0;
    list-style: none;
    margin: 0;
}
.gsc-svc-overview ul li,
.gsc-svc-indications ul li,
.gsc-svc-info ul li {
    font-size: 0.92rem;
    color: var(--gmh-body);
    padding: 7px 0 7px 28px;
    position: relative;
    line-height: 1.55;
    border-bottom: 1px solid var(--gmh-border);
}
.gsc-svc-overview ul li:last-child,
.gsc-svc-indications ul li:last-child,
.gsc-svc-info ul li:last-child { border-bottom: none; }
.gsc-svc-overview ul li::before,
.gsc-svc-indications ul li::before,
.gsc-svc-info ul li::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%);
    width: 16px; height: 16px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%230D9488'%3E%3Cpath fill-rule='evenodd' d='M10 18a8 8 0 100-16 8 8 0 000 16zm3.857-9.809a.75.75 0 00-1.214-.882l-3.483 4.79-1.88-1.88a.75.75 0 10-1.06 1.061l2.5 2.5a.75.75 0 001.137-.089l4-5.5z' clip-rule='evenodd'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* Procedure steps */
.gsc-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    counter-reset: step;
}
.gsc-step {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid var(--gmh-border);
}
.gsc-step:last-child { border-bottom: none; }
.gsc-step__num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gmh-navy);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Sora', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}
.gsc-step__body h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gmh-navy);
    margin: 0 0 5px;
}
.gsc-step__body p {
    font-size: 0.88rem;
    color: var(--gmh-muted);
    margin: 0;
    line-height: 1.58;
}

/* Key info grid */
.gsc-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.gsc-info-item {
    background: var(--gmh-sky);
    border: 1px solid var(--gmh-border);
    border-radius: 10px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.gsc-info-item i {
    font-size: 1.1rem;
    color: var(--gmh-primary);
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}
.gsc-info-item span {
    display: flex;
    flex-direction: column;
    font-size: 0.82rem;
    color: var(--gmh-body);
    line-height: 1.4;
}
.gsc-info-item strong {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gmh-muted);
    font-weight: 600;
    margin-bottom: 2px;
}

/* Responsive — service detail */
@media (max-width: 768px) {
    .gsc-svc-hero__inner { flex-direction: column; align-items: flex-start; gap: 16px; }
    .gsc-info-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════
   ABOUT PAGE — CREDENTIALS SECTION
   ══════════════════════════════════════════════════ */

/* Credentials grid (4 cards, 2-col) */
.gab-creds__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.gab-cred-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--gmh-sky);
    border: 1px solid var(--gmh-border);
    border-radius: var(--gmh-radius-lg);
    padding: 28px 26px;
    transition: transform var(--gmh-transition), box-shadow var(--gmh-transition);
}
.gab-cred-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--gmh-shadow-md);
}
.gab-cred-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}
.gab-cred-card__body h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--gmh-navy);
    margin: 0 0 4px;
    line-height: 1.3;
}
.gab-cred-card__institute {
    font-size: 0.77rem;
    font-weight: 700;
    color: var(--gmh-primary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0 0 10px !important;
}
.gab-cred-card__body p {
    font-size: 0.87rem;
    color: var(--gmh-muted);
    line-height: 1.65;
    margin: 0;
}

/* Expertise strip grid (2-col on desktop, 4-col effective with flex-wrap) */
.gab-expertise__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.gab-expertise-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--gmh-white);
    border: 1px solid var(--gmh-border);
    border-radius: var(--gmh-radius);
    padding: 16px 18px;
    transition: transform var(--gmh-transition), box-shadow var(--gmh-transition);
}
.gab-expertise-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--gmh-shadow-sm);
}
.gab-expertise-item__icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}
.gab-expertise-item__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.gab-expertise-item__text strong {
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--gmh-navy);
    line-height: 1.3;
}
.gab-expertise-item__text span {
    font-size: 0.74rem;
    color: var(--gmh-muted);
    line-height: 1.4;
}

/* Responsive — about page */
@media (max-width: 1100px) {
    .gab-expertise__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .gab-creds__grid      { grid-template-columns: 1fr; }
    .gab-expertise__grid  { grid-template-columns: repeat(2, 1fr); }
    .gab-cred-card        { flex-direction: column; gap: 14px; }
}
@media (max-width: 480px) {
    .gab-expertise__grid  { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════
   GMH APPOINTMENT PAGE
   ════════════════════════════════════════════════════════════ */

/* Trust strip */
.gmh-appt-trust {
    background: var(--gmh-white);
    border-bottom: 1px solid var(--gmh-border);
}
.gmh-appt-trust__container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: stretch;
}
.gmh-appt-trust-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 24px;
    border-right: 1px solid var(--gmh-border);
}
.gmh-appt-trust-item:last-child { border-right: none; }
.gmh-appt-trust-item__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--gmh-sky);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--gmh-primary);
    flex-shrink: 0;
}
.gmh-appt-trust-item__text strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--gmh-navy);
    margin-bottom: 2px;
    line-height: 1.3;
}
.gmh-appt-trust-item__text span {
    font-size: 0.77rem;
    color: var(--gmh-muted);
    line-height: 1.4;
}

/* Main body */
.gmh-appt-body {
    background: var(--gmh-sky);
    padding: 64px 0 80px;
}
.gmh-appt-body__container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 32px;
    align-items: start;
}

/* Doctor card */
.gmh-appt-doctor-card {
    background: var(--gmh-white);
    border-radius: var(--gmh-radius-lg);
    border: 1px solid var(--gmh-border);
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(11, 31, 53, 0.07);
    margin-bottom: 20px;
}
.gmh-appt-doctor-card__photo {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    position: relative;
}
.gmh-appt-doctor-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}
.gmh-appt-doctor-card__body {
    padding: 20px 22px 22px;
}
.gmh-appt-doctor-card__name {
    font-family: 'Sora', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gmh-navy);
    margin: 0 0 3px;
    letter-spacing: -0.02em;
    line-height: 1.25;
}
.gmh-appt-doctor-card__spec {
    font-size: 0.8rem;
    color: var(--gmh-muted);
    margin: 0 0 18px;
    line-height: 1.5;
}
.gmh-appt-doctor-card__tel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--gmh-primary);
    color: #fff;
    padding: 11px 16px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    transition: background var(--gmh-transition);
    width: 100%;
}
.gmh-appt-doctor-card__tel:hover { background: var(--gmh-primary-dark); color: #fff; }

/* Contact / hours info card */
.gmh-appt-info-card {
    background: var(--gmh-white);
    border-radius: var(--gmh-radius-lg);
    border: 1px solid var(--gmh-border);
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(11, 31, 53, 0.07);
    margin-bottom: 20px;
}
.gmh-appt-info-card__head {
    background: var(--gmh-navy);
    padding: 13px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.gmh-appt-info-card__head i { color: rgba(255,255,255,0.65); font-size: 0.9rem; }
.gmh-appt-info-card__head span {
    font-family: 'Sora', sans-serif;
    font-size: 0.83rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.gmh-appt-info-card__body { padding: 4px 0; }
.gmh-appt-info-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 13px 20px;
    border-bottom: 1px solid var(--gmh-border);
}
.gmh-appt-info-row:last-child { border-bottom: none; }
.gmh-appt-info-row i {
    color: var(--gmh-primary);
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}
.gmh-appt-info-row a,
.gmh-appt-info-row span {
    font-size: 0.84rem;
    color: var(--gmh-body);
    text-decoration: none;
    line-height: 1.5;
}
.gmh-appt-info-row a:hover { color: var(--gmh-primary); }

/* Responsive appointment */
@media (max-width: 1060px) {
    .gmh-appt-body__container { grid-template-columns: 1fr; }
    .gmh-appt-trust__container { flex-wrap: wrap; }
    .gmh-appt-trust-item {
        flex: 0 0 calc(50% - 1px);
        border-bottom: 1px solid var(--gmh-border);
    }
    .gmh-appt-trust-item:last-child { border-bottom: none; }
}
@media (max-width: 580px) {
    .gmh-appt-trust-item {
        flex: 0 0 100%;
        border-right: none;
    }
}

/* ════════════════════════════════════════════════════════════
   GMH CONTACT PAGE
   ════════════════════════════════════════════════════════════ */

/* Info bar — dark strip below hero */
.gmh-contact-info-bar {
    background: var(--gmh-navy);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.gmh-contact-info-bar__container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: stretch;
}
.gmh-contact-info-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 28px 32px;
    border-right: 1px solid rgba(255, 255, 255, 0.10);
    text-decoration: none;
    transition: background 0.2s;
}
.gmh-contact-info-item:last-child { border-right: none; }
a.gmh-contact-info-item:hover { background: rgba(255, 255, 255, 0.05); }
.gmh-contact-info-item__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: #fff;
    flex-shrink: 0;
    transition: background 0.2s;
}
a.gmh-contact-info-item:hover .gmh-contact-info-item__icon {
    background: rgba(255, 255, 255, 0.18);
}
.gmh-contact-info-item__text strong {
    display: block;
    font-family: 'Sora', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 3px;
    line-height: 1.3;
}
.gmh-contact-info-item__text span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.60);
    line-height: 1.4;
}

/* Main body */
.gmh-contact-body {
    padding: 72px 0 80px;
    background: var(--gmh-sky);
}
.gmh-contact-body__container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    align-items: start;
}

/* Section label above form */
.gmh-contact-form-label {
    font-family: 'Sora', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--gmh-navy);
    margin: 0 0 6px;
    letter-spacing: -0.02em;
}
.gmh-contact-form-sublabel {
    font-size: 0.9rem;
    color: var(--gmh-muted);
    margin: 0 0 22px;
}

/* Hours card */
.gmh-hours-card {
    background: var(--gmh-white);
    border-radius: var(--gmh-radius-lg);
    border: 1px solid var(--gmh-border);
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 2px 12px rgba(11, 31, 53, 0.06);
}
.gmh-hours-card__head {
    background: var(--gmh-navy);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.gmh-hours-card__head i { color: rgba(255, 255, 255, 0.65); font-size: 1rem; }
.gmh-hours-card__head h3 {
    font-family: 'Sora', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}
.gmh-hours-card__body { padding: 18px 24px; }
/* Override office-hours shortcode inline styles inside card */
.gmh-hours-card__body .office-hours {
    background: transparent !important;
    padding: 0 !important;
    border-radius: 0 !important;
    margin: 0 !important;
}
.gmh-hours-card__body .office-hours h3 { display: none; }
.gmh-hours-card__body .office-hours td {
    font-size: 0.84rem;
    color: var(--gmh-body);
    padding: 9px 0 !important;
}
.gmh-hours-card__body .office-hours p {
    font-size: 0.78rem !important;
    color: var(--gmh-muted) !important;
    margin: 12px 0 0 !important;
}

/* Map card */
.gmh-map-card {
    border-radius: var(--gmh-radius-lg);
    overflow: hidden;
    border: 1px solid var(--gmh-border);
    box-shadow: 0 2px 12px rgba(11, 31, 53, 0.06);
}
.gmh-map-card iframe {
    width: 100%;
    height: 260px;
    display: block;
    border: none;
}

/* Responsive contact */
@media (max-width: 1060px) {
    .gmh-contact-body__container { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .gmh-contact-info-bar__container { flex-direction: column; }
    .gmh-contact-info-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.10);
        padding: 20px 24px;
    }
    .gmh-contact-info-item:last-child { border-bottom: none; }
}

/* ════════════════════════════════════════════════════════════
   GMH GALLERY PAGE
   ════════════════════════════════════════════════════════════ */

/* Filter pills */
.gmh-gallery-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 36px;
}
.gmh-gallery-filter-btn {
    padding: 8px 22px;
    border-radius: 50px;
    border: 2px solid var(--gmh-border);
    background: #fff;
    font-size: 0.83rem;
    font-weight: 600;
    color: var(--gmh-muted);
    cursor: pointer;
    transition: all 0.22s ease;
    line-height: 1;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.gmh-gallery-filter-btn.active,
.gmh-gallery-filter-btn:hover {
    background: var(--gmh-navy);
    border-color: var(--gmh-navy);
    color: #fff;
}

/* Gallery grid */
.gmh-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Gallery card */
.gmh-gallery-card {
    display: block;
    position: relative;
    border-radius: var(--gmh-radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--gmh-border);
    text-decoration: none;
    box-shadow: 0 2px 16px rgba(11, 31, 53, 0.07);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.gmh-gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(11, 31, 53, 0.14);
}
.gmh-gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}
.gmh-gallery-card:hover img {
    transform: scale(1.07);
}

/* Dark gradient overlay — visible on hover */
.gmh-gallery-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 31, 53, 0.90) 0%, rgba(11, 31, 53, 0.08) 55%, transparent 80%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 22px 20px;
}
.gmh-gallery-card:hover .gmh-gallery-card__overlay {
    opacity: 1;
}
.gmh-gallery-card__category {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 5px;
}
.gmh-gallery-card__title {
    display: block;
    font-family: 'Sora', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.35;
}

/* Zoom icon badge */
.gmh-gallery-card__zoom {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.82rem;
    opacity: 0;
    transition: opacity 0.3s ease, background 0.2s;
}
.gmh-gallery-card:hover .gmh-gallery-card__zoom {
    opacity: 1;
}

/* Responsive gallery */
@media (max-width: 1024px) {
    .gmh-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
    .gmh-gallery-grid { grid-template-columns: 1fr; }
}


/* ==========================================================================
   ACADEMIC — AWARDS · RESEARCH · MEMBERSHIPS · CONFERENCES
   ========================================================================== */

.gmh-academic {
    padding: 5rem 0;
    background: var(--gmh-sky);
}
.gmh-academic__container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ── Stats Row ── */
.gmh-academic__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}
.gmh-academic__stat {
    background: var(--gmh-white);
    border-radius: 1rem;
    padding: 1.75rem 1rem;
    text-align: center;
    box-shadow: var(--gmh-shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    transition: transform 0.25s, box-shadow 0.25s;
}
.gmh-academic__stat:hover {
    transform: translateY(-4px);
    box-shadow: var(--gmh-shadow-md);
}
.gmh-academic__stat strong {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gmh-primary);
    line-height: 1;
}
.gmh-academic__stat span {
    font-size: 0.82rem;
    color: var(--gmh-muted);
    font-weight: 500;
}
.gmh-academic__stat-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 0.25rem;
}
.gmh-academic__stat-icon--gold   { background: var(--gmh-gold-light);    color: var(--gmh-gold); }
.gmh-academic__stat-icon--blue   { background: rgba(15,110,190,.1);       color: #0f6ebe; }
.gmh-academic__stat-icon--maroon { background: var(--gmh-maroon-light);   color: var(--gmh-maroon); }
.gmh-academic__stat-icon--green  { background: var(--gmh-green-light);    color: var(--gmh-green); }

/* ── 2×2 Grid ── */
.gmh-academic__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem;
}
.gmh-academic__col {
    background: var(--gmh-white);
    border-radius: 1.25rem;
    padding: 2rem;
    box-shadow: var(--gmh-shadow-sm);
}
.gmh-academic__col-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gmh-primary);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--gmh-primary-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.gmh-academic__col-title i { color: var(--gmh-maroon); }

/* Awards */
.gmh-award-list { display: flex; flex-direction: column; gap: 1rem; }
.gmh-award-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.gmh-award-item__year {
    background: var(--gmh-maroon);
    color: #fff;
    border-radius: 0.4rem;
    padding: 0.2rem 0.55rem;
    font-size: 0.72rem;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
    margin-top: 0.2rem;
}
.gmh-award-item__body strong {
    display: block;
    font-size: 0.92rem;
    color: var(--gmh-primary);
    font-weight: 700;
    margin-bottom: 0.15rem;
}
.gmh-award-item__body span { font-size: 0.8rem; color: var(--gmh-muted); }

/* Memberships */
.gmh-membership-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}
.gmh-membership-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: #374151;
    line-height: 1.5;
}
.gmh-membership-list li i { color: var(--gmh-green); font-size: 1rem; flex-shrink: 0; margin-top: 0.1rem; }

/* Publications */
.gmh-pub-list { display: flex; flex-direction: column; gap: 1.2rem; }
.gmh-pub-item__journal {
    display: block;
    font-size: 0.72rem;
    color: var(--gmh-maroon);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.2rem;
}
.gmh-pub-item__title {
    font-size: 0.9rem;
    color: var(--gmh-primary);
    font-weight: 600;
    line-height: 1.5;
}

/* Conferences */
.gmh-conf-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}
.gmh-conf-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: #374151;
    line-height: 1.5;
}
.gmh-conf-list li i { color: var(--gmh-gold); font-size: 0.85rem; flex-shrink: 0; margin-top: 0.25rem; }

/* Responsive Academic */
@media (max-width: 991px) {
    .gmh-academic__stats { grid-template-columns: repeat(2, 1fr); }
    .gmh-academic__grid  { grid-template-columns: 1fr; }
}
@media (max-width: 575px) {
    .gmh-academic__stats { grid-template-columns: repeat(2, 1fr); }
}


/* ==========================================================================
   PATIENT JOURNEY — HOW IT WORKS
   ========================================================================== */

.gmh-journey {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--gmh-navy) 0%, #1a3a5c 100%);
    color: #fff;
}
.gmh-journey__container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.gmh-journey .gmh-kicker {
    color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.1);
    border: none;
}
.gmh-journey h2        { color: #fff; }
.gmh-journey .gmh-section-head p { color: rgba(255,255,255,0.72); }

/* Steps row */
.gmh-journey__steps {
    display: flex;
    align-items: stretch;
    gap: 0.5rem;
    margin-top: 3rem;
}
.gmh-journey-step {
    flex: 1;
    text-align: center;
    padding: 2.25rem 1.5rem 2rem;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 1.25rem;
    position: relative;
    transition: background 0.25s, transform 0.25s;
}
.gmh-journey-step:hover {
    background: rgba(255,255,255,0.13);
    transform: translateY(-4px);
}
.gmh-journey-step__arrow {
    color: rgba(255,255,255,0.35);
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    padding: 0 0.25rem;
}
.gmh-journey-step__num {
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(255,255,255,0.07);
    position: absolute;
    top: 0.5rem;
    left: 1rem;
    line-height: 1;
    font-family: var(--gmh-font-heading, 'Sora', sans-serif);
}
.gmh-journey-step__icon {
    width: 64px;
    height: 64px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 1.1rem;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.2);
}
.gmh-journey-step h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.6rem;
}
.gmh-journey-step p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.68);
    line-height: 1.65;
    margin: 0;
}

/* CTA below steps */
.gmh-journey__cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

/* Responsive Journey */
@media (max-width: 991px) {
    .gmh-journey__steps {
        flex-direction: column;
        gap: 1.25rem;
    }
    .gmh-journey-step__arrow {
        transform: rotate(90deg);
        justify-content: center;
    }
}
@media (max-width: 575px) {
    .gmh-journey-step { padding: 1.75rem 1.25rem 1.5rem; }
}


/* ==========================================================================
   INTERVENTIONAL / TERTIARY DOMINANCE SECTION
   ========================================================================== */

.gmh-tertiary {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0a1628 0%, #0B1F35 60%, #102540 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.gmh-tertiary::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(139,26,74,0.18) 0%, transparent 70%);
    pointer-events: none;
}
.gmh-tertiary__container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}
.gmh-tertiary__head {
    text-align: center;
    max-width: 740px;
    margin: 0 auto 3rem;
}
.gmh-tertiary__head h2 {
    color: #fff;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 0.75rem;
}
.gmh-tertiary__head p {
    color: rgba(255,255,255,0.72);
    font-size: 1rem;
    line-height: 1.7;
}
.gmh-kicker--light {
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.65);
    border: 1px solid rgba(255,255,255,0.15);
}

.gmh-tertiary__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}
.gmh-tertiary-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 1.1rem;
    padding: 1.75rem 1.5rem;
    transition: background 0.25s, transform 0.25s, border-color 0.25s;
}
.gmh-tertiary-card:hover {
    background: rgba(255,255,255,0.11);
    border-color: rgba(139,26,74,0.5);
    transform: translateY(-4px);
}
.gmh-tertiary-card__icon {
    width: 52px; height: 52px;
    background: rgba(139,26,74,0.25);
    border-radius: 0.75rem;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    color: #e8799e;
    margin-bottom: 1rem;
}
.gmh-tertiary-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}
.gmh-tertiary-card p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.65;
    margin: 0;
}
.gmh-tertiary__cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    .gmh-tertiary__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
    .gmh-tertiary__grid { grid-template-columns: 1fr; }
}


/* ==========================================================================
   PATIENT OUTCOMES — SUCCESS STORIES
   ========================================================================== */

.gmh-outcomes {
    padding: 5rem 0;
    background: #f8fafc;
}
.gmh-outcomes__container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.gmh-outcomes__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    margin-top: 0.5rem;
}
.gmh-outcome-card {
    background: #fff;
    border-radius: 1.25rem;
    padding: 2rem;
    box-shadow: var(--gmh-shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    position: relative;
    border-top: 4px solid transparent;
    transition: transform 0.25s, box-shadow 0.25s;
}
.gmh-outcome-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--gmh-shadow-md);
}
.gmh-outcome-card:nth-child(1) { border-top-color: var(--gmh-green); }
.gmh-outcome-card:nth-child(2) { border-top-color: var(--gmh-maroon); }
.gmh-outcome-card:nth-child(3) { border-top-color: var(--gmh-gold); }

.gmh-outcome-card__tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.25rem 0.65rem;
    border-radius: 2rem;
    width: fit-content;
}
.gmh-outcome-tag--avoided {
    background: var(--gmh-green-light);
    color: var(--gmh-green);
}
.gmh-outcome-tag--emergency {
    background: var(--gmh-maroon-light);
    color: var(--gmh-maroon);
}
.gmh-outcome-card__icon {
    width: 52px; height: 52px;
    background: var(--gmh-primary-light);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    color: var(--gmh-maroon);
}
.gmh-outcome-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gmh-primary);
    margin: 0;
    line-height: 1.4;
}
.gmh-outcome-card__story {
    font-size: 0.88rem;
    color: var(--gmh-body);
    line-height: 1.7;
    margin: 0;
    flex: 1;
}
.gmh-outcome-card__result {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gmh-green);
    padding-top: 0.75rem;
    border-top: 1px solid var(--gmh-primary-light);
}
.gmh-outcome-card__result i { font-size: 1rem; }

/* Disease tags as links */
.gmh-symptom-tag {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}
.gmh-symptom-tag:hover {
    background: rgba(255,255,255,0.25);
    color: #fff;
}

@media (max-width: 991px) {
    .gmh-outcomes__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
    .gmh-outcomes__grid { grid-template-columns: 1fr; }
}


/* ════════════════════════════════════════════════════════════
   BLOG SINGLE — HERO BANNER
   ════════════════════════════════════════════════════════════ */
.gmh-blog-hero {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: flex-end;
    background-image: var(--blog-hero-img);
    background-size: cover;
    background-position: center top;
    overflow: hidden;
    padding-bottom: 0;
}
.gmh-blog-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(7,20,40,0.35) 0%,
        rgba(7,20,40,0.65) 50%,
        rgba(7,20,40,0.92) 100%
    );
    z-index: 1;
}
.gmh-blog-hero__container {
    position: relative;
    z-index: 2;
    max-width: 860px;
    margin: 0 auto;
    padding: 60px 24px 48px;
    width: 100%;
}
.gmh-blog-hero__breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.65);
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.gmh-blog-hero__breadcrumb a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color 0.2s;
}
.gmh-blog-hero__breadcrumb a:hover { color: #fff; }
.gmh-blog-hero__breadcrumb .isax { font-size: 0.7rem; opacity: 0.5; }
.gmh-blog-hero__meta-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}
.gmh-blog-hero__cat {
    display: inline-block;
    background: var(--gmh-primary);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 12px;
    border-radius: 100px;
    text-decoration: none;
    transition: background 0.2s;
}
.gmh-blog-hero__cat:hover { background: var(--gmh-navy); color: #fff; }
.gmh-blog-hero__readtime {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.7);
}
.gmh-blog-hero__readtime .isax { font-size: 0.85rem; }
.gmh-blog-hero__title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.6rem, 3.2vw, 2.6rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0 0 24px;
}
.gmh-blog-hero__author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.gmh-blog-hero__avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top;
    border: 2px solid rgba(255,255,255,0.4);
    flex-shrink: 0;
}
.gmh-blog-hero__author strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}
.gmh-blog-hero__author span {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
}

/* ════════════════════════════════════════════════════════════
   BLOG SINGLE — LAYOUT GRID
   ════════════════════════════════════════════════════════════ */
.gmh-blog-layout {
    background: #F7FAFD;
    padding: 48px 0 64px;
}
.gmh-blog-layout__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: start;
}

/* ════════════════════════════════════════════════════════════
   BLOG SINGLE — ARTICLE COLUMN
   ════════════════════════════════════════════════════════════ */
.gmh-blog-article {
    background: #fff;
    border-radius: 16px;
    padding: 40px 44px;
    box-shadow: 0 2px 24px rgba(0,0,0,0.06);
}

/* Share bar */
.gmh-blog-share {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}
.gmh-blog-share--bottom {
    margin-top: 36px;
    margin-bottom: 0;
    padding-top: 28px;
    border-top: 1px solid var(--gmh-border);
}
.gmh-blog-share__label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gmh-muted);
    display: flex;
    align-items: center;
    gap: 5px;
    margin-right: 4px;
}
.gmh-blog-share__btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.2s;
}
.gmh-blog-share__btn:hover { opacity: 0.85; transform: translateY(-2px); color: #fff; }
.gmh-share--fb { background: #1877F2; }
.gmh-share--tw { background: #000; }
.gmh-share--wa { background: #25D366; }
.gmh-share--li { background: #0A66C2; }

/* Key takeaway box */
.gmh-blog-takeaway {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: linear-gradient(135deg, #EFF6FF 0%, #E0F2FE 100%);
    border-left: 4px solid var(--gmh-primary);
    border-radius: 0 12px 12px 0;
    padding: 18px 20px;
    margin-bottom: 32px;
}
.gmh-blog-takeaway__icon {
    font-size: 1.4rem;
    color: var(--gmh-primary);
    flex-shrink: 0;
    margin-top: 2px;
}
.gmh-blog-takeaway strong {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gmh-primary);
    margin-bottom: 6px;
}
.gmh-blog-takeaway p {
    font-size: 0.92rem;
    color: var(--gmh-navy);
    line-height: 1.6;
    margin: 0;
}

/* Article body typography */
.gmh-blog-content {
    font-size: 1rem;
    line-height: 1.8;
    color: #374151;
}
.gmh-blog-content h2 {
    font-family: 'Sora', sans-serif;
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--gmh-navy);
    margin: 40px 0 14px;
    padding-top: 8px;
    border-top: 2px solid var(--gmh-border);
    line-height: 1.3;
}
.gmh-blog-content h2:first-child { margin-top: 0; border-top: none; }
.gmh-blog-content h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gmh-navy);
    margin: 28px 0 10px;
}
.gmh-blog-content p {
    margin: 0 0 18px;
}
.gmh-blog-content ul,
.gmh-blog-content ol {
    padding-left: 1.4em;
    margin: 0 0 20px;
}
.gmh-blog-content li {
    margin-bottom: 8px;
    line-height: 1.7;
}
.gmh-blog-content strong { color: var(--gmh-navy); }
.gmh-blog-content em { color: var(--gmh-muted); }
.gmh-blog-content hr {
    border: none;
    border-top: 1px solid var(--gmh-border);
    margin: 36px 0;
}
.gmh-blog-content blockquote {
    border-left: 4px solid var(--gmh-primary);
    background: var(--gmh-sky);
    margin: 28px 0;
    padding: 16px 20px;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: var(--gmh-navy);
}
/* Highlight paragraph lead class */
.gmh-blog-content p.gmh-blog-lead,
.gmh-blog-content .gmh-blog-lead p {
    font-size: 1.08rem;
    color: var(--gmh-navy);
    font-weight: 500;
    line-height: 1.75;
    border-left: 3px solid var(--gmh-primary);
    padding-left: 16px;
    margin-bottom: 28px;
}

/* Tags */
.gmh-blog-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 32px 0 0;
    padding-top: 24px;
    border-top: 1px solid var(--gmh-border);
}
.gmh-blog-tags > .isax {
    color: var(--gmh-muted);
    font-size: 1rem;
    margin-right: 4px;
}
.gmh-blog-tag {
    display: inline-block;
    background: var(--gmh-sky);
    border: 1px solid var(--gmh-border);
    color: var(--gmh-navy);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 100px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.gmh-blog-tag:hover {
    background: var(--gmh-primary);
    color: #fff;
    border-color: var(--gmh-primary);
}

/* Author bio card */
.gmh-blog-author-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: linear-gradient(135deg, var(--gmh-sky) 0%, #fff 100%);
    border: 1px solid var(--gmh-border);
    border-radius: 16px;
    padding: 24px;
    margin: 36px 0 0;
}
.gmh-blog-author-card__img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top;
    flex-shrink: 0;
    border: 3px solid var(--gmh-primary-light);
}
.gmh-blog-author-card__name {
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--gmh-navy);
    margin-bottom: 2px;
}
.gmh-blog-author-card__title {
    font-size: 0.78rem;
    color: var(--gmh-primary);
    font-weight: 600;
    margin-bottom: 10px;
}
.gmh-blog-author-card__bio {
    font-size: 0.86rem;
    color: var(--gmh-muted);
    line-height: 1.6;
    margin: 0 0 14px;
}
.gmh-blog-author-card__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* ════════════════════════════════════════════════════════════
   BLOG SINGLE — SIDEBAR
   ════════════════════════════════════════════════════════════ */
.gmh-blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 24px;
}
.gmh-blog-sidebar__card {
    background: #fff;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.05);
    border: 1px solid var(--gmh-border);
}
.gmh-blog-sidebar__heading {
    font-family: 'Sora', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--gmh-navy);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0 0 16px;
    display: flex;
    align-items: center;
}

/* Doctor CTA card */
.gmh-blog-cta-card__img {
    margin: -24px -24px 16px;
    border-radius: 14px 14px 0 0;
    overflow: hidden;
    height: 180px;
}
.gmh-blog-cta-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}
.gmh-blog-cta-card__body .gmh-kicker { margin-bottom: 6px; }
.gmh-blog-cta-card__body h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--gmh-navy);
    margin: 0 0 10px;
    line-height: 1.4;
}
.gmh-blog-cta-card__body p {
    font-size: 0.83rem;
    color: var(--gmh-muted);
    margin: 0 0 16px;
    line-height: 1.55;
}
.gmh-blog-cta-card__phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--gmh-muted);
    margin-top: 12px;
    justify-content: center;
}
.gmh-blog-cta-card__phone .isax { color: var(--gmh-primary); }
.gmh-blog-cta-card__phone a { color: var(--gmh-navy); text-decoration: none; font-weight: 600; }

/* Fact card */
.gmh-blog-fact-card h4 {
    font-family: 'Sora', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--gmh-navy);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 14px;
    display: flex;
    align-items: center;
}
.gmh-blog-fact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.gmh-blog-fact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.83rem;
    color: var(--gmh-body);
    font-weight: 500;
}
.gmh-blog-fact-list .isax { color: var(--gmh-primary); font-size: 0.95rem; flex-shrink: 0; }

/* Recent posts */
.gmh-blog-recent-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.gmh-blog-recent-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.gmh-blog-recent-thumb {
    width: 62px;
    height: 52px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    display: block;
}
.gmh-blog-recent-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}
.gmh-blog-recent-thumb:hover img { transform: scale(1.06); }
.gmh-blog-recent-title {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gmh-navy);
    text-decoration: none;
    line-height: 1.4;
    transition: color 0.2s;
    margin-bottom: 4px;
}
.gmh-blog-recent-title:hover { color: var(--gmh-primary); }
.gmh-blog-recent-date {
    font-size: 0.72rem;
    color: var(--gmh-muted);
}

/* Category list */
.gmh-blog-cat-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.gmh-blog-cat-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 8px;
    transition: background 0.15s;
}
.gmh-blog-cat-list li:hover { background: var(--gmh-sky); }
.gmh-blog-cat-list a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.84rem;
    color: var(--gmh-body);
    text-decoration: none;
    padding: 7px 10px;
    flex: 1;
    transition: color 0.2s;
}
.gmh-blog-cat-list a:hover { color: var(--gmh-primary); }
.gmh-blog-cat-list .isax { font-size: 0.7rem; color: var(--gmh-primary); }
.gmh-blog-cat-count {
    font-size: 0.72rem;
    font-weight: 700;
    background: var(--gmh-primary-light);
    color: var(--gmh-primary);
    border-radius: 100px;
    padding: 2px 8px;
    margin-right: 6px;
}

/* ════════════════════════════════════════════════════════════
   BLOG SINGLE — RELATED ARTICLES
   ════════════════════════════════════════════════════════════ */
.gmh-blog-related {
    background: var(--gmh-sky);
    padding: 64px 0;
    border-top: 1px solid var(--gmh-border);
}
.gmh-blog-related__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.gmh-blog-related__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 40px;
}
.gmh-related-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    border: 1px solid var(--gmh-border);
    transition: transform 0.25s, box-shadow 0.25s;
    display: flex;
    flex-direction: column;
}
.gmh-related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.gmh-related-card__img {
    height: 190px;
    background-size: cover;
    background-position: center top;
    position: relative;
    flex-shrink: 0;
}
.gmh-related-card__cat {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--gmh-primary);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 3px 10px;
    border-radius: 100px;
}
.gmh-related-card__body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.gmh-related-card__time {
    font-size: 0.72rem;
    color: var(--gmh-muted);
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 8px;
}
.gmh-related-card h3 {
    font-family: 'Sora', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gmh-navy);
    line-height: 1.4;
    margin: 0 0 10px;
}
.gmh-related-card p {
    font-size: 0.82rem;
    color: var(--gmh-muted);
    line-height: 1.6;
    margin: 0 0 16px;
    flex: 1;
}
.gmh-related-card__cta {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gmh-primary);
    display: flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.2s;
}
.gmh-related-card:hover .gmh-related-card__cta { gap: 9px; }

/* ════════════════════════════════════════════════════════════
   BLOG SINGLE — RESPONSIVE
   ════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .gmh-blog-layout__container { grid-template-columns: 1fr 300px; gap: 28px; }
}
@media (max-width: 991px) {
    .gmh-blog-layout__container { grid-template-columns: 1fr; }
    .gmh-blog-sidebar { position: static; }
    .gmh-blog-related__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
    .gmh-blog-hero__container { padding: 40px 16px 36px; }
    .gmh-blog-article { padding: 24px 20px; }
    .gmh-blog-author-card { flex-direction: column; align-items: center; text-align: center; }
    .gmh-blog-author-card__actions { justify-content: center; }
    .gmh-blog-related__grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
}


/* ════════════════════════════════════════════════════════════
   BLOG LIST PAGE — HERO
   ════════════════════════════════════════════════════════════ */
.gmh-blog-list-hero {
    background: linear-gradient(135deg, var(--gmh-navy) 0%, #0D2845 60%, #112244 100%);
    padding: 72px 24px 60px;
    position: relative;
    overflow: hidden;
}
.gmh-blog-list-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 60% at 80% 50%, rgba(21,102,163,0.2) 0%, transparent 65%);
    pointer-events: none;
}
.gmh-blog-list-hero__container {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}
.gmh-blog-list-hero .gmh-kicker--light {
    color: #5BC4EF;
    border-color: rgba(91,196,239,0.3);
    background: rgba(91,196,239,0.1);
    margin-bottom: 16px;
}
.gmh-blog-list-hero h1 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin: 0 0 16px;
}
.gmh-blog-list-hero > div > p {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.65;
    margin: 0 0 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.gmh-blog-list-hero__stats {
    display: inline-flex;
    gap: 0;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 100px;
    overflow: hidden;
}
.gmh-blog-list-hero__stats > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 28px;
    border-right: 1px solid rgba(255,255,255,0.12);
}
.gmh-blog-list-hero__stats > div:last-child { border-right: none; }
.gmh-blog-list-hero__stats strong {
    font-family: 'Sora', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}
.gmh-blog-list-hero__stats span {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 3px;
    font-weight: 600;
}

/* ════════════════════════════════════════════════════════════
   BLOG LIST — FEATURED POST
   ════════════════════════════════════════════════════════════ */
.gmh-blog-featured {
    background: #fff;
    padding: 48px 0 0;
    border-bottom: 1px solid var(--gmh-border);
}
.gmh-blog-featured__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 48px;
}
.gmh-blog-featured__card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 32px rgba(0,0,0,0.1);
    text-decoration: none;
    border: 1px solid var(--gmh-border);
    transition: box-shadow 0.3s, transform 0.3s;
}
.gmh-blog-featured__card:hover {
    box-shadow: 0 16px 56px rgba(0,0,0,0.14);
    transform: translateY(-3px);
}
.gmh-blog-featured__img {
    min-height: 340px;
    background-size: cover;
    background-position: center top;
    position: relative;
}
.gmh-blog-featured__img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 60%, rgba(255,255,255,0.05) 100%);
}
.gmh-blog-featured__cat {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gmh-primary);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    padding: 4px 12px;
    border-radius: 100px;
}
.gmh-blog-featured__badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gmh-gold);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 10px;
    border-radius: 100px;
}
.gmh-blog-featured__body {
    background: #fff;
    padding: 40px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.gmh-blog-featured__meta {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 0.78rem;
    color: var(--gmh-muted);
}
.gmh-blog-featured__meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}
.gmh-blog-featured__body h2 {
    font-family: 'Sora', sans-serif;
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--gmh-navy);
    line-height: 1.3;
    margin: 0 0 14px;
}
.gmh-blog-featured__body p {
    font-size: 0.92rem;
    color: var(--gmh-muted);
    line-height: 1.7;
    margin: 0 0 24px;
}
.gmh-blog-featured__cta {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--gmh-primary);
    transition: gap 0.2s;
}
.gmh-blog-featured__card:hover .gmh-blog-featured__cta { gap: 12px; }

/* ════════════════════════════════════════════════════════════
   BLOG LIST — MAIN SECTION
   ════════════════════════════════════════════════════════════ */
.gmh-blog-main {
    background: #F7FAFD;
    padding: 48px 0 72px;
}
.gmh-blog-main__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Category filter tabs */
.gmh-blog-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 36px;
}
.gmh-blog-filter__tab {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 100px;
    border: 1.5px solid var(--gmh-border);
    background: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gmh-body);
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
}
.gmh-blog-filter__tab span {
    font-size: 0.7rem;
    font-weight: 700;
    background: var(--gmh-sky);
    color: var(--gmh-muted);
    border-radius: 100px;
    padding: 1px 7px;
    transition: background 0.2s, color 0.2s;
}
.gmh-blog-filter__tab:hover,
.gmh-blog-filter__tab--active {
    background: var(--gmh-primary);
    border-color: var(--gmh-primary);
    color: #fff;
}
.gmh-blog-filter__tab--active span,
.gmh-blog-filter__tab:hover span {
    background: rgba(255,255,255,0.25);
    color: #fff;
}

/* Inner 2-col: grid + sidebar */
.gmh-blog-main__inner {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 36px;
    align-items: start;
}

/* Post cards grid */
.gmh-blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.gmh-blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    border: 1px solid var(--gmh-border);
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.25s, box-shadow 0.25s;
}
.gmh-blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.1);
}
.gmh-blog-card__img {
    height: 180px;
    background-size: cover;
    background-position: center top;
    position: relative;
    flex-shrink: 0;
}
.gmh-blog-card__cat {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--gmh-primary);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 3px 10px;
    border-radius: 100px;
}
.gmh-blog-card__body {
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.gmh-blog-card__meta {
    display: flex;
    gap: 12px;
    font-size: 0.72rem;
    color: var(--gmh-muted);
    margin-bottom: 10px;
}
.gmh-blog-card__meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}
.gmh-blog-card h3 {
    font-family: 'Sora', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--gmh-navy);
    line-height: 1.4;
    margin: 0 0 8px;
    transition: color 0.2s;
}
.gmh-blog-card:hover h3 { color: var(--gmh-primary); }
.gmh-blog-card p {
    font-size: 0.8rem;
    color: var(--gmh-muted);
    line-height: 1.6;
    margin: 0 0 14px;
    flex: 1;
}
.gmh-blog-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid var(--gmh-border);
    margin-top: auto;
}
.gmh-blog-card__author {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.72rem;
    color: var(--gmh-muted);
    font-weight: 600;
}
.gmh-blog-card__author img {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top;
}
.gmh-blog-card__cta {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gmh-primary);
    display: flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.2s;
}
.gmh-blog-card:hover .gmh-blog-card__cta { gap: 7px; }

/* Empty state */
.gmh-blog-empty {
    text-align: center;
    padding: 60px 24px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--gmh-border);
}
.gmh-blog-empty .isax { font-size: 3rem; color: var(--gmh-border); margin-bottom: 16px; display: block; }
.gmh-blog-empty h3 { font-size: 1.2rem; color: var(--gmh-navy); margin: 0 0 8px; }
.gmh-blog-empty p  { font-size: 0.9rem; color: var(--gmh-muted); margin: 0 0 20px; }

/* Pagination */
.gmh-blog-pagination {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 36px;
    justify-content: center;
}
.gmh-blog-pagination__item a,
.gmh-blog-pagination__item span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 16px;
    border-radius: 8px;
    border: 1.5px solid var(--gmh-border);
    background: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gmh-navy);
    text-decoration: none;
    transition: all 0.2s;
}
.gmh-blog-pagination__item a:hover { background: var(--gmh-primary); border-color: var(--gmh-primary); color: #fff; }
.gmh-blog-pagination__item .current { background: var(--gmh-primary); border-color: var(--gmh-primary); color: #fff; }

/* Tag cloud */
.gmh-blog-tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* ════════════════════════════════════════════════════════════
   BLOG LIST — RESPONSIVE
   ════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .gmh-blog-main__inner { grid-template-columns: 1fr 280px; }
}
@media (max-width: 991px) {
    .gmh-blog-featured__card { grid-template-columns: 1fr; }
    .gmh-blog-featured__img { min-height: 240px; }
    .gmh-blog-main__inner  { grid-template-columns: 1fr; }
    .gmh-blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .gmh-blog-grid { grid-template-columns: 1fr; }
    .gmh-blog-list-hero__stats { flex-direction: column; border-radius: 16px; }
    .gmh-blog-list-hero__stats > div { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); }
    .gmh-blog-list-hero__stats > div:last-child { border-bottom: none; }
    .gmh-blog-featured__body { padding: 24px; }
}
