/* ============================================================
   VERMA HOSPITAL — COMPONENT & LAYOUT STYLES
   Designed with Taste & Clinical Precision (60:30:10 System)
   Editorial, Human-Crafted, Anti-Slop Architecture
   ============================================================ */

/* Reset & Box Model */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body, 'Inter', -apple-system, BlinkMacSystemFont, sans-serif);
  font-size: var(--fs-body, 1rem);
  line-height: 1.6;
  color: var(--c-ink-900, #072226);
  background-color: var(--c-bg-primary, #FAFCFC);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display, 'Helvetica Now', 'Helvetica Neue', Arial, sans-serif);
  color: var(--c-ink-900, #072226);
  margin: 0 0 var(--sp-3, 12px);
  letter-spacing: -0.015em;
  line-height: 1.25;
}

p { margin: 0 0 var(--sp-4, 16px); }
p:last-child { margin-bottom: 0; }
a { color: var(--c-accent-dark, #006C75); text-decoration: none; transition: color 0.2s ease; }
a:hover, a:focus { color: var(--c-accent, #00A4B4); }

.container {
  max-width: var(--container-width, 1200px);
  margin: 0 auto;
  padding: 0 var(--sp-4, 16px);
}

.text-center { text-align: center; }

/* ============================================================
   TWO-TIER RESPONSIVE HEADER SYSTEM
   ============================================================ */

.vh-site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  box-shadow: 0 2px 12px rgba(7, 34, 38, 0.08);
}

/* --- MOBILE QUICK TOPBAR (< 768px) --- */
.vh-mobile-topbar {
  display: none;
  background: var(--c-ink-900, #072226);
  color: #fff;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.vh-mobile-topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.vh-mobile-topbar__brand {
  display: flex;
  align-items: center;
  gap: 8px;
}
.vh-badge-mark {
  background: var(--c-accent, #00A4B4);
  color: #fff;
  font-weight: 800;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}
.vh-badge-tagline {
  font-size: 11px;
  color: #8FC7CC;
  font-weight: 500;
}
.vh-mobile-topbar__actions {
  display: flex;
  align-items: center;
  gap: 6px;
}
.vh-btn-pill-xs {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.vh-btn-pill-xs--outline {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
}
.vh-btn-pill-xs--outline:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.vh-icon-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: transform 0.15s ease;
}
.vh-icon-btn:hover { transform: scale(1.08); }
.vh-icon-btn--phone { background: var(--c-ink-700, #0B3A40); border: 1px solid rgba(255,255,255,0.2); }
.vh-icon-btn--emergency { background: var(--c-error, #C4453A); }
.vh-icon-btn--whatsapp { background: #25D366; }

/* --- TIER 1: BRANDING & PRIMARY ACTIONS (White Background) --- */
.vh-tier-primary {
  background: #FFFFFF;
  border-bottom: 1px solid var(--c-border, #DCE7E8);
  padding: 12px 0;
}
.vh-tier-primary__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.vh-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.vh-logo__img {
  height: 50px;
  width: auto;
  max-width: 240px;
  display: block;
  object-fit: contain;
  transition: transform 0.2s ease;
}
.vh-logo:hover .vh-logo__img {
  transform: scale(1.02);
}
.vh-logo__mark {
  width: 44px;
  height: 44px;
  background: var(--c-ink-700, #0B3A40);
  color: #FFFFFF;
  border: 2px solid var(--c-accent, #00A4B4);
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: -0.02em;
}
.vh-logo__text {
  display: flex;
  flex-direction: column;
}
.vh-logo__title {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 700;
  color: var(--c-ink-900, #072226);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.vh-logo__subtitle {
  font-size: 0.78rem;
  color: var(--c-muted, #5A7377);
  font-weight: 500;
  margin-top: 1px;
}

.vh-tier-primary__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.vh-btn {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 9px 18px;
  border-radius: var(--radius-sm, 6px);
  border: 1.5px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.vh-btn--outline-teal {
  background: transparent;
  color: var(--c-ink-700, #0B3A40);
  border-color: var(--c-border, #DCE7E8);
}
.vh-btn--outline-teal:hover {
  background: var(--c-accent-tint-10, #E3F5F6);
  border-color: var(--c-accent, #00A4B4);
  color: var(--c-accent-dark, #006C75);
}

.vh-btn--peacock {
  background: var(--c-accent, #00A4B4);
  color: #FFFFFF;
}
.vh-btn--peacock:hover {
  background: var(--c-accent-dark, #006C75);
  color: #FFFFFF;
}

.vh-btn--emergency {
  background: var(--c-error, #C4453A);
  color: #FFFFFF;
}
.vh-btn--emergency:hover {
  background: #A8352B;
  color: #FFFFFF;
}

.vh-btn--lg {
  padding: 13px 24px;
  font-size: 0.95rem;
  font-weight: 700;
}

.vh-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.vh-icon-link--wa {
  color: #25D366;
  background: #E8F8F0;
}
.vh-icon-link--wa:hover {
  transform: scale(1.08);
  background: #25D366;
  color: #FFFFFF;
}

.vh-hamburger-toggle {
  display: none;
  background: transparent;
  border: 1.5px solid var(--c-border, #DCE7E8);
  border-radius: var(--radius-sm, 6px);
  padding: 8px 10px;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
}
.vh-hamburger-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-ink-700, #0B3A40);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* --- TIER 2: PRIMARY NAVIGATION BAR --- */
.vh-tier-nav {
  background: var(--c-ink-700, #0B3A40);
  color: #FFFFFF;
}
.vh-tier-nav__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.vh-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 2px;
}
.vh-nav-item {
  position: relative;
}
.vh-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 12px 14px;
  color: #E3F5F6;
  font-weight: 500;
  font-size: 0.92rem;
  text-decoration: none;
  transition: all 0.2s ease;
  border-bottom: 3px solid transparent;
}
.vh-nav-link:hover,
.vh-nav-item:hover > .vh-nav-link {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.08);
  border-bottom-color: var(--c-accent, #00A4B4);
}
.vh-caret {
  transition: transform 0.2s ease;
}
.vh-nav-item:hover .vh-caret {
  transform: rotate(180deg);
}

/* Dropdown Menu (Clean Text Submenus) */
.vh-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #FFFFFF;
  min-width: 240px;
  box-shadow: 0 12px 32px rgba(7, 34, 38, 0.16);
  border-radius: 0 0 var(--radius-md, 10px) var(--radius-md, 10px);
  border: 1px solid var(--c-border, #DCE7E8);
  border-top: 3px solid var(--c-accent, #00A4B4);
  list-style: none;
  margin: 0;
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 1100;
  white-space: nowrap;
}
.vh-nav-item:hover .vh-dropdown,
.vh-nav-item:focus-within .vh-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.vh-dropdown li a {
  display: block;
  padding: 10px 20px;
  color: var(--c-ink-900, #072226);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.vh-dropdown li a:hover {
  background: var(--c-accent-tint-10, #E3F5F6);
  color: var(--c-accent-dark, #006C75);
}

/* Tier 2 Right Controls */
.vh-tier-nav__right {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
  flex-shrink: 0;
}
.vh-nav-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 500;
  color: #CFE9EB;
  background: rgba(255, 255, 255, 0.12);
  padding: 6px 14px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.vh-nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #FFFFFF;
  text-decoration: none;
  padding: 7px 18px;
  background: var(--c-accent, #00A4B4);
  border-radius: 20px;
  transition: all 0.2s ease;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.vh-nav-phone:hover {
  background: var(--c-accent-dark, #006C75);
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* ============================================================
   MOBILE OFFCANVAS DRAWER MENU
   ============================================================ */

.vh-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 34, 38, 0.65);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 2000;
}
.vh-drawer-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.vh-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 360px;
  background: var(--c-ink-900, #072226);
  color: #FFFFFF;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.3);
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2100;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.vh-drawer.is-open {
  transform: translateX(0);
}

.vh-drawer__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.vh-drawer__brand {
  display: flex;
  align-items: center;
}
.vh-drawer__logo-link {
  display: inline-block;
}
.vh-drawer__logo-img {
  height: 40px;
  width: auto;
  max-width: 180px;
  display: block;
  object-fit: contain;
}
.vh-drawer__brand-text {
  display: flex;
  flex-direction: column;
}
.vh-drawer__brand-text strong {
  font-size: 0.95rem;
  color: #FFFFFF;
}
.vh-drawer__brand-text span {
  font-size: 0.75rem;
  color: #8FC7CC;
}
.vh-drawer__close {
  background: transparent;
  border: none;
  color: #CFE9EB;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}
.vh-drawer__close:hover {
  color: #FFFFFF;
}

.vh-drawer__actions {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.vh-btn--full {
  width: 100%;
}

.vh-drawer__nav {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.vh-drawer__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.vh-drawer__link,
.vh-drawer__accordion-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 12px 20px;
  color: #E3F5F6;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.vh-drawer__link:hover,
.vh-drawer__accordion-toggle:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
}
.vh-drawer__caret {
  transition: transform 0.2s ease;
}
.vh-drawer__accordion-toggle[aria-expanded="true"] .vh-drawer__caret {
  transform: rotate(180deg);
}

.vh-drawer__sublist {
  list-style: none;
  margin: 0;
  padding: 4px 0 8px;
  background: rgba(0, 0, 0, 0.25);
}
.vh-drawer__sublist li a {
  display: block;
  padding: 8px 20px 8px 36px;
  color: #CFE9EB;
  font-size: 0.86rem;
  text-decoration: none;
  transition: color 0.15s ease;
}
.vh-drawer__sublist li a:hover {
  color: var(--c-accent, #00A4B4);
}

.vh-drawer__doctors {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.vh-drawer__section-title {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8FC7CC;
  margin-bottom: 12px;
}
.vh-drawer__doc-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm, 6px);
  padding: 10px 14px;
  margin-bottom: 10px;
}
.vh-drawer__doc-card:last-child { margin-bottom: 0; }
.vh-drawer__doc-info strong {
  display: block;
  font-size: 0.88rem;
  color: #FFFFFF;
}
.vh-drawer__doc-info span {
  display: block;
  font-size: 0.75rem;
  color: #8FC7CC;
  margin-top: 1px;
}
.vh-drawer__doc-links {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.vh-mini-call {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--c-accent-tint-20, #C6EBEE);
  text-decoration: none;
}
.vh-mini-wa {
  font-size: 0.78rem;
  font-weight: 600;
  color: #25D366;
  text-decoration: none;
}

.vh-drawer__footer {
  padding: 16px 20px;
  margin-top: auto;
  font-size: 0.75rem;
  color: #8FC7CC;
  line-height: 1.5;
}

/* ============================================================
   HERO SECTION: Exact Reference Layout
   Seamless Physician Duo + High-Conversion Content Column
   ============================================================ */

.vh-hero {
  background: linear-gradient(180deg, #F0F6F7 0%, #FAFCFC 100%);
  padding: 12px 0 0;
  overflow: hidden;
  border-bottom: 1px solid var(--c-border, #DCE7E8);
}

.vh-hero .container {
  max-width: 1300px;
}

.vh-hero__layout {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ---- Left: Content ---- */
.vh-hero__content {
  display: flex;
  flex-direction: column;
  align-self: center;
  padding: 16px 0;
}

.vh-hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.5vw, 2.4rem);
  font-weight: 800;
  color: var(--c-ink-900, #072226);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin: 0 0 12px;
}
.vh-title-line {
  display: block;
  white-space: nowrap;
}

.vh-hero__lead {
  font-size: clamp(0.92rem, 1.1vw, 0.98rem);
  color: var(--c-ink-700, #0B3A40);
  line-height: 1.6;
  margin: 0 0 18px;
  max-width: 500px;
}

.vh-hero__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.vh-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--c-accent, #00A4B4);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.96rem;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
}
.vh-btn-primary:hover {
  background: var(--c-ink-700, #0B3A40);
  transform: translateY(-1px);
}

.vh-btn-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  background: #FFFFFF;
  border: 1.5px solid var(--c-border, #DCE7E8);
  color: var(--c-ink-900, #072226);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.vh-btn-call:hover {
  border-color: var(--c-accent, #00A4B4);
  color: var(--c-accent-dark, #006C75);
}

.vh-hero__footnote {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--c-muted, #5A7377);
  flex-wrap: wrap;
}
.vh-hero__footnote strong {
  color: var(--c-ink-900, #072226);
}
.vh-hero__footnote-sep {
  color: var(--c-border, #DCE7E8);
  font-weight: 700;
}

/* ---- Right: Physician Duo (Equal Height Guarantee) ---- */
.vh-hero__doctors {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  width: 100%;
  padding: 0 8px;
}

.vh-hero__doc-img {
  position: relative;
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 280px;
}
.vh-hero__doc-img img {
  height: 100%;
  width: auto;
  max-width: none;
  display: block;
  object-fit: contain;
  object-position: bottom center;
}

/* Dr. Neha on left (Equal dimensions) */
.vh-hero__doc-img--neha {
  z-index: 1;
  margin-right: -40px;
}
.vh-hero__doc-img--neha img {
  filter: drop-shadow(0 10px 24px rgba(7, 34, 38, 0.1));
}

/* Dr. Amit on right in foreground (Equal dimensions) */
.vh-hero__doc-img--amit {
  z-index: 2;
}
.vh-hero__doc-img--amit img {
  filter: drop-shadow(0 14px 28px rgba(7, 34, 38, 0.14));
}

/* ---- Trust Bar ---- */
.vh-trust-bar {
  background: var(--c-ink-900, #072226);
  padding: 18px 0;
  position: relative;
  z-index: 5;
}
.vh-trust-bar__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.vh-trust-item {
  text-align: center;
}
.vh-trust-item strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.01em;
}
.vh-trust-item span {
  display: block;
  font-size: 0.72rem;
  color: #7AABB0;
  font-weight: 500;
  margin-top: 2px;
}

/* ============================================================
   RESPONSIVE — Hero, Header & Trust Bar
   Anti-Slop, High-Taste Mobile Architecture
   ============================================================ */

@media (max-width: 640px) {
  .vh-title-line {
    white-space: normal;
  }
}

@media (min-width: 768px) {
  .vh-trust-bar__inner {
    grid-template-columns: repeat(4, 1fr);
  }
  .vh-hero__doc-img {
    height: 340px;
  }
  .vh-hero__doc-img--neha {
    margin-right: -60px;
  }
}

@media (min-width: 992px) {
  .vh-hero {
    padding: 12px 0 0;
  }
  .vh-hero__layout {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 20px;
    align-items: end;
  }
  .vh-hero__content {
    align-self: center;
    padding: 24px 0;
  }
  .vh-hero__doctors {
    justify-content: flex-end;
    padding: 0;
    margin-bottom: -3px;
  }
  .vh-hero__doc-img {
    height: 380px;
  }
  .vh-hero__doc-img--neha {
    margin-right: -80px;
  }
}

@media (min-width: 1200px) {
  .vh-hero {
    padding: 16px 0 0;
  }
  .vh-hero__layout {
    grid-template-columns: 1.18fr 1fr;
    gap: 28px;
  }
  .vh-hero__content {
    align-self: center;
    padding: 28px 0;
  }
  .vh-hero__doc-img {
    height: 420px;
  }
  .vh-hero__doc-img--neha {
    margin-right: -100px;
  }
}

/* ---- Mobile View (< 768px) ---- */
@media (max-width: 768px) {
  .vh-mobile-topbar {
    display: block;
  }
  .vh-tier-nav {
    display: none;
  }
  .vh-tier-primary__actions {
    display: none;
  }
  .vh-hamburger-toggle {
    display: flex;
  }

  .vh-tier-primary {
    padding: 10px 0;
    background: #FFFFFF;
  }
  .vh-logo__img {
    height: 38px;
    max-width: 175px;
  }
  .vh-drawer__logo-img {
    height: 38px;
    max-width: 175px;
  }
  .vh-logo__title {
    font-size: 1.05rem;
  }
  .vh-logo__subtitle {
    font-size: 0.68rem;
  }
  .vh-logo__mark {
    width: 34px;
    height: 34px;
    font-size: 0.88rem;
    border-radius: 6px;
  }

  /* Hero Section Mobile */
  .vh-hero {
    padding: 18px 0 0;
  }
  .vh-hero__layout {
    gap: 16px;
  }
  .vh-hero__content {
    padding: 0;
    align-self: auto;
  }
  .vh-hero__title {
    font-size: 1.55rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0 0 10px;
  }
  .vh-hero__lead {
    font-size: 0.88rem;
    line-height: 1.55;
    margin: 0 0 16px;
    color: var(--c-ink-700, #0B3A40);
  }
  .vh-hero__actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 14px;
  }
  .vh-btn-primary,
  .vh-btn-call {
    width: 100%;
    height: 44px;
    padding: 0 16px;
    font-size: 0.92rem;
    justify-content: center;
    border-radius: 8px;
    box-sizing: border-box;
  }
  .vh-hero__footnote {
    font-size: 0.76rem;
    line-height: 1.45;
  }

  /* Slide Doctor Images Together in Center */
  .vh-hero__doctors {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
    margin-top: 14px;
    padding: 0;
  }
  .vh-hero__doc-img {
    height: 250px;
  }
  .vh-hero__doc-img--neha {
    margin-right: -60px;
    z-index: 1;
  }
  .vh-hero__doc-img--amit {
    z-index: 2;
  }
  .vh-hero__doc-img img {
    height: 100%;
    width: auto;
  }

  /* Trust Bar Mobile */
  .vh-trust-bar {
    padding: 14px 0;
  }
  .vh-trust-bar__inner {
    gap: 12px;
  }
  .vh-trust-item strong {
    font-size: 0.92rem;
  }
  .vh-trust-item span {
    font-size: 0.68rem;
  }
}

/* ============================================================
   PAGE BODY & GENERAL COMPONENTS
   ============================================================ */

.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--fs-small, 0.875rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-accent-dark, #006C75);
  margin-bottom: var(--sp-2, 8px);
  display: inline-block;
}
.eyebrow--light { color: #8FC7CC; }

.badge {
  font-size: var(--fs-micro, 0.75rem);
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-sm, 6px);
  display: inline-flex;
  align-items: center;
}
.badge--emergency { background: var(--c-error, #C4453A); color: #fff; text-transform: uppercase; }

/* Buttons General */
.btn {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--fs-body, 1rem);
  padding: 12px 24px;
  border-radius: var(--radius-sm, 6px);
  border: 1.5px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.btn--primary { background: var(--c-accent, #00A4B4); color: #fff; }
.btn--primary:hover, .btn--primary:focus { background: var(--c-accent-dark, #006C75); color: #fff; }

.btn--secondary { background: transparent; color: #fff; border-color: rgba(255,255,255,0.3); }
.btn--secondary:hover { background: rgba(255,255,255,0.1); color: #fff; }

.btn--ghost { background: var(--c-accent-tint-10, #E3F5F6); color: var(--c-accent-dark, #006C75); border-color: var(--c-accent-tint-20, #C6EBEE); }
.btn--ghost:hover { background: var(--c-accent-tint-20, #C6EBEE); }

.btn--lg { padding: 16px 32px; font-size: var(--fs-body-lg, 1.125rem); }
.btn--full { width: 100%; }
.btn-text { font-weight: 600; color: var(--c-accent-dark, #006C75); }
.btn-text:hover { color: var(--c-accent, #00A4B4); }

/* Sections & Grids */
.section { padding: var(--sp-16, 64px) 0; }
.section-head { margin-bottom: var(--sp-8, 32px); }
.section-head h2 { font-size: var(--fs-h1, 2rem); margin: 0 0 8px; }
.section-head p {
  color: var(--c-muted, #5A7377);
  font-size: var(--fs-body-lg, 1.125rem);
  max-width: 640px;
  margin: var(--sp-2, 8px) 0 0;
  line-height: 1.55;
}

.section-head.text-center,
.text-center.section-head,
.text-center {
  text-align: center;
}
.section-head.text-center p,
.text-center.section-head p {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head.text-center .eyebrow,
.text-center.section-head .eyebrow {
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
}

.grid { display: grid; gap: var(--sp-6, 24px); }
.grid--2col { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid--3col { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--sidebar { grid-template-columns: 2fr 1fr; }

/* ============================================================
   DEPARTMENT SLIDER & GRID — Reference Card Layout
   ============================================================ */

.section--depts {
  padding: 48px 0 60px;
  background: #FFFFFF;
}

.section--depts .section-head {
  text-align: center;
  margin-bottom: 36px;
}
.section--depts .section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: var(--c-ink-900, #072226);
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}

/* Department Row */
.dept-row {
  margin-bottom: 36px;
}
.dept-row:last-child {
  margin-bottom: 0;
}

/* Department Row Header */
.dept-row__label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--c-border, #DCE7E8);
}
.dept-row__icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  object-fit: contain;
}
.dept-row__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--c-ink-900, #072226);
  line-height: 1.2;
  margin: 0;
}
.dept-row__sub {
  font-size: 0.78rem;
  color: var(--c-muted, #5A7377);
  margin: 2px 0 0;
  font-weight: 500;
}

/* Horizontal Slider Track (Mobile / Tablet) */
.dept-slider {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding: 4px 0 16px;
  margin: 0;
  scrollbar-width: none;
}
.dept-slider::-webkit-scrollbar {
  display: none;
}

/* Individual Service Card */
.dept-card {
  flex: 0 0 136px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 18px 10px 16px;
  background: #FFFFFF;
  border: 1.5px solid var(--c-border, #DCE7E8);
  border-radius: 14px;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s ease;
  box-sizing: border-box;
}
.dept-card:hover {
  border-color: var(--c-accent, #00A4B4);
  box-shadow: 0 8px 22px rgba(7, 34, 38, 0.08);
  transform: translateY(-2px);
}

/* Circular Soft Icon Badge */
.dept-card__icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #F0F7F8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}
.dept-card:hover .dept-card__icon-wrap {
  background: #E1EFF1;
  transform: scale(1.05);
}

.dept-card__icon {
  width: 38px;
  height: 38px;
  object-fit: contain;
  display: block;
}

.dept-card__name {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--c-ink-900, #072226);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Tablet (768px+) */
@media (min-width: 768px) and (max-width: 991px) {
  .dept-card {
    flex: 0 0 155px;
    padding: 22px 12px 18px;
  }
  .dept-card__icon-wrap {
    width: 64px;
    height: 64px;
  }
  .dept-card__icon {
    width: 42px;
    height: 42px;
  }
  .dept-card__name {
    font-size: 0.86rem;
  }
}

/* Desktop Grid (992px+) */
@media (min-width: 992px) {
  .dept-slider {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    overflow-x: visible;
    padding: 0;
  }
  .dept-card {
    flex: none;
    width: 100%;
    padding: 26px 14px 22px;
    border-radius: 16px;
  }
  .dept-card__icon-wrap {
    width: 70px;
    height: 70px;
    margin-bottom: 2px;
  }
  .dept-card__icon {
    width: 46px;
    height: 46px;
  }
  .dept-card__name {
    font-size: 0.88rem;
  }
}

/* Large Desktop (1200px+) */
@media (min-width: 1200px) {
  .dept-slider {
    gap: 20px;
  }
  .dept-card {
    padding: 28px 16px 24px;
  }
  .dept-card__icon-wrap {
    width: 76px;
    height: 76px;
  }
  .dept-card__icon {
    width: 50px;
    height: 50px;
  }
  .dept-card__name {
    font-size: 0.92rem;
  }
}

/* Cards */
.card {
  background: var(--c-bg-surface, #FFFFFF);
  border: 1px solid var(--c-border, #DCE7E8);
  border-radius: var(--radius-lg, 16px);
  padding: var(--sp-6, 24px);
  box-shadow: var(--shadow-card, 0 2px 8px rgba(7,34,38,0.05));
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover, 0 8px 24px rgba(7,34,38,0.1)); }

.card__icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--c-accent-tint-10, #E3F5F6);
  color: var(--c-accent-dark, #006C75);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

/* Department Cards Polish */
.card--dept {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1.5px solid var(--c-border, #DCE7E8);
  border-radius: 14px;
  padding: 28px 24px;
  background: #FFFFFF;
  transition: all 0.25s ease;
}

.card--dept:hover {
  transform: translateY(-4px);
  border-color: var(--c-accent, #00A4B4);
  box-shadow: 0 12px 28px rgba(7, 34, 38, 0.09);
}

.card--dept .card__header {
  margin-bottom: 12px;
}

.card--dept .card__header h3 {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--c-ink-900, #072226);
  line-height: 1.28;
  letter-spacing: -0.015em;
  margin: 0;
}

.card--dept .card__icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: #E8F5F6;
  border: 1px solid #D0EBEF;
  color: var(--c-accent-dark, #006C75);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: all 0.2s ease;
}

.card--dept:hover .card__icon-wrap {
  background: var(--c-accent, #00A4B4);
  border-color: var(--c-accent, #00A4B4);
  color: #FFFFFF;
}

.card--dept .card__body {
  font-size: 0.93rem;
  color: var(--c-ink-700, #0B3A40);
  line-height: 1.6;
  margin: 0 0 16px;
}

.card--dept .card__checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  font-size: 0.88rem;
  color: var(--c-ink-900, #072226);
  font-weight: 500;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card--dept .card__checklist li {
  position: relative;
  padding-left: 22px;
  line-height: 1.45;
}

.card--dept .card__checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--c-accent, #00A4B4);
  font-weight: 800;
  font-size: 0.95rem;
}

.card--dept .card__footer {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--c-border, #DCE7E8);
}

.card--dept .card__footer .btn-text {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--c-accent-dark, #006C75);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all 0.15s ease;
}

.card--dept .card__footer .btn-text:hover {
  color: var(--c-accent, #00A4B4);
  transform: translateX(3px);
}

.card--doctor-full__header { border-bottom: 1px solid var(--c-border, #DCE7E8); padding-bottom: var(--sp-4, 16px); margin-bottom: var(--sp-4, 16px); }
.doctor-badge { background: var(--c-accent-tint-10, #E3F5F6); color: var(--c-accent-dark, #006C75); font-size: var(--fs-micro, 0.75rem); font-weight: 700; padding: 4px 10px; border-radius: 20px; display: inline-block; margin-bottom: var(--sp-2, 8px); }
.doctor-degree { font-size: var(--fs-small, 0.875rem); color: var(--c-accent-dark, #006C75); font-weight: 600; display: block; }
.doctor-title { font-size: var(--fs-body, 1rem); color: var(--c-muted, #5A7377); margin-top: 2px; }

.card--doctor-full__footer { display: flex; gap: var(--sp-3, 12px); flex-wrap: wrap; margin-top: var(--sp-6, 24px); }

/* Pricing Section */
.pricing-box {
  background: var(--c-ink-700, #0B3A40);
  color: #fff;
  border-radius: var(--radius-lg, 16px);
  padding: var(--sp-12, 48px) var(--sp-8, 32px);
}
.pricing-box__head h2 { color: #fff; }
.pricing-box__head p { color: #CFE9EB; }

.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: var(--sp-6, 24px); margin-top: var(--sp-8, 32px); }
.pricing-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-md, 10px); padding: var(--sp-6, 24px); }
.pricing-card h4 { color: #fff; font-size: var(--fs-h4, 1.25rem); }
.pricing-card__price { font-family: var(--font-display); font-size: var(--fs-h2, 1.8rem); color: var(--c-accent-tint-20, #C6EBEE); font-weight: 700; margin: 8px 0; }
.pricing-card__price span { font-size: var(--fs-micro, 0.75rem); color: #8FC7CC; font-weight: 400; }
.pricing-card p { font-size: var(--fs-small, 0.875rem); color: #CFE9EB; }

/* Appointment Form Organism */
.appointment-form-wrapper {
  background: var(--c-bg-surface, #FFFFFF);
  border: 1px solid var(--c-border, #DCE7E8);
  border-radius: var(--radius-lg, 16px);
  padding: var(--sp-12, 48px) var(--sp-8, 32px);
  box-shadow: var(--shadow-hover, 0 8px 24px rgba(7,34,38,0.1));
}
.appointment-form { margin-top: var(--sp-8, 32px); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-6, 24px); }
.form-group--full { grid-column: span 2; }

.form-group label { display: block; font-weight: 600; font-size: var(--fs-small, 0.875rem); margin-bottom: 6px; color: var(--c-ink-900, #072226); }
.form-group label .required { color: var(--c-error, #C4453A); }
.form-control {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: var(--fs-body, 1rem);
  border: 1.5px solid var(--c-border, #DCE7E8);
  border-radius: var(--radius-sm, 6px);
  background: var(--c-bg-primary, #FAFCFC);
  color: var(--c-ink-900, #072226);
  transition: border-color 0.2s;
}
.form-control:focus { outline: none; border-color: var(--c-accent, #00A4B4); background: #fff; }

.form-footer { margin-top: var(--sp-6, 24px); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: var(--sp-4, 16px); }
.form-notice { font-size: var(--fs-small, 0.875rem); color: var(--c-muted, #5A7377); }

.alert { padding: 14px 18px; border-radius: var(--radius-sm, 6px); font-size: var(--fs-small, 0.875rem); margin-top: var(--sp-4, 16px); }
.alert-success { background: var(--c-success-bg, #EAF6F1); color: var(--c-success, #2F8F6E); border: 1px solid var(--c-success, #2F8F6E); }
.alert-error { background: var(--c-error-bg, #FBEBE9); color: var(--c-error, #C4453A); border: 1px solid var(--c-error, #C4453A); }

/* Accordion FAQs */
.accordion-item { border-bottom: 1px solid var(--c-border, #DCE7E8); }
.accordion-trigger {
  width: 100%; text-align: left; padding: var(--sp-4, 16px) 0;
  background: none; border: none; font-family: var(--font-display);
  font-size: var(--fs-h4, 1.25rem); font-weight: 600; color: var(--c-ink-900, #072226);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
}
.accordion-panel { padding-bottom: var(--sp-4, 16px); color: var(--c-muted, #5A7377); }

/* ============================================================
   FOOTER CTA STRIP (High-Contrast Accent Band)
   White text on Peacock Blue — deliberate contrast break
   ============================================================ */

.vh-footer-cta {
  background: var(--c-accent, #00A4B4);
  color: #FFFFFF;
  padding: 20px 0;
}
.vh-footer-cta__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.vh-footer-cta__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.vh-footer-cta__text strong {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.vh-footer-cta__text span {
  font-size: 0.86rem;
  font-weight: 400;
  opacity: 0.88;
}
.vh-footer-cta__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.vh-footer-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.vh-footer-cta__btn--call {
  background: #FFFFFF;
  color: var(--c-ink-900, #072226);
}
.vh-footer-cta__btn--call:hover {
  background: var(--c-ink-900, #072226);
  color: #FFFFFF;
}
.vh-footer-cta__btn--wa {
  background: rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: #FFFFFF;
}
.vh-footer-cta__btn--wa:hover {
  background: #FFFFFF;
  color: var(--c-ink-900, #072226);
}

/* ============================================================
   MAIN FOOTER (Dark Tier — #072226 Deep Ink)
   High contrast: white headings, muted body, accent links
   ============================================================ */

.vh-footer {
  background: var(--c-ink-900, #072226);
  color: #96B5B9;
  padding: 56px 0 0;
}

.vh-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

/* ---- Footer Column: Brand (wider) ---- */
.vh-footer__col--brand {
  padding-right: 24px;
}

.vh-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
}
.vh-footer__logo-link {
  display: inline-block;
  margin-bottom: 8px;
}
.vh-footer__logo-img {
  height: 52px;
  width: auto;
  max-width: 250px;
  display: block;
  object-fit: contain;
  transition: opacity 0.2s ease;
}
.vh-footer__logo-link:hover .vh-footer__logo-img {
  opacity: 0.9;
}
.vh-footer__tagline {
  font-size: 0.82rem;
  color: #8FC7CC;
  font-weight: 500;
  margin: 0 0 14px;
}
.vh-footer__logo-mark {
  width: 40px;
  height: 40px;
  background: var(--c-accent, #00A4B4);
  color: #FFFFFF;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.vh-footer__hospital-name {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.25;
}
.vh-footer__hospital-type {
  display: block;
  font-size: 0.78rem;
  color: #7AABB0;
  font-weight: 500;
  margin-top: 1px;
}

.vh-footer__address {
  font-style: normal;
  font-size: 0.86rem;
  line-height: 1.6;
  color: #8CA8AC;
  margin-bottom: 16px;
}

.vh-footer__contact-lines {
  margin-bottom: 16px;
}
.vh-footer__phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.92rem;
  font-weight: 700;
  color: #FFFFFF;
  text-decoration: none;
  transition: color 0.2s ease;
}
.vh-footer__phone:hover {
  color: var(--c-accent, #00A4B4);
}

.vh-footer__hours {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 10px 14px;
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
}
.vh-footer__hours-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #7AABB0;
}
.vh-footer__hours-value {
  font-size: 0.84rem;
  font-weight: 600;
  color: #FFFFFF;
}

/* ---- Footer Columns: Links ---- */
.vh-footer__heading {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #FFFFFF;
  margin: 0 0 14px;
}
.vh-footer__heading--mt {
  margin-top: 24px;
}

.vh-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.vh-footer__links li {
  margin-bottom: 6px;
}
.vh-footer__links a {
  font-size: 0.88rem;
  color: #8CA8AC;
  text-decoration: none;
  transition: color 0.15s ease;
  line-height: 1.7;
}
.vh-footer__links a:hover {
  color: #FFFFFF;
}

/* ---- Footer Column: Doctor Direct Lines ---- */
.vh-footer__doctor {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.vh-footer__doctor:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 20px;
}
.vh-footer__doctor strong {
  font-size: 0.95rem;
  color: #FFFFFF;
  font-weight: 700;
  margin-bottom: 2px;
}
.vh-footer__doctor-role {
  font-size: 0.82rem;
  color: var(--c-accent, #00A4B4);
  font-weight: 600;
}
.vh-footer__doctor-qual {
  font-size: 0.74rem;
  color: #7AABB0;
  font-weight: 500;
  margin-bottom: 6px;
}
.vh-footer__doctor-tel {
  font-size: 0.88rem;
  font-weight: 700;
  color: #FFFFFF;
  text-decoration: none;
  transition: color 0.15s ease;
}
.vh-footer__doctor-tel:hover {
  color: var(--c-accent, #00A4B4);
}

.vh-footer__book-link {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--c-accent, #00A4B4);
  text-decoration: none;
  padding: 8px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  transition: color 0.15s ease;
}
.vh-footer__book-link:hover {
  color: #FFFFFF;
}

/* ---- Footer Bottom Legal Bar ---- */
.vh-footer__bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}
.vh-footer__bottom p {
  font-size: 0.78rem;
  color: #6A9296;
  margin: 0;
}

/* ============================================================
   OUR DOCTORS & QUICK APPOINTMENT SECTION
   ============================================================ */

.section--doctors {
  padding: 64px 0 72px;
  background: #F8FBFC;
  border-top: 1px solid var(--c-border, #DCE7E8);
  border-bottom: 1px solid var(--c-border, #DCE7E8);
}

.vh-doctors-layout {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 12px;
}

.vh-doctors-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Individual Doctor Card */
.vh-doctor-card {
  background: #FFFFFF;
  border: 1.5px solid var(--c-border, #DCE7E8);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 4px 16px rgba(7, 34, 38, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.vh-doctor-card:hover {
  transform: translateY(-3px);
  border-color: var(--c-accent, #00A4B4);
  box-shadow: 0 10px 28px rgba(7, 34, 38, 0.08);
}

.vh-doctor-card__avatar {
  width: 130px;
  height: 130px;
  border-radius: 14px;
  background: #F0F7F8;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid #E1EFF1;
  margin: 0 auto;
}
.vh-doctor-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
  display: block;
}

.vh-doctor-card__content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.vh-doctor-card__badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--c-accent-dark, #006C75);
  background: #E1EFF1;
  padding: 3px 10px;
  border-radius: 6px;
  margin-bottom: 8px;
  width: fit-content;
}

.vh-doctor-card__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--c-ink-900, #072226);
  line-height: 1.25;
  letter-spacing: -0.015em;
  margin: 0 0 3px;
}

.vh-doctor-card__degree {
  font-size: 0.84rem;
  color: var(--c-accent, #00A4B4);
  font-weight: 600;
  margin-bottom: 10px;
}

.vh-doctor-card__bio {
  font-size: 0.9rem;
  color: var(--c-ink-700, #0B3A40);
  line-height: 1.6;
  margin-bottom: 14px;
}
.vh-doctor-card__bio p {
  margin: 0;
}

.vh-doctor-card__meta {
  margin-bottom: 16px;
}
.vh-doctor-card__timing {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--c-muted, #5A7377);
  background: #F4F8F9;
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid #E8F0F1;
}
.vh-doctor-card__timing svg {
  color: var(--c-accent, #00A4B4);
  flex-shrink: 0;
}

.vh-doctor-card__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: auto;
}

.vh-btn-doc-profile {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  background: var(--c-accent, #00A4B4);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
}
.vh-btn-doc-profile:hover {
  background: var(--c-ink-700, #0B3A40);
  transform: translateY(-1px);
}

.vh-btn-doc-call {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: #FFFFFF;
  border: 1.5px solid var(--c-border, #DCE7E8);
  color: var(--c-ink-900, #072226);
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.vh-btn-doc-call:hover {
  border-color: var(--c-accent, #00A4B4);
  color: var(--c-accent-dark, #006C75);
}

/* ---- Right Column: Quick Booking Card ---- */
.vh-booking-col {
  width: 100%;
}

.vh-quick-booking-card {
  background: #FFFFFF;
  border: 2px solid var(--c-accent, #00A4B4);
  border-radius: 18px;
  padding: 28px 24px;
  box-shadow: 0 10px 32px rgba(0, 164, 180, 0.08);
}

.vh-quick-booking__header {
  margin-bottom: 20px;
}
.vh-quick-booking__eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--c-accent, #00A4B4);
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.vh-quick-booking__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--c-ink-900, #072226);
  letter-spacing: -0.015em;
  margin: 0 0 4px;
}
.vh-quick-booking__desc {
  font-size: 0.84rem;
  color: var(--c-muted, #5A7377);
  margin: 0;
}

.vh-quick-form .vh-form-group {
  margin-bottom: 14px;
}
.vh-quick-form .vh-form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--c-ink-900, #072226);
  margin-bottom: 5px;
}
.vh-quick-form .vh-form-group label .required {
  color: var(--c-error, #C4453A);
}

.vh-quick-form .vh-input,
.vh-quick-form .vh-select {
  width: 100%;
  height: 44px;
  padding: 0 12px;
  border: 1.5px solid var(--c-border, #DCE7E8);
  border-radius: 8px;
  font-size: 0.88rem;
  font-family: var(--font-body);
  color: var(--c-ink-900, #072226);
  background: #FAFCFC;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}
.vh-quick-form .vh-input:focus,
.vh-quick-form .vh-select:focus {
  outline: none;
  border-color: var(--c-accent, #00A4B4);
  box-shadow: 0 0 0 3px rgba(0, 164, 180, 0.12);
  background: #FFFFFF;
}

.vh-btn-submit-booking {
  width: 100%;
  height: 48px;
  background: var(--c-accent, #00A4B4);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s ease, transform 0.15s ease;
  margin-top: 8px;
}
.vh-btn-submit-booking:hover {
  background: var(--c-ink-700, #0B3A40);
  transform: translateY(-1px);
}

.vh-quick-booking__guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.76rem;
  color: var(--c-muted, #5A7377);
  font-weight: 600;
  margin-top: 12px;
  text-align: center;
}

/* ---- Responsive: Doctors Section (768px+) ---- */
@media (min-width: 768px) {
  .vh-doctor-card {
    flex-direction: row;
    align-items: flex-start;
    gap: 24px;
    padding: 28px;
  }
  .vh-doctor-card__avatar {
    width: 140px;
    height: 140px;
    margin: 0;
  }
}

/* ---- Responsive: Doctors Section (992px+) ---- */
@media (min-width: 992px) {
  .vh-doctors-layout {
    display: grid;
    grid-template-columns: 1.55fr 1fr;
    gap: 32px;
    align-items: flex-start;
  }
  .vh-quick-booking-card {
    position: sticky;
    top: 110px;
    padding: 32px 26px;
  }
}

/* ============================================================
   GOOGLE REVIEWS & TESTIMONIALS SECTION
   ============================================================ */

.section--reviews {
  padding: 64px 0 80px;
  background: #FFFFFF;
  border-bottom: 1px solid var(--c-border, #DCE7E8);
}

.vh-reviews-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFFBEB;
  border: 1px solid #FDE68A;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.84rem;
  font-weight: 700;
  color: #92400E;
  margin-top: 12px;
}

.vh-reviews-trust-stars {
  color: #F59E0B;
  letter-spacing: 2px;
  font-size: 0.95rem;
}

.vh-reviews-widget-wrap {
  margin-top: 36px;
  min-height: 280px;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}

/* ============================================================
   HEALTH TIPS & BLOG SECTION
   ============================================================ */

.section--blog {
  padding: 64px 0 80px;
  background: #F4F9FA;
  border-top: 1px solid var(--c-border, #DCE7E8);
}

.section--blog .section-head {
  text-align: center;
  margin-bottom: 40px;
}
.section--blog .section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: var(--c-ink-900, #072226);
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}
.section--blog .section-head .eyebrow {
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
}

/* ---- Blog Card Slider ---- */
.vh-blog-slider-wrap {
  position: relative;
}

.vh-blog-slider {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding: 4px 2px 18px;
  margin: 0;
  scrollbar-width: none;
  scroll-behavior: smooth;
}
.vh-blog-slider::-webkit-scrollbar {
  display: none;
}

.vh-blog-slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--c-border, #DCE7E8);
  background: #FFFFFF;
  color: var(--c-accent-dark, #006C75);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(7, 34, 38, 0.12);
  transition: all 0.2s ease;
}
.vh-blog-slider__nav:hover {
  background: var(--c-accent, #00A4B4);
  border-color: var(--c-accent, #00A4B4);
  color: #FFFFFF;
}
.vh-blog-slider__nav:disabled {
  opacity: 0.35;
  cursor: default;
  box-shadow: none;
  background: #FFFFFF;
  color: var(--c-muted, #5A7377);
}
.vh-blog-slider__nav--prev {
  left: -22px;
}
.vh-blog-slider__nav--next {
  right: -22px;
}

.vh-blog-footer {
  text-align: center;
  margin-top: 20px;
}

/* ---- Blog Cards ---- */
.vh-blog-card {
  flex: 0 0 316px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  border: 1.5px solid var(--c-border, #DCE7E8);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.2s ease;
}

.vh-blog-card__media {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--c-accent-dark, #006C75);
}
.vh-blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.vh-blog-card:hover .vh-blog-card__media img {
  transform: scale(1.04);
}

.vh-blog-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 18px 18px 20px;
}

.vh-blog-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.vh-blog-card__cat {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--c-accent-dark, #006C75);
  background: var(--c-accent-tint-10, #E3F5F6);
  padding: 4px 10px;
  border-radius: 20px;
}

.vh-blog-card__date {
  font-size: 0.78rem;
  color: var(--c-muted, #5A7377);
  font-weight: 500;
  white-space: nowrap;
}

.vh-blog-card__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--c-ink-900, #072226);
  line-height: 1.35;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.vh-blog-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
.vh-blog-card__title a:hover {
  color: var(--c-accent-dark, #006C75);
}

.vh-blog-card__excerpt {
  font-size: 0.86rem;
  color: var(--c-muted, #5A7377);
  line-height: 1.6;
  margin: 0 0 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.vh-blog-card__link {
  margin-top: auto;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--c-accent-dark, #006C75);
  text-decoration: none;
  transition: color 0.2s ease;
}
.vh-blog-card__link:hover {
  color: var(--c-accent, #00A4B4);
}

/* ---- Blog Slider Responsive ---- */
@media (max-width: 720px) {
  .vh-blog-card {
    flex-basis: 85%;
  }
  .vh-blog-slider__nav {
    display: none;
  }
}
@media (min-width: 721px) and (max-width: 991px) {
  .vh-blog-slider__nav--prev {
    left: -18px;
  }
  .vh-blog-slider__nav--next {
    right: -18px;
  }
}

/* ============================================================
   VISIT US — LOCATION & MAP SECTION
   ============================================================ */

.section--map {
  padding: 64px 0 80px;
  background: #FFFFFF;
  border-top: 1px solid var(--c-border, #DCE7E8);
}

.section--map .section-head {
  text-align: center;
  margin-bottom: 40px;
}
.section--map .section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: var(--c-ink-900, #072226);
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}
.section--map .section-head .eyebrow {
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
}

.vh-map-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.vh-map-embed {
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px solid var(--c-border, #DCE7E8);
  min-height: 380px;
  position: relative;
  background: #E9F0F2;
}
.vh-map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.vh-map-card {
  display: flex;
  flex-direction: column;
  background: #F4F9FA;
  border: 1.5px solid var(--c-border, #DCE7E8);
  border-radius: 16px;
  padding: 26px 24px;
}

.vh-map-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--c-ink-900, #072226);
  letter-spacing: -0.015em;
  margin: 0 0 16px;
}

.vh-map-card__address,
.vh-map-card__hours {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--c-ink-700, #0B3A40);
  margin: 0 0 18px;
}
.vh-map-card__address svg,
.vh-map-card__hours svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--c-accent, #00A4B4);
}

.vh-map-card__hours {
  flex-direction: row;
}
.vh-map-card__hours div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.vh-map-card__hours strong {
  color: var(--c-ink-900, #072226);
  margin-bottom: 2px;
}
.vh-map-card__hours span {
  color: var(--c-muted, #5A7377);
}
.vh-map-card__emergency {
  margin-top: 6px;
}
.vh-map-card__emergency strong {
  color: var(--c-accent-dark, #006C75);
}

.vh-map-card__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
  padding-top: 6px;
}

.vh-map-card__btn {
  width: 100%;
  justify-content: center;
}

/* ---- Map Section Responsive ---- */
@media (max-width: 900px) {
  .vh-map-layout {
    grid-template-columns: 1fr;
  }
  .vh-map-embed {
    min-height: 300px;
  }
}

/* ============================================================
   SINGLE DOCTOR & DOCTORS DIRECTORY STYLES
   ============================================================ */

/* ---- Doctor Profile Hero ---- */
.vh-doc-hero {
  background: #FAFCFC;
  padding: 40px 0 48px;
  border-bottom: 1px solid var(--c-border, #DCE7E8);
}
.vh-doc-hero .breadcrumbs {
  margin-bottom: 20px;
  font-size: 0.84rem;
  color: var(--c-muted, #5A7377);
}
.vh-doc-hero .breadcrumbs a {
  color: var(--c-accent-dark, #006C75);
  text-decoration: none;
  font-weight: 500;
}
.vh-doc-hero__grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 44px;
  align-items: center;
}

.vh-doc-hero__media {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.vh-doc-hero__img-wrap {
  width: 100%;
  height: 310px;
  border-radius: 18px;
  background: #E8F5F6;
  border: 1.5px solid #D0EBEF;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(7, 34, 38, 0.08);
}
.vh-doc-main-photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
  display: block;
}
.vh-doc-hero__status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #FFFFFF;
  border: 1px solid var(--c-border, #DCE7E8);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--c-ink-800, #092B30);
  box-shadow: 0 2px 6px rgba(7, 34, 38, 0.04);
}
.vh-doc-hero__status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10B981;
}

.vh-doc-hero__content {
  display: flex;
  flex-direction: column;
}
.vh-doc-hero__dept-tag {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--c-accent-dark, #006C75);
  margin-bottom: 6px;
}
.vh-doc-hero__name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 2.7rem);
  font-weight: 800;
  color: var(--c-ink-900, #072226);
  letter-spacing: -0.025em;
  margin: 0 0 4px;
}
.vh-doc-hero__title-line {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--c-accent-dark, #006C75);
  margin: 0 0 12px;
}
.vh-doc-hero--gynae {
  background: linear-gradient(180deg, #F6FAFA 0%, #FFFFFF 100%);
}
.vh-doc-hero__img-wrap--gynae {
  background: linear-gradient(135deg, #E6F5F6 0%, #D2EEF1 100%);
  border-color: #BBE2E6;
}
.vh-doc-hero__status-dot--gynae {
  background: #008794;
}
.vh-doc-hero__dept-tag--gynae {
  color: #008794;
}
.vh-doc-hero__title-line--gynae {
  color: #008794;
}
.vh-timing-row--emergency strong {
  color: #008794;
}
.vh-doc-hero__credentials {
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--c-muted, #5A7377);
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--c-border, #DCE7E8);
}
.vh-doc-hero__credentials strong {
  color: var(--c-ink-900, #072226);
}
.vh-doc-hero__bio-lead {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--c-ink-700, #0B3A40);
  margin: 0 0 24px;
  max-width: 660px;
}
.vh-doc-hero__actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.vh-doc-hero__quick-contact {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

/* ---- Main Doctor Body Layout ---- */
.vh-doc-body-section {
  padding: 60px 0 76px;
  background: #FFFFFF;
}
.vh-doc-layout {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 48px;
  align-items: start;
}

.vh-doc-main-col {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.vh-doc-card {
  background: #FAFCFC;
  border: 1.5px solid var(--c-border, #DCE7E8);
  border-radius: 18px;
  padding: 32px 28px;
}
.vh-doc-card h2 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--c-ink-900, #072226);
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}
.vh-doc-card__sub {
  font-size: 0.92rem;
  color: var(--c-muted, #5A7377);
  margin: 0 0 20px;
}

.vh-doc-skills-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.vh-skill-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #FFFFFF;
  border: 1px solid var(--c-border, #DCE7E8);
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--c-ink-900, #072226);
}

.vh-doc-article-text p {
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--c-ink-700, #0B3A40);
  margin: 0 0 16px;
}
.vh-doc-article-text p:last-child {
  margin-bottom: 0;
}

.vh-pub-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.vh-pub-list li {
  position: relative;
  padding-left: 20px;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--c-ink-800, #092B30);
}
.vh-pub-list li::before {
  content: "•";
  position: absolute;
  left: 4px;
  color: var(--c-accent, #00A4B4);
  font-weight: 900;
}

/* ---- Doctor Instagram Buttons & Showcase Card ---- */
.vh-btn-instagram {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(45deg, #F58529 0%, #DD2A7B 50%, #8134AF 100%);
  color: #FFFFFF !important;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  box-shadow: 0 4px 14px rgba(221, 42, 123, 0.25);
}
.vh-btn-instagram:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(221, 42, 123, 0.35);
  filter: brightness(1.08);
}

.vh-instagram-card {
  background: #FFFFFF;
  border: 1.5px solid #F0D7E7;
  box-shadow: 0 8px 24px rgba(221, 42, 123, 0.06);
}
.vh-instagram-card__head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid #F6E6F0;
  flex-wrap: wrap;
}
.vh-instagram-card__head-top {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}
.vh-instagram-badge-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(45deg, #F58529 0%, #DD2A7B 50%, #8134AF 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(221, 42, 123, 0.25);
}
.vh-instagram-card__meta {
  flex-grow: 1;
  min-width: 200px;
}
.vh-instagram-card__user {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.vh-instagram-card__user strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--c-ink-900, #072226);
}
.vh-ig-tag {
  background: #FCE8F3;
  color: #C13584;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 6px;
}
.vh-ig-subtitle {
  display: block;
  font-size: 0.8rem;
  color: var(--c-muted, #5A7377);
  margin-top: 2px;
}
.vh-btn-ig-follow {
  background: #0095F6;
  color: #FFFFFF !important;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s ease;
  white-space: nowrap;
}
.vh-btn-ig-follow:hover {
  background: #1877F2;
}

.vh-instagram-card__body {
  padding-top: 18px;
}
.vh-instagram-card__desc {
  font-size: 0.94rem;
  line-height: 1.6;
  color: var(--c-ink-800, #092B30);
  margin: 0 0 16px;
}
.vh-ig-topics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.vh-ig-topic-item {
  background: #FAFCFC;
  border: 1px solid var(--c-border, #DCE7E8);
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.vh-ig-topic-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  line-height: 1;
}
.vh-ig-topic-item strong {
  display: block;
  font-size: 0.84rem;
  color: var(--c-ink-900, #072226);
  margin-bottom: 2px;
}
.vh-ig-topic-item span {
  display: block;
  font-size: 0.75rem;
  color: var(--c-muted, #5A7377);
  line-height: 1.35;
}

.vh-instagram-card__footer {
  padding-top: 4px;
}
.vh-btn-ig-view {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #C13584;
  text-decoration: none;
  transition: color 0.2s ease;
}
.vh-btn-ig-view:hover {
  color: #8134AF;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .vh-ig-topics-grid {
    grid-template-columns: 1fr;
  }
}

/* ---- Sticky Consultation Sidebar ---- */
.vh-doc-sidebar-col {
  position: sticky;
  top: 100px;
}
.vh-doc-sticky-card {
  background: #FAFCFC;
  border: 1.5px solid var(--c-border, #DCE7E8);
  border-radius: 18px;
  padding: 28px 24px;
}
.vh-doc-sticky-card__head {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--c-accent-dark, #006C75);
  margin-bottom: 16px;
}
.vh-doc-sticky-card__head h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--c-ink-900, #072226);
  margin: 0;
}
.vh-doc-timing-box {
  background: #FFFFFF;
  border: 1px solid var(--c-border, #DCE7E8);
  border-radius: 10px;
  padding: 14px 16px;
}
.vh-doc-sidebar-divider {
  border: 0;
  height: 1px;
  background: var(--c-border, #DCE7E8);
  margin: 20px 0;
}
.vh-doc-loc-box strong {
  display: block;
  font-size: 0.86rem;
  color: var(--c-ink-900, #072226);
  margin-bottom: 4px;
}
.vh-doc-loc-box p {
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--c-ink-800, #092B30);
  margin: 0 0 20px;
}
.vh-doc-sidebar-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.vh-btn--full {
  width: 100%;
  justify-content: center;
}

/* ---- Doctor Page Responsive Styles ---- */
@media (max-width: 991px) {
  .vh-doc-hero__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .vh-doc-hero__media {
    max-width: 240px;
    margin: 0 auto;
  }
  .vh-doc-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .vh-doc-skills-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .vh-doc-card .vh-fac-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .vh-doc-sidebar-col {
    position: static;
  }
}

/* Smartphone & Small Tablet Viewports (<= 767px) */
@media (max-width: 767px) {
  .vh-doc-hero {
    padding: 24px 0 32px;
  }
  .vh-doc-hero .breadcrumbs {
    margin-bottom: 14px;
    font-size: 0.78rem;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .vh-doc-hero .breadcrumbs::-webkit-scrollbar {
    display: none;
  }
  .vh-doc-hero__grid {
    gap: 20px;
  }
  .vh-doc-hero__media {
    max-width: 190px;
    margin: 0 auto;
  }
  .vh-doc-hero__img-wrap {
    height: 220px;
    border-radius: 14px;
  }
  .vh-doc-hero__status {
    padding: 4px 10px;
    font-size: 0.72rem;
  }
  .vh-doc-hero__dept-tag {
    font-size: 0.72rem;
    margin-bottom: 4px;
  }
  .vh-doc-hero__name {
    font-size: clamp(1.6rem, 6.5vw, 2.1rem);
    line-height: 1.2;
    margin: 0 0 4px;
  }
  .vh-doc-hero__title-line {
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 0 0 8px;
  }
  .vh-doc-hero__credentials {
    font-size: 0.82rem;
    line-height: 1.45;
    padding-bottom: 12px;
    margin-bottom: 12px;
  }
  .vh-doc-hero__bio-lead {
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0 0 16px;
  }

  /* Purpose-built touch action bar for smartphones */
  .vh-doc-hero__actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }
  .vh-doc-act--book {
    width: 100%;
    justify-content: center;
    min-height: 48px;
    font-size: 0.96rem;
    padding: 12px 18px;
    border-radius: 10px;
    font-weight: 800;
  }
  .vh-doc-hero__quick-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    width: 100%;
  }
  .vh-doc-act--call {
    width: 100%;
    justify-content: center;
    min-height: 44px;
    font-size: 0.82rem;
    padding: 9px 8px;
    border-radius: 10px;
    text-align: center;
    gap: 6px;
  }
  .vh-doc-act--call span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .vh-doc-act--wa {
    width: 100%;
    justify-content: center;
    min-height: 44px;
    font-size: 0.82rem;
    padding: 9px 8px;
    border-radius: 10px;
    text-align: center;
    gap: 6px;
  }
  .vh-doc-act--ig {
    width: 100%;
    justify-content: center;
    min-height: 42px;
    font-size: 0.86rem;
    padding: 10px 14px;
    border-radius: 10px;
    text-align: center;
  }

  /* Body & Cards */
  .vh-doc-body-section {
    padding: 24px 0 40px;
  }
  .vh-doc-layout {
    gap: 20px;
  }
  .vh-doc-main-col {
    gap: 18px;
  }
  .vh-doc-card {
    padding: 20px 16px;
    border-radius: 14px;
  }
  .vh-doc-card h2 {
    font-size: 1.2rem;
    margin: 0 0 4px;
    line-height: 1.3;
  }
  .vh-doc-card__sub {
    font-size: 0.82rem;
    margin: 0 0 14px;
    line-height: 1.45;
  }

  /* Skills Pills */
  .vh-doc-skills-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .vh-skill-pill {
    padding: 9px 12px;
    font-size: 0.82rem;
    gap: 8px;
    border-radius: 8px;
  }
  .vh-skill-pill svg {
    flex-shrink: 0;
  }

  /* Article Typography */
  .vh-doc-article-text p {
    font-size: 0.92rem;
    line-height: 1.68;
    margin-bottom: 12px;
  }

  /* Facilities Grid inside doctor card */
  .vh-doc-card .vh-fac-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .vh-doc-card .vh-fac {
    padding: 14px 12px;
    gap: 12px;
    border-radius: 10px;
  }
  .vh-doc-card .vh-fac__icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    flex-shrink: 0;
  }
  .vh-doc-card .vh-fac strong {
    font-size: 0.9rem;
    margin-bottom: 2px;
  }
  .vh-doc-card .vh-fac p {
    font-size: 0.8rem;
    line-height: 1.45;
  }

  /* FAQs in doctor card */
  .vh-doc-card .vh-faq-simple-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .vh-doc-card .vh-faq-item {
    padding: 16px 14px;
    border-radius: 12px;
  }
  .vh-doc-card .vh-faq-item h4 {
    font-size: 0.94rem;
    margin-bottom: 6px;
    line-height: 1.35;
  }
  .vh-doc-card .vh-faq-item p {
    font-size: 0.82rem;
    line-height: 1.55;
  }

  /* Publications */
  .vh-pub-list {
    gap: 10px;
  }
  .vh-pub-list li {
    font-size: 0.82rem;
    line-height: 1.45;
    padding-left: 16px;
  }

  /* Instagram Card on Smartphone */
  .vh-instagram-card {
    padding: 18px 14px;
  }
  .vh-instagram-card__head {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding-bottom: 14px;
  }
  .vh-instagram-card__head-top {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .vh-instagram-badge-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    flex-shrink: 0;
  }
  .vh-instagram-badge-icon svg {
    width: 20px;
    height: 20px;
  }
  .vh-instagram-card__meta {
    min-width: 0;
    flex: 1;
  }
  .vh-instagram-card__user {
    gap: 6px;
  }
  .vh-instagram-card__user strong {
    font-size: 1.05rem;
  }
  .vh-ig-tag {
    font-size: 0.72rem;
    padding: 1px 6px;
  }
  .vh-ig-subtitle {
    font-size: 0.76rem;
    line-height: 1.35;
  }
  .vh-btn-ig-follow {
    width: 100%;
    text-align: center;
    padding: 9px 14px;
    border-radius: 8px;
    font-size: 0.86rem;
  }
  .vh-instagram-card__desc {
    font-size: 0.86rem;
    line-height: 1.55;
    margin-bottom: 12px;
  }
  .vh-instagram-embed {
    border-radius: 10px;
    overflow: hidden;
  }
  .vh-instagram-embed iframe {
    height: 400px !important;
  }
  .vh-instagram-embed__fallback {
    font-size: 0.78rem;
    margin-top: 8px;
    word-break: break-all;
  }
  .vh-btn-ig-view {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 10px 12px;
    background: #FAF0F6;
    border-radius: 8px;
    font-size: 0.84rem;
  }

  /* Sticky Sidebar Card */
  .vh-doc-sticky-card {
    padding: 20px 16px;
    border-radius: 14px;
  }
  .vh-doc-sticky-card__head {
    margin-bottom: 12px;
  }
  .vh-doc-sticky-card__head h3 {
    font-size: 1.05rem;
  }
  .vh-doc-timing-box {
    padding: 12px 12px;
  }
  .vh-timing-row {
    font-size: 0.82rem;
  }
  .vh-doc-sidebar-divider {
    margin: 14px 0;
  }
  .vh-doc-loc-box p {
    font-size: 0.82rem;
    margin-bottom: 14px;
  }
  .vh-doc-sidebar-actions {
    gap: 8px;
  }
}

/* Extra small smartphones (<= 380px) */
@media (max-width: 380px) {
  .vh-doc-hero__quick-contact {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .vh-doc-hero__media {
    max-width: 170px;
  }
  .vh-doc-hero__img-wrap {
    height: 190px;
  }
  .vh-doc-hero__name {
    font-size: 1.5rem;
  }
  .vh-doc-card {
    padding: 16px 12px;
  }
}

/* ============================================================
   DEPARTMENTS & SPECIALITIES PAGE STYLES
   ============================================================ */

/* ---- Hero ---- */
.vh-depts-hero {
  background: #FAFCFC;
  padding: 40px 0 36px;
  border-bottom: 1px solid var(--c-border, #DCE7E8);
}
.vh-depts-hero .breadcrumbs {
  margin-bottom: 18px;
  font-size: 0.84rem;
  color: var(--c-muted, #5A7377);
}
.vh-depts-hero .breadcrumbs a {
  color: var(--c-accent-dark, #006C75);
  text-decoration: none;
  font-weight: 500;
}
.vh-depts-hero__header h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 2.7rem);
  font-weight: 800;
  color: var(--c-ink-900, #072226);
  letter-spacing: -0.025em;
  margin: 0 0 12px;
}
.vh-depts-hero__lead {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--c-ink-700, #0B3A40);
  margin: 0;
  max-width: 680px;
}
.vh-dept-hero__eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-accent-dark, #006C75);
  margin-bottom: 8px;
}
.vh-dept-nav-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--c-border, #DCE7E8);
}
.vh-dept-pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  border-radius: 20px;
  background: #FFFFFF;
  border: 1px solid var(--c-border, #DCE7E8);
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--c-ink-800, #092B30);
  text-decoration: none;
  transition: all 0.2s ease;
}
.vh-dept-pill:hover {
  border-color: var(--c-accent, #00A4B4);
  color: var(--c-accent-dark, #006C75);
  background: #F4FAFB;
}
.vh-dept-pill.is-active {
  background: var(--c-ink-900, #072226);
  color: #FFFFFF !important;
  border-color: var(--c-ink-900, #072226);
  box-shadow: 0 4px 12px rgba(7, 34, 38, 0.12);
}

/* ---- Department Section ---- */
.vh-dept-section {
  padding: 64px 0 72px;
  background: #FFFFFF;
}
.vh-dept-section--alt {
  background: #F8FBFC;
  border-top: 1px solid var(--c-border, #DCE7E8);
  border-bottom: 1px solid var(--c-border, #DCE7E8);
}

/* ---- Department Top Banner ---- */
.vh-dept-banner {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 40px;
  align-items: center;
  background: #FAFCFC;
  border: 1.5px solid var(--c-border, #DCE7E8);
  border-radius: 20px;
  padding: 36px 32px;
  margin-bottom: 40px;
}
.vh-dept-banner--ortho {
  border-left: 5px solid var(--c-accent, #00A4B4);
}
.vh-dept-banner--gynae {
  border-left: 5px solid #008794;
}

.vh-dept-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #E8F5F6;
  border: 1px solid #D0EBEF;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--c-accent-dark, #006C75);
  margin-bottom: 12px;
}
.vh-dept-badge__icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.vh-dept-banner__main h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  font-weight: 800;
  color: var(--c-ink-900, #072226);
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}
.vh-dept-banner__main p {
  font-size: 0.96rem;
  line-height: 1.65;
  color: var(--c-ink-700, #0B3A40);
  margin: 0;
}

/* ---- Lead Doctor In Banner ---- */
.vh-dept-lead-doc {
  display: flex;
  gap: 18px;
  background: #FFFFFF;
  border: 1px solid var(--c-border, #DCE7E8);
  border-radius: 14px;
  padding: 20px 22px;
  align-items: center;
  box-shadow: 0 4px 16px rgba(7, 34, 38, 0.04);
}
.vh-dept-lead-doc__photo {
  width: 72px;
  height: 80px;
  border-radius: 10px;
  background: #E8F5F6;
  border: 1px solid #D0EBEF;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-shrink: 0;
}
.vh-dept-lead-doc__photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
}
.vh-doc-role {
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--c-accent-dark, #006C75);
  margin-bottom: 2px;
}
.vh-dept-lead-doc__info strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--c-ink-900, #072226);
  margin-bottom: 2px;
}
.vh-dept-lead-doc__info span {
  display: block;
  font-size: 0.78rem;
  color: var(--c-muted, #5A7377);
  line-height: 1.35;
  margin-bottom: 8px;
}
.vh-dept-doc-cta {
  display: flex;
  gap: 12px;
  align-items: center;
}
.vh-link-sm {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--c-accent-dark, #006C75);
  text-decoration: none;
}
.vh-link-sm:hover {
  text-decoration: underline;
}
.vh-link-call {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--c-ink-900, #072226);
  text-decoration: none;
}

/* ---- Services Grid (3-Column Clean Cards) ---- */
.vh-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.vh-service-item {
  background: #FFFFFF;
  border: 1.5px solid var(--c-border, #DCE7E8);
  border-radius: 16px;
  padding: 26px 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: all 0.22s ease;
}
.vh-service-item:hover {
  border-color: var(--c-accent, #00A4B4);
  box-shadow: 0 10px 24px rgba(7, 34, 38, 0.07);
  transform: translateY(-2px);
}
.vh-service-item__icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #E8F5F6;
  border: 1px solid #D0EBEF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.vh-service-item__icon-wrap img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}
.vh-service-item__content h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--c-ink-900, #072226);
  margin: 0 0 8px;
}
.vh-service-item__content p {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--c-muted, #5A7377);
  margin: 0 0 12px;
}
.vh-service-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.vh-service-bullets li {
  position: relative;
  padding-left: 18px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--c-ink-800, #092B30);
  line-height: 1.4;
}
.vh-service-bullets li::before {
  content: "•";
  position: absolute;
  left: 4px;
  color: var(--c-accent, #00A4B4);
  font-weight: 900;
}

/* ---- In-House Facilities Strip ---- */
.vh-dept-facilities-bar {
  background: #072226;
  color: #FFFFFF;
  padding: 44px 0;
}
.vh-dept-fac-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.vh-dept-fac-text h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0 0 6px;
}
.vh-dept-fac-text p {
  font-size: 0.9rem;
  color: #9EC0C5;
  margin: 0;
  max-width: 480px;
}
.vh-dept-fac-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 540px;
}
.vh-dept-fac-tags span {
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #E0F2F4;
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
  .vh-dept-banner {
    grid-template-columns: 1fr;
    padding: 28px 24px;
    gap: 24px;
  }
  .vh-services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .vh-dept-fac-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .vh-dept-nav-pills {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 6px;
    padding-bottom: 4px;
    margin-top: 18px;
    padding-top: 16px;
  }
  .vh-dept-nav-pills::-webkit-scrollbar {
    display: none;
  }
  .vh-dept-pill {
    white-space: nowrap;
    font-size: 0.78rem;
    padding: 6px 12px;
    flex-shrink: 0;
  }
  .vh-dept-section {
    padding: 40px 0 48px;
  }
  .vh-dept-banner {
    padding: 20px 16px;
    border-radius: 16px;
    margin-bottom: 28px;
  }
  .vh-dept-lead-doc {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 640px) {
  .vh-services-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .vh-service-item {
    padding: 20px 16px;
  }
}

/* ============================================================
   CONTACT PAGE — Human-Centered, High-Usability Styles
   ============================================================ */

/* ---- Contact Hero ---- */
.vh-contact-hero {
  background: #FAFCFC;
  padding: 40px 0 32px;
  border-bottom: 1px solid var(--c-border, #DCE7E8);
}
.vh-contact-hero .breadcrumbs {
  margin-bottom: 18px;
  font-size: 0.84rem;
  color: var(--c-muted, #5A7377);
}
.vh-contact-hero .breadcrumbs a {
  color: var(--c-accent-dark, #006C75);
  text-decoration: none;
  font-weight: 500;
}
.vh-contact-hero__header h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 2.7rem);
  font-weight: 800;
  color: var(--c-ink-900, #072226);
  letter-spacing: -0.025em;
  margin: 0 0 12px;
}
.vh-contact-hero__lead {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--c-ink-700, #0B3A40);
  margin: 0 0 28px;
  max-width: 680px;
}

/* ---- Emergency Notice Bar ---- */
.vh-emergency-bar {
  background: #FFF7F6;
  border: 1.5px solid #F8CFCB;
  border-left: 4px solid #D93829;
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.vh-emergency-bar__left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 280px;
}
.vh-emergency-badge {
  background: #D93829;
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 6px;
  flex-shrink: 0;
}
.vh-emergency-bar__left p {
  font-size: 0.92rem;
  font-weight: 600;
  color: #781912;
  margin: 0;
  line-height: 1.45;
}
.vh-emergency-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #D93829;
  color: #FFFFFF;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}
.vh-emergency-call-btn:hover {
  background: #B82517;
  color: #FFFFFF;
  transform: translateY(-1px);
}

/* ---- Direct Communication Channels ---- */
.vh-contact-channels {
  background: #FFFFFF;
  padding: 44px 0 20px;
}
.vh-channel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.vh-channel-card {
  background: #FAFCFC;
  border: 1.5px solid var(--c-border, #DCE7E8);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.vh-channel-card:hover {
  border-color: var(--c-accent, #00A4B4);
  box-shadow: 0 8px 24px rgba(7, 34, 38, 0.06);
  transform: translateY(-2px);
}
.vh-channel-card__head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}
.vh-channel-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #E8F5F6;
  border: 1px solid #D0EBEF;
  color: var(--c-accent-dark, #006C75);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.vh-channel-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #E8F5F6;
  border: 1px solid #D0EBEF;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-shrink: 0;
}
.vh-channel-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
}
.vh-channel-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--c-accent-dark, #006C75);
  margin-bottom: 2px;
}
.vh-channel-card__head h3 {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--c-ink-900, #072226);
  margin: 0;
}
.vh-channel-card__desc {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--c-muted, #5A7377);
  margin: 0 0 20px;
  flex-grow: 1;
}
.vh-channel-card__actions {
  display: flex;
  gap: 10px;
  align-items: center;
}
.vh-channel-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  flex: 1;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.vh-channel-btn--call {
  background: var(--c-ink-900, #072226);
  color: #FFFFFF;
}
.vh-channel-btn--call:hover {
  background: var(--c-accent, #00A4B4);
  color: #FFFFFF;
}
.vh-channel-btn--wa {
  background: #E8F5E9;
  border: 1px solid #C8E6C9;
  color: #1E7E34;
}
.vh-channel-btn--wa:hover {
  background: #25D366;
  border-color: #25D366;
  color: #FFFFFF;
}

/* ---- Main 2-Column Section (Form + Info) ---- */
.vh-contact-main {
  background: #FFFFFF;
  padding: 40px 0 68px;
}
.vh-contact-main__grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 40px;
  align-items: start;
}

.vh-form-card {
  background: #FAFCFC;
  border: 1.5px solid var(--c-border, #DCE7E8);
  border-radius: 18px;
  padding: 32px 30px;
}
.vh-form-card__head {
  margin-bottom: 24px;
}
.vh-form-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--c-accent-dark, #006C75);
  margin-bottom: 6px;
}
.vh-form-card__head h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--c-ink-900, #072226);
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}
.vh-form-card__head p {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--c-muted, #5A7377);
  margin: 0;
}
.vh-form-footer {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.vh-form-privacy {
  font-size: 0.8rem;
  color: var(--c-muted, #5A7377);
}

/* ---- Right Column: Info Boxes ---- */
.vh-contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.vh-info-box {
  background: #FAFCFC;
  border: 1.5px solid var(--c-border, #DCE7E8);
  border-radius: 16px;
  padding: 26px;
}
.vh-info-box__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--c-accent-dark, #006C75);
}
.vh-info-box__header h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--c-ink-900, #072226);
  margin: 0;
}
.vh-timings-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.vh-timing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: #FFFFFF;
  border: 1px solid var(--c-border, #DCE7E8);
  border-radius: 8px;
}
.vh-timing-row--emergency {
  background: #F0FBFB;
  border-color: #C2EAEB;
}
.vh-timing-row--emergency .vh-timing-time {
  color: var(--c-accent-dark, #006C75);
}
.vh-timing-day {
  font-size: 0.88rem;
  color: var(--c-ink-800, #092B30);
  font-weight: 500;
}
.vh-timing-time {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--c-ink-900, #072226);
}

.vh-address-text {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--c-ink-800, #092B30);
  margin: 0 0 10px;
}
.vh-landmarks-text {
  font-size: 0.84rem;
  line-height: 1.5;
  color: var(--c-muted, #5A7377);
  margin: 0 0 16px;
}
.vh-contact-map-wrap {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--c-border, #DCE7E8);
  margin-bottom: 14px;
}
.vh-directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--c-accent-dark, #006C75);
  text-decoration: none;
  transition: color 0.2s ease;
}
.vh-directions-btn:hover {
  color: var(--c-accent, #00A4B4);
}

/* ---- Contact Page FAQs ---- */
.vh-contact-faqs {
  background: #F8FBFC;
  padding: 64px 0 76px;
  border-top: 1px solid var(--c-border, #DCE7E8);
}
.vh-contact-faqs h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: var(--c-ink-900, #072226);
  letter-spacing: -0.02em;
  margin: 0 0 32px;
  text-align: center;
}
.vh-faq-simple-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.vh-faq-item {
  background: #FFFFFF;
  border: 1px solid var(--c-border, #DCE7E8);
  border-radius: 14px;
  padding: 24px 22px;
}
.vh-faq-item h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--c-ink-900, #072226);
  margin: 0 0 8px;
}
.vh-faq-item p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--c-muted, #5A7377);
  margin: 0;
}

/* ---- Contact Responsive ---- */
@media (max-width: 991px) {
  .vh-channel-grid {
    grid-template-columns: 1fr;
  }
  .vh-contact-main__grid {
    grid-template-columns: 1fr;
  }
  .vh-faq-simple-grid {
    grid-template-columns: 1fr;
  }
  .vh-emergency-bar {
    flex-direction: column;
    align-items: flex-start;
  }
  .vh-emergency-call-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
   ABOUT PAGE — Clean, Human-Centered Editorial Styles
   ============================================================ */

/* ---- Hero ---- */
.vh-about-hero {
  background: #FAFCFC;
  padding: 40px 0 52px;
  border-bottom: 1px solid var(--c-border, #DCE7E8);
}

.vh-about-hero .breadcrumbs {
  margin-bottom: 20px;
  font-size: 0.84rem;
  color: var(--c-muted, #5A7377);
}
.vh-about-hero .breadcrumbs a {
  color: var(--c-accent-dark, #006C75);
  text-decoration: none;
  font-weight: 500;
}

.vh-about-hero__grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 48px;
  align-items: center;
}

.vh-about-hero__content h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 2.7rem);
  font-weight: 800;
  color: var(--c-ink-900, #072226);
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin: 0 0 18px;
}

.vh-about-hero__lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--c-ink-700, #0B3A40);
  margin: 0 0 28px;
  max-width: 560px;
}

.vh-about-hero__actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.vh-about-hero__media {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #FFFFFF;
  border: 1px solid var(--c-border, #DCE7E8);
  border-radius: 18px;
  padding: 20px 20px 14px;
  box-shadow: 0 8px 30px rgba(7, 34, 38, 0.06);
}

.vh-building-img {
  width: 100%;
  height: auto;
  max-height: 360px;
  object-fit: contain;
  display: block;
}

.vh-building-label {
  margin-top: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--c-muted, #5A7377);
  letter-spacing: 0.02em;
}

/* ---- Numbers Strip ---- */
.vh-about-numbers {
  background: #FFFFFF;
  border-bottom: 1px solid var(--c-border, #DCE7E8);
  padding: 24px 0;
}

.vh-about-numbers__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.vh-num {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.vh-num strong {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  font-weight: 800;
  color: var(--c-ink-900, #072226);
  line-height: 1.1;
}

.vh-num span {
  font-size: 0.82rem;
  color: var(--c-muted, #5A7377);
  font-weight: 500;
}

/* ---- Story ---- */
.vh-about-story {
  background: #FFFFFF;
  padding: 72px 0;
}

.vh-about-story__layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 52px;
  align-items: start;
}

.vh-about-story__text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: var(--c-ink-900, #072226);
  letter-spacing: -0.02em;
  margin: 0 0 20px;
}

.vh-about-story__text p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--c-ink-700, #0B3A40);
  margin: 0 0 16px;
}

.vh-promise-card {
  background: #F4F9FA;
  border: 1px solid var(--c-border, #DCE7E8);
  border-radius: 16px;
  padding: 28px 24px;
}

.vh-promise-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--c-ink-900, #072226);
  margin: 0 0 16px;
}

.vh-promise-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.vh-promise-card li {
  position: relative;
  padding-left: 26px;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--c-ink-800, #092B30);
}

.vh-promise-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--c-accent-dark, #006C75);
  font-weight: 800;
  font-size: 0.85rem;
}

/* ---- Facilities ---- */
.vh-about-facilities {
  background: #F8FBFC;
  padding: 68px 0 76px;
  border-top: 1px solid var(--c-border, #DCE7E8);
  border-bottom: 1px solid var(--c-border, #DCE7E8);
}

.vh-about-facilities h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: var(--c-ink-900, #072226);
  letter-spacing: -0.02em;
  margin: 0 0 6px;
}

.vh-about-facilities__sub {
  font-size: 0.98rem;
  color: var(--c-muted, #5A7377);
  margin: 0 0 36px;
}

.vh-fac-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.vh-fac {
  display: flex;
  gap: 16px;
  background: #FFFFFF;
  border: 1px solid var(--c-border, #DCE7E8);
  border-radius: 12px;
  padding: 22px 20px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.vh-fac:hover {
  border-color: var(--c-accent, #00A4B4);
  box-shadow: 0 6px 18px rgba(7, 34, 38, 0.05);
}

.vh-fac__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #E8F5F6;
  color: var(--c-accent-dark, #006C75);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vh-fac strong {
  display: block;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--c-ink-900, #072226);
  margin-bottom: 4px;
}

.vh-fac p {
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--c-muted, #5A7377);
  margin: 0;
}

/* ---- Doctors Section ---- */
.vh-about-doctors {
  background: #FFFFFF;
  padding: 72px 0 80px;
}

.vh-about-doctors h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: var(--c-ink-900, #072226);
  letter-spacing: -0.02em;
  margin: 0 0 36px;
}

.vh-doc-profiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.vh-doc-profile {
  display: flex;
  gap: 24px;
  background: #FAFCFC;
  border: 1px solid var(--c-border, #DCE7E8);
  border-radius: 16px;
  padding: 28px;
  align-items: flex-start;
}

.vh-doc-profile__photo {
  width: 110px;
  height: 125px;
  border-radius: 12px;
  background: #E8F5F6;
  border: 1px solid #D0EBEF;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.vh-doc-profile__photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
  display: block;
}

.vh-doc-profile__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--c-accent-dark, #006C75);
  margin-bottom: 4px;
}

.vh-doc-profile__info h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--c-ink-900, #072226);
  margin: 0 0 3px;
}

.vh-doc-profile__degrees {
  display: block;
  font-size: 0.78rem;
  color: var(--c-muted, #5A7377);
  font-weight: 500;
  margin-bottom: 12px;
}

.vh-doc-profile__info p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--c-ink-700, #0B3A40);
  margin: 0 0 16px;
}

.vh-doc-profile__links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ---- About CTA ---- */
.vh-about-cta {
  background: #072226;
  color: #FFFFFF;
  padding: 56px 0;
}

.vh-about-cta__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}

.vh-about-cta__inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}

.vh-about-cta__inner p {
  font-size: 0.95rem;
  color: #9EC0C5;
  margin: 0;
  max-width: 520px;
}

.vh-about-cta__buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  align-items: center;
}

/* ---- About Responsive ---- */
@media (max-width: 991px) {
  .vh-about-hero__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .vh-about-story__layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .vh-fac-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .vh-doc-profiles {
    grid-template-columns: 1fr;
  }
  .vh-about-cta__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .vh-about-numbers__row {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .vh-fac-grid {
    grid-template-columns: 1fr;
  }
  .vh-doc-profile {
    flex-direction: column;
    align-items: flex-start;
  }
  .vh-doc-profile__photo {
    width: 100px;
    height: 110px;
  }
  .vh-about-cta__buttons {
    flex-direction: column;
    width: 100%;
  }
  .vh-about-cta__buttons .vh-btn-primary,
  .vh-about-cta__buttons .vh-btn-call {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
   GLOBAL LAYOUT RESPONSIVE
   ============================================================ */

@media (max-width: 900px) {
  .grid--sidebar { grid-template-columns: 1fr; }
  .vh-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .vh-footer__col--brand { grid-column: span 2; padding-right: 0; }
}

@media (max-width: 720px) {
  .form-grid { grid-template-columns: 1fr; }
  .form-group--full { grid-column: span 1; }
  .vh-footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .vh-footer__col--brand { grid-column: span 1; }
  .vh-footer-cta__inner { flex-direction: column; align-items: flex-start; }
  .vh-footer-cta__actions { width: 100%; }
  .vh-footer-cta__btn { flex: 1; justify-content: center; }
}

/* ============================================================
   CRO ADDITIONS — MOBILE STICKY BAR + SOCIAL PROOF HERO ELEMENTS
   Mobile-first. Highest-impact conversion improvements.
   ============================================================ */

/* ---- 1. STICKY MOBILE BOTTOM CTA BAR ---- */
.vh-sticky-mobile-bar {
  display: none; /* hidden on desktop */
}

@media (max-width: 767px) {
  .vh-sticky-mobile-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1200;
    background: #FFFFFF;
    border-top: 2px solid var(--c-accent, #00A4B4);
    box-shadow: 0 -4px 20px rgba(7, 34, 38, 0.15);
    padding: 8px 12px;
    gap: 8px;
    padding-bottom: max(8px, env(safe-area-inset-bottom));
  }

  .vh-sticky-bar__btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 8px 4px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    transition: all 0.15s ease;
    line-height: 1;
  }

  .vh-sticky-bar__btn--call {
    background: var(--c-ink-700, #0B3A40);
    color: #FFFFFF;
  }
  .vh-sticky-bar__btn--call:hover,
  .vh-sticky-bar__btn--call:active {
    background: var(--c-ink-900, #072226);
    color: #FFFFFF;
    transform: translateY(-1px);
  }

  .vh-sticky-bar__btn--whatsapp {
    background: #25D366;
    color: #FFFFFF;
  }
  .vh-sticky-bar__btn--whatsapp:hover,
  .vh-sticky-bar__btn--whatsapp:active {
    background: #1EBE5A;
    color: #FFFFFF;
    transform: translateY(-1px);
  }

  .vh-sticky-bar__btn--book {
    background: var(--c-accent, #00A4B4);
    color: #FFFFFF;
    flex: 1.4; /* slightly wider — primary CTA */
  }
  .vh-sticky-bar__btn--book:hover,
  .vh-sticky-bar__btn--book:active {
    background: var(--c-accent-dark, #006C75);
    color: #FFFFFF;
    transform: translateY(-1px);
  }

  /* Push page content up so sticky bar doesn't hide footer links */
  body {
    padding-bottom: 76px;
  }
}

/* ---- 2. HERO SOCIAL PROOF PILL + OPD STATUS ---- */
.vh-hero__social-proof {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.vh-hero__stars-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 215, 0, 0.12);
  border: 1px solid rgba(255, 183, 0, 0.35);
  border-radius: 20px;
  padding: 5px 12px;
}

.vh-hero__stars {
  color: #F5B800;
  font-size: 0.95rem;
  letter-spacing: 1px;
}

.vh-hero__stars-text {
  font-size: 0.82rem;
  color: var(--c-ink-700, #0B3A40);
  font-weight: 500;
}

.vh-hero__stars-text strong {
  font-weight: 800;
  color: var(--c-ink-900, #072226);
}

/* OPD Status badge */
.vh-hero__opd-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.vh-hero__opd-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  animation: vh-pulse 2s ease-in-out infinite;
}

@keyframes vh-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.vh-hero__opd-status--open {
  background: rgba(0, 164, 100, 0.12);
  border: 1px solid rgba(0, 164, 100, 0.3);
  color: #006B3C;
}
.vh-hero__opd-status--open .vh-hero__opd-dot {
  background: #00A464;
}

.vh-hero__opd-status--emergency {
  background: rgba(196, 69, 58, 0.1);
  border: 1px solid rgba(196, 69, 58, 0.3);
  color: #C4453A;
}
.vh-hero__opd-status--emergency .vh-hero__opd-dot {
  background: #C4453A;
}

/* ---- 3. TRUST BAR SCROLL FADE INDICATOR ---- */
.vh-trust-bar {
  position: relative;
}

@media (max-width: 767px) {
  .vh-trust-bar::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 48px;
    background: linear-gradient(to right, transparent, var(--c-bg-primary, #FAFCFC));
    pointer-events: none;
    z-index: 2;
  }

  .vh-trust-bar__inner {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-right: 24px; /* breathe room before fade */
  }
  .vh-trust-bar__inner::-webkit-scrollbar { display: none; }

  .vh-trust-item {
    scroll-snap-align: start;
    flex-shrink: 0;
  }
}

/* ============================================================
   SINGLE BLOG POST EDITORIAL STYLES (.vh-single-post)
   Designed for Medical Authority, Readability & Conversion
   ============================================================ */

.vh-single-post {
  background: var(--c-bg-primary, #FAFCFC);
}

/* 1. Article Hero */
.vh-post-hero {
  background: #FFFFFF;
  border-bottom: 1px solid var(--c-border, #DCE7E8);
  padding: 32px 0 28px;
}

.vh-breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.84rem;
  color: var(--c-muted, #5A7377);
  margin-bottom: 20px;
}
.vh-breadcrumbs a {
  color: var(--c-ink-700, #0B3A40);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s ease;
}
.vh-breadcrumbs a:hover {
  color: var(--c-accent, #00A4B4);
}
.vh-breadcrumbs__sep {
  color: #B0C4C7;
  font-size: 0.8rem;
}
.vh-breadcrumbs__current {
  color: var(--c-muted, #5A7377);
  max-width: 320px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vh-post-hero__meta-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.vh-post-hero__category-pill {
  display: inline-flex;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 4px 12px;
  border-radius: 20px;
  background: var(--c-accent-tint-10, #E3F5F6);
  color: var(--c-accent-dark, #006C75);
  text-decoration: none;
  transition: all 0.2s ease;
}
.vh-post-hero__category-pill:hover {
  background: var(--c-accent, #00A4B4);
  color: #FFFFFF;
}

.vh-post-hero__read-time {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  color: var(--c-muted, #5A7377);
  font-weight: 500;
}

.vh-post-hero__title {
  font-family: var(--font-display, 'Helvetica Now', sans-serif);
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 800;
  color: var(--c-ink-900, #072226);
  line-height: 1.25;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
  max-width: 960px;
}

.vh-post-hero__lead {
  font-size: 1.12rem;
  line-height: 1.65;
  color: var(--c-muted, #5A7377);
  margin-bottom: 24px;
  max-width: 880px;
}

/* Author / Reviewer bar */
.vh-post-hero__author-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--c-border, #DCE7E8);
}

.vh-post-hero__doc-profile {
  display: flex;
  align-items: center;
  gap: 14px;
}

.vh-post-hero__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--c-accent, #00A4B4);
  background: #EAF4F5;
  flex-shrink: 0;
}
.vh-post-hero__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vh-post-hero__doc-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.vh-post-hero__doc-top {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.vh-post-hero__doc-name {
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--c-ink-900, #072226);
  text-decoration: none;
}
.vh-post-hero__doc-name:hover {
  color: var(--c-accent, #00A4B4);
}

.vh-badge-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  background: rgba(0, 164, 100, 0.1);
  color: #00874e;
  padding: 2px 8px;
  border-radius: 12px;
  border: 1px solid rgba(0, 164, 100, 0.25);
}

.vh-post-hero__doc-sub {
  font-size: 0.82rem;
  color: var(--c-muted, #5A7377);
  display: flex;
  align-items: center;
  gap: 6px;
}
.vh-post-hero__sep {
  color: #CBD9DB;
}

.vh-post-hero__share {
  display: flex;
  align-items: center;
  gap: 10px;
}
.vh-post-hero__share-label {
  font-size: 0.84rem;
  color: var(--c-muted, #5A7377);
  font-weight: 600;
}
.vh-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.84rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.vh-share-btn--wa {
  background: #25D366;
  color: #FFFFFF;
}
.vh-share-btn--wa:hover {
  background: #1EBE5A;
  color: #FFFFFF;
  transform: translateY(-1px);
}

/* 2. Featured Banner */
.vh-post-banner {
  padding-top: 24px;
}
.vh-post-banner__inner {
  border-radius: var(--radius-md, 12px);
  overflow: hidden;
  background: #FFFFFF;
  border: 1px solid var(--c-border, #DCE7E8);
  box-shadow: 0 4px 20px rgba(7, 34, 38, 0.05);
}
.vh-post-banner__img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
  display: block;
}
.vh-post-banner__placeholder {
  background: linear-gradient(135deg, #072226 0%, #0B3A40 100%);
  padding: 40px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}
.vh-post-banner__svg {
  max-height: 200px;
  width: auto;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.25));
}

/* 3. Post Layout Grid */
.vh-post-body-section {
  padding: 40px 0 60px;
}
.vh-post-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

.vh-post-main {
  min-width: 0;
}

/* Article Typography */
.vh-article-content {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--c-ink-900, #072226);
}

.vh-article-content p {
  margin-bottom: 24px;
}
.vh-article-content p.lead {
  font-size: 1.22rem;
  line-height: 1.7;
  color: var(--c-ink-700, #0B3A40);
  font-weight: 500;
  border-left: 3px solid var(--c-accent, #00A4B4);
  padding-left: 18px;
  margin-bottom: 30px;
}

.vh-article-content h2 {
  font-family: var(--font-display, sans-serif);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--c-ink-900, #072226);
  margin: 40px 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #E8EFF0;
  line-height: 1.3;
}

.vh-article-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--c-ink-700, #0B3A40);
  margin: 28px 0 12px;
}

.vh-article-content ul,
.vh-article-content ol {
  margin: 0 0 26px 20px;
  padding-left: 10px;
}
.vh-article-content li {
  margin-bottom: 10px;
  line-height: 1.68;
}

/* Callout Note */
.vh-article-callout {
  display: flex;
  gap: 16px;
  background: #F0F9FA;
  border-left: 4px solid var(--c-accent, #00A4B4);
  padding: 20px 22px;
  border-radius: 0 10px 10px 0;
  margin: 32px 0;
}
.vh-article-callout__icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  line-height: 1;
}
.vh-article-callout__body h4 {
  margin: 0 0 6px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-accent-dark, #006C75);
}
.vh-article-callout__body p {
  margin: 0;
  font-size: 0.98rem;
  font-style: italic;
  color: var(--c-ink-900, #072226);
}

/* Highlight warning box */
.vh-article-highlight-box {
  background: #FFF8F6;
  border: 1.5px solid #F8D7D2;
  border-left: 4px solid #C4453A;
  padding: 24px;
  border-radius: 8px;
  margin: 36px 0;
}
.vh-article-highlight-box h3 {
  color: #A8352B;
  margin: 0 0 12px;
  font-size: 1.15rem;
}
.vh-article-highlight-box p {
  margin-bottom: 14px;
  font-size: 0.98rem;
}
.vh-article-highlight-box ol {
  margin-bottom: 0;
}

/* Taxonomies & Tags */
.vh-post-taxonomies {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 24px 0;
  border-top: 1px solid var(--c-border, #DCE7E8);
  border-bottom: 1px solid var(--c-border, #DCE7E8);
  margin: 40px 0;
}
.vh-post-taxonomies__label {
  font-weight: 600;
  font-size: 0.86rem;
  color: var(--c-muted, #5A7377);
}
.vh-post-tag {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 16px;
  background: #EDF4F5;
  color: var(--c-ink-700, #0B3A40);
  text-decoration: none;
  transition: all 0.15s ease;
}
.vh-post-tag:hover {
  background: var(--c-accent, #00A4B4);
  color: #FFFFFF;
}

/* Author Box */
.vh-author-card {
  display: flex;
  gap: 22px;
  background: #FFFFFF;
  border: 1px solid var(--c-border, #DCE7E8);
  border-radius: var(--radius-md, 12px);
  padding: 28px;
  margin-bottom: 36px;
  box-shadow: 0 4px 18px rgba(7, 34, 38, 0.04);
}
.vh-author-card__avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--c-accent, #00A4B4);
  background: #EAF4F5;
  flex-shrink: 0;
}
.vh-author-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vh-author-card__content {
  flex: 1;
}
.vh-author-card__eyebrow {
  display: block;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--c-accent-dark, #006C75);
  margin-bottom: 4px;
}
.vh-author-card__name {
  font-size: 1.28rem;
  font-weight: 800;
  color: var(--c-ink-900, #072226);
  margin: 0 0 4px;
}
.vh-author-card__deg {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--c-muted, #5A7377);
  margin-bottom: 10px;
}
.vh-author-card__bio {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--c-ink-700, #0B3A40);
  margin-bottom: 18px;
}
.vh-author-card__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Post Navigation (Prev/Next) */
.vh-post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}
.vh-post-nav__item {
  background: #FFFFFF;
  border: 1px solid var(--c-border, #DCE7E8);
  border-radius: var(--radius-sm, 8px);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: all 0.2s ease;
}
.vh-post-nav__item:hover {
  border-color: var(--c-accent, #00A4B4);
  box-shadow: 0 4px 14px rgba(0, 164, 180, 0.08);
}
.vh-post-nav__sub {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--c-muted, #5A7377);
}
.vh-post-nav__title {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--c-ink-900, #072226);
  text-decoration: none;
  line-height: 1.35;
}
.vh-post-nav__title:hover {
  color: var(--c-accent, #00A4B4);
}

/* 4. Sidebar Styles */
.vh-post-sidebar {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.vh-sidebar-card {
  background: #FFFFFF;
  border: 1px solid var(--c-border, #DCE7E8);
  border-radius: var(--radius-md, 12px);
  padding: 24px;
  box-shadow: 0 2px 12px rgba(7, 34, 38, 0.04);
}

.vh-sidebar-card--primary {
  border-top: 4px solid var(--c-accent, #00A4B4);
}

.vh-sidebar-card__header {
  margin-bottom: 16px;
}
.vh-sidebar-card__eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--c-accent-dark, #006C75);
  margin-bottom: 4px;
}
.vh-sidebar-card__title {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--c-ink-900, #072226);
  margin: 0 0 6px;
  line-height: 1.3;
}
.vh-sidebar-card__desc {
  font-size: 0.86rem;
  color: var(--c-muted, #5A7377);
  margin: 0;
  line-height: 1.5;
}

.vh-sidebar-doc-preview {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #F4F8F8;
  padding: 10px 12px;
  border-radius: 8px;
  margin-bottom: 16px;
}
.vh-sidebar-doc-preview__img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--c-accent, #00A4B4);
}
.vh-sidebar-doc-preview strong {
  display: block;
  font-size: 0.9rem;
  color: var(--c-ink-900, #072226);
}
.vh-sidebar-doc-preview span {
  font-size: 0.76rem;
  color: var(--c-muted, #5A7377);
}

.vh-sidebar-card__hours {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #FAFDFD;
  border: 1px solid var(--c-border, #DCE7E8);
  border-radius: 6px;
  padding: 10px 12px;
  margin-bottom: 18px;
  font-size: 0.82rem;
}
.vh-sidebar-card__hours strong {
  display: block;
  color: var(--c-ink-900, #072226);
}
.vh-sidebar-card__hours span {
  color: var(--c-muted, #5A7377);
}

.vh-sidebar-card__actions {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.vh-btn--full {
  width: 100%;
  justify-content: center;
}

.vh-sidebar-wa-btn {
  display: block;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  color: #1a8f46;
  text-decoration: none;
  padding: 6px;
  border-radius: 6px;
  transition: all 0.15s ease;
}
.vh-sidebar-wa-btn:hover {
  background: #E8F8F0;
  color: #126631;
}

/* Sidebar Emergency */
.vh-sidebar-card--emergency {
  background: linear-gradient(135deg, #FFF5F4 0%, #FFF8F6 100%);
  border: 1.5px solid #F5C6C0;
  border-top: 4px solid #C4453A;
}
.vh-emergency-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: #C4453A;
  color: #FFFFFF;
  padding: 2px 8px;
  border-radius: 10px;
  margin-bottom: 8px;
}
.vh-sidebar-card--emergency h4 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  color: #072226;
  font-weight: 800;
}
.vh-sidebar-card--emergency p {
  font-size: 0.84rem;
  color: var(--c-muted, #5A7377);
  margin-bottom: 14px;
  line-height: 1.45;
}
.vh-emergency-call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #C4453A;
  color: #FFFFFF;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.15s ease;
}
.vh-emergency-call-btn:hover {
  background: #A8352B;
  color: #FFFFFF;
}

/* Sidebar Departments */
.vh-sidebar-subheading {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--c-ink-900, #072226);
  margin: 0 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--c-border, #DCE7E8);
}
.vh-sidebar-dept-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.vh-sidebar-dept-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--c-ink-700, #0B3A40);
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.15s ease;
}
.vh-sidebar-dept-list li a:hover {
  background: var(--c-accent-tint-10, #E3F5F6);
  color: var(--c-accent-dark, #006C75);
  transform: translateX(2px);
}

/* 5. Related Articles Grid */
.vh-related-posts-section {
  background: #FFFFFF;
  border-top: 1px solid var(--c-border, #DCE7E8);
  padding: 56px 0 64px;
}
.vh-related-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 36px;
}
.vh-related-posts-footer {
  margin-top: 12px;
}

/* 6. Bottom Consultation Banner */
.vh-bottom-consult-bar {
  background: linear-gradient(135deg, #072226 0%, #0B3A40 100%);
  color: #FFFFFF;
  padding: 44px 0;
}
.vh-bottom-consult-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 28px;
}
.vh-bottom-consult-bar__copy {
  max-width: 600px;
}
.vh-bottom-consult-bar__copy h2 {
  color: #FFFFFF;
  font-size: clamp(1.45rem, 2.5vw, 1.95rem);
  margin: 6px 0 8px;
  font-weight: 800;
}
.vh-bottom-consult-bar__copy p {
  color: #CFE9EB;
  font-size: 0.96rem;
  line-height: 1.55;
  margin: 0;
}
.vh-bottom-consult-bar__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Responsive Rules for Single Post */
@media (max-width: 960px) {
  .vh-post-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .vh-post-sidebar {
    position: static;
  }
  .vh-related-posts-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .vh-post-hero {
    padding: 24px 0 20px;
  }
  .vh-post-hero__title {
    font-size: 1.6rem;
  }
  .vh-post-hero__author-bar {
    flex-direction: column;
    align-items: flex-start;
  }
  .vh-author-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 22px 18px;
  }
  .vh-author-card__actions {
    justify-content: center;
    width: 100%;
  }
  .vh-author-card__actions .vh-btn {
    width: 100%;
  }
  .vh-post-nav {
    grid-template-columns: 1fr;
  }
  .vh-bottom-consult-bar__inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .vh-bottom-consult-bar__actions {
    width: 100%;
    flex-direction: column;
  }
  .vh-bottom-consult-bar__actions .vh-btn {
    width: 100%;
  }
}

