/* ==========================================================================
   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
   ════════════════════════════════════════════ */
.gmh-hero {
    position: relative;
    background: linear-gradient(135deg, var(--gmh-navy) 0%, var(--gmh-navy-soft) 60%, #1A4A72 100%);
    overflow: hidden;
    padding: 0 !important;
}
.gmh-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse 60% 60% at 80% 50%, rgba(21,102,163,0.25) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 10% 20%, rgba(139,26,74,0.12) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}
.gmh-hero__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 520px;
    gap: 32px;
    align-items: flex-end;
    min-height: 760px;
    position: relative;
    z-index: 2;
}
.gmh-hero__content {
    padding-top: 80px;
    padding-bottom: 80px;
}
.gmh-hero__badge { margin-bottom: 20px; }
.gmh-hero__title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2rem, 3.8vw, 3.1rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin: 0 0 12px;
}
.gmh-hero__title em { font-style: normal; color: #5BC4EF; }
.gmh-hero__tagline {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
    margin: 0 0 10px;
    font-style: italic;
    letter-spacing: 0.02em;
}
.gmh-hero__sub {
    font-size: 1.02rem;
    color: rgba(255,255,255,0.78);
    line-height: 1.65;
    max-width: 50ch;
    margin: 0 0 32px;
}
.gmh-hero__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.gmh-hero__stats {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--gmh-radius);
    padding: 18px 24px;
    backdrop-filter: blur(8px);
    max-width: 560px;
    margin-top: 2px;
}
.gmh-hero__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    min-width: 100px;
}
.gmh-hero__stat strong {
    font-family: 'Sora', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 4px;
}
.gmh-hero__stat span {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.58);
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.gmh-hero__stat-sep {
    width: 1px;
    height: 38px;
    background: rgba(255,255,255,0.14);
    margin: 0 4px;
    flex-shrink: 0;
}

/* Hero image */
.gmh-hero__image-wrap {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 760px;
    overflow: visible;
}
.gmh-hero__image-ring {
    display: none;
}
.gmh-hero__image {
    position: relative;
    z-index: 2;
    height: 740px;
    width: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 20px 20px 0 0;
    display: block;
}
.gmh-hero__cred-card {
    position: absolute;
    bottom: 40px;
    left: -10px;
    background: rgba(255,255,255,0.95);
    border-radius: var(--gmh-radius);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--gmh-shadow-md);
    z-index: 3;
    max-width: 230px;
    border: 1px solid rgba(21,102,163,0.12);
}
.gmh-hero__cred-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--gmh-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--gmh-primary);
    flex-shrink: 0;
}
.gmh-hero__cred-card strong {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--gmh-navy);
    line-height: 1.3;
}
.gmh-hero__cred-card span {
    font-size: 0.68rem;
    color: var(--gmh-muted);
}

/* 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 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; }
.gmh-footer__brand .gmh-footer-logo img {
    max-height: 56px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
}
.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: block;
}
.gmh-footer-menu a:hover { color: #fff; padding-left: 4px; }
.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 420px; gap: 24px; min-height: 680px; }
    .gmh-hero__image-wrap   { height: 680px; }
    .gmh-hero__image        { height: 660px; }
    .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__sub         { margin-left: auto; margin-right: auto; }
    .gmh-hero__actions     { justify-content: center; }
    .gmh-hero__stats       { max-width: 100%; margin: 0 auto; }
    .gmh-hero__image-wrap  { display: none; } /* hidden on mobile — image shown in hero content area only */

    .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__stats       { flex-direction: column; gap: 14px; align-items: stretch; padding: 16px 18px; }
    .gmh-hero__stat        { flex-direction: row; justify-content: space-between; align-items: center; }
    .gmh-hero__stat-sep    { width: 100%; height: 1px; margin: 0; }
    .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; }
}
