/* ============================================================
   DR. V.V. AGARWAL — HOMEPAGE
   Light · elderly-accessible · bilingual EN + HI
   ============================================================ */

/* SEO fallback: in DOM for crawlers, hidden from sighted users until React loads */
.seo-prerender {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:root {
  --cardiac-blue: #1B3A6B;
  --cardiac-blue-mid: #2455A4;
  --cardiac-blue-light: #EBF2FF;
  --cardiac-blue-deep: #0F2347;
  --teal-primary: #0B7A8C;
  --teal-light: #E6F6F8;
  --heart-red: #C0392B;
  --coral-accent: #E8604C;
  --gold-accent: #D4A017;
  --white: #FFFFFF;
  --off-white: #F8FAFC;
  --text-primary: #1A1A2E;
  --text-body: #374151;
  --text-muted: #6B7280;
  --border: #E2E8F0;
  --emergency-red: #DC2626;

  --grad-hero: linear-gradient(135deg, #0F2347 0%, #1B3A6B 50%, #0B7A8C 100%);
  --grad-cta: linear-gradient(90deg, #E8604C 0%, #C0392B 100%);

  --shadow-sm: 0 1px 4px rgba(27, 58, 107, 0.06);
  --shadow-md: 0 4px 16px rgba(27, 58, 107, 0.10);
  --shadow-lg: 0 8px 32px rgba(27, 58, 107, 0.16);
  --shadow-glow: 0 0 24px rgba(11, 122, 140, 0.30);

  --serif: "Noto Serif", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --deva: "Noto Sans Devanagari", "Noto Serif", sans-serif;

  --header-h: 108px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- bilingual heading ---------- */
.bi-heading .en {
  font-family: var(--serif);
  font-weight: 700;
  color: var(--cardiac-blue);
  line-height: 1.15;
  margin: 0;
  letter-spacing: -0.01em;
}

.bi-heading .hi {
  font-family: var(--deva);
  font-weight: 400;
  color: var(--text-muted);
  margin: 6px 0 0;
  line-height: 1.5;
}

.bi-heading.on-dark .en {
  color: var(--white);
}

.bi-heading.on-dark .hi {
  color: rgba(255, 255, 255, 0.7);
}

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

.h1 .en {
  font-size: clamp(30px, 5vw, 56px);
}

.h1 .hi {
  font-size: clamp(20px, 3vw, 30px);
}

.h2 .en {
  font-size: clamp(26px, 3.4vw, 40px);
}

.h2 .hi {
  font-size: clamp(18px, 2vw, 26px);
}

.h3 .en {
  font-size: clamp(20px, 2vw, 24px);
}

.h3 .hi {
  font-size: clamp(14px, 1.4vw, 16px);
}

/* ---------- reveal-on-scroll ---------- */
.reveal {
  opacity: 0;
  will-change: transform, opacity;
}

.reveal.fade-up {
  transform: translateY(28px);
}

.reveal.fade-in {
  transform: none;
}

.reveal.slide-left {
  transform: translateX(-40px);
}

.reveal.slide-right {
  transform: translateX(40px);
}

.reveal.scale-in {
  transform: scale(0.92);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.is-in.delay-1 {
  transition-delay: 0.10s;
}

.reveal.is-in.delay-2 {
  transition-delay: 0.20s;
}

.reveal.is-in.delay-3 {
  transition-delay: 0.30s;
}

.reveal.is-in.delay-4 {
  transition-delay: 0.40s;
}

.reveal.is-in.delay-5 {
  transition-delay: 0.50s;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* ---------- tweak-driven toggles ---------- */
body.hide-hindi .hi,
body.hide-hindi .name-hi,
body.hide-hindi .fname-hi,
body.hide-hindi .l2 {
  display: none !important;
}

body.no-motion *,
body.no-motion *::before,
body.no-motion *::after {
  animation: none !important;
  transition: none !important;
}

/* ============================================================
   TOP BAR + HEADER
   ============================================================ */
.topbar {
  background: var(--cardiac-blue);
  color: var(--white);
  font-size: 14px;
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 40px;
  gap: 16px;
}

.topbar .tb-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.topbar a:hover {
  color: #cfe0ff;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.header.compact {
  box-shadow: var(--shadow-md);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  transition: height 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  gap: 24px;
}

.header.compact .container {
  height: 60px;
}

.logo-block {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-block .l1 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--cardiac-blue);
}

.logo-block .l3 {
  font-size: 11px;
  color: var(--teal-primary);
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-body);
  padding: 6px 2px;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--cardiac-blue);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--cardiac-blue);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.btn-book {
  position: relative;
  overflow: hidden;
  background: var(--cardiac-blue);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 10px;
  line-height: 1.1;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.btn-book .en {
  font-size: 15px;
  font-weight: 600;
}

.btn-book .hi {
  font-family: var(--deva);
  font-size: 11px;
  opacity: 0.85;
}

.btn-book:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 20px rgba(27, 58, 107, 0.40);
}

.btn-book:active {
  transform: scale(0.97);
}

.btn-book::after {
  content: '';
  position: absolute;
  inset: 0;
  transform: translateX(-120%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
}

.btn-book:hover::after {
  animation: shimmer 0.9s ease;
}

@keyframes shimmer {
  to {
    transform: translateX(120%);
  }
}

.hamburger {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  color: var(--cardiac-blue);
}

/* mobile drawer */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(15, 35, 71, 0.45);
  backdrop-filter: blur(3px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.drawer-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 201;
  width: min(82vw, 340px);
  background: var(--white);
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.2);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.drawer.open {
  transform: translateX(0);
}

.drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.drawer a.dl {
  font-size: 19px;
  font-weight: 600;
  color: var(--cardiac-blue);
  padding: 14px 4px;
  border-bottom: 1px solid var(--border);
  display: block;
  opacity: 0;
  transform: translateY(14px);
}

.drawer.open a.dl {
  animation: drawerItem 0.4s forwards;
}

.drawer.open a.dl:nth-child(1) {
  animation-delay: .08s
}

.drawer.open a.dl:nth-child(2) {
  animation-delay: .14s
}

.drawer.open a.dl:nth-child(3) {
  animation-delay: .20s
}

.drawer.open a.dl:nth-child(4) {
  animation-delay: .26s
}

.drawer.open a.dl:nth-child(5) {
  animation-delay: .32s
}

@keyframes drawerItem {
  to {
    opacity: 1;
    transform: none;
  }
}

.drawer-emergency {
  margin-top: auto;
  background: var(--heart-red);
  color: #fff;
  text-align: center;
  padding: 16px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* ============================================================
   EMERGENCY STRIP
   ============================================================ */
.emergency-strip {
  background: var(--emergency-red);
  color: #fff;
  overflow: hidden;
  position: relative;
}

.emergency-strip .container {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  padding-top: 8px;
  padding-bottom: 8px;
}

.emergency-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  transform: translateX(-100%);
  animation: stripShimmer 5s ease-in-out infinite;
}

@keyframes stripShimmer {

  0%,
  60% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

.pulse-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
  animation: pulseDot 1.2s ease-in-out infinite;
}

@keyframes pulseDot {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.4);
    opacity: 0.4;
  }
}

.emergency-strip a {
  font-weight: 700;
  text-decoration: underline;
  white-space: nowrap;
}

.emergency-strip .hi {
  font-family: var(--deva);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 92vh;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg image-slot {
  width: 100%;
  height: 100%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(135deg,
      rgba(15, 35, 71, var(--ov, 0.95)) 0%,
      rgba(27, 58, 107, calc(var(--ov, 0.95) * 0.93)) 45%,
      rgba(11, 122, 140, calc(var(--ov, 0.95) * 0.74)) 100%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: #fff;
}

.hero-ecg {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12%;
  z-index: 2;
  pointer-events: none;
  height: 80px;
  overflow: hidden;
}

.hero-ecg svg {
  height: 80px;
  width: 200%;
  animation: ecgScroll 14s linear infinite;
}

@keyframes ecgScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.hero .container {
  position: relative;
  z-index: 10;
  padding-top: 64px;
  padding-bottom: 64px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 56px;
  align-items: center;
}

.cred-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 14px;
  padding: 8px 18px;
  border-radius: 100px;
}

.cred-pill::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transform: translateX(-100%);
  animation: stripShimmer 3.5s ease-in-out infinite;
}

.hero h1 {
  margin: 16px 0 0;
}

.hero .h1 .en {
  font-size: clamp(24px, 3.8vw, 44px);
}

.hero .h1 .hi {
  font-size: clamp(16px, 2.4vw, 24px);
}

.hero-seo {
  margin: 10px 0 0;
  max-width: 580px;
}

.hero-seo .en {
  display: block;
  font-family: var(--serif);
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.35;
}

.hero-seo .hi {
  display: block;
  font-family: var(--deva);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.62);
  margin-top: 3px;
}

.hero .lede {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(14px, 1.25vw, 16px);
  line-height: 1.55;
  margin: 14px 0 0;
  max-width: 580px;
}

.cred-tags {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 18px;
  margin-bottom: 0;
  max-width: 520px;
}

.cred-tags .tag {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.20);
  color: #fff;
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 8px;
  line-height: 1.35;
  text-align: center;
}

.hero-cta {
  display: flex;
  gap: 14px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--grad-cta);
  color: #fff;
  min-height: 56px;
  padding: 0 32px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.15;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  text-align: center;
}

.btn-primary .stack {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.btn-primary .hi,
.btn-outline .hi {
  font-family: var(--deva);
  font-size: 12px;
  font-weight: 400;
  opacity: 0.9;
}

.btn-primary:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 28px rgba(232, 96, 76, 0.5);
}

.btn-primary:active {
  transform: scale(0.97);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: #fff;
  min-height: 56px;
  padding: 0 30px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 500;
  transition: background 0.2s ease, transform 0.18s ease;
}

.btn-outline .stack {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.02);
}

.scroll-indicator {
  position: absolute;
  left: 32px;
  bottom: 28px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  letter-spacing: 0.1em;
}

.scroll-indicator .line {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.3);
  animation: scrollBob 1.8s ease-in-out infinite;
}

@keyframes scrollBob {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }
}

/* portrait card */
.portrait-card {
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 28px;
  padding: 22px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.30);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portrait-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.40);
}

.portrait-card .portrait {
  width: 100%;
  height: 420px;
  border-radius: 18px;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.3);
}

.portrait-card .portrait image-slot {
  width: 100%;
  height: 100%;
}

.float-badge {
  position: absolute;
  top: -16px;
  right: -12px;
  background: var(--gold-accent);
  color: #fff;
  border-radius: 12px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: var(--shadow-lg);
  animation: badgeRock 3s ease-in-out infinite;
}

@keyframes badgeRock {

  0%,
  100% {
    transform: rotate(0);
  }

  50% {
    transform: rotate(3deg);
  }
}

.card-footer {
  margin-top: 16px;
  color: #fff;
}

.card-footer .name-en {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 700;
}

.card-footer .name-hi {
  font-family: var(--deva);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
}

.card-footer .dm-cred {
  font-size: 13px;
  font-weight: 600;
  color: rgba(125, 211, 252, 0.95);
  margin-top: 4px;
  letter-spacing: 0.02em;
}

.card-footer .role-en {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 6px;
}

.card-footer .role-hi {
  font-family: var(--deva);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.card-footer .affiliation-en {
  font-size: 12px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.cred-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 14px;
}

.cred-badges div {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 8px 0;
  text-align: center;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  transition: background 0.15s ease;
}

.cred-badges div:hover {
  background: rgba(255, 255, 255, 0.28);
}

.live-status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
}

.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #34d399;
  animation: liveDot 1.5s ease-in-out infinite;
}

@keyframes liveDot {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.5);
    opacity: 0.5;
  }
}

.live-status span {
  color: #6ee7b7;
  font-size: 13px;
  font-weight: 500;
}

/* ============================================================
   TRUST BADGES
   ============================================================ */
.section {
  padding: 72px 0;
}

.section.tight {
  padding: 64px 0;
}

.bg-white {
  background: var(--white);
}

.bg-off {
  background: var(--off-white);
}

.bg-blue {
  background: var(--cardiac-blue);
}

.bg-deep {
  background: var(--cardiac-blue-deep);
}

.border-b {
  border-bottom: 1px solid var(--border);
}

.badges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 44px;
}

.badge-card {
  background: var(--cardiac-blue-light);
  border-radius: 18px;
  padding: 28px 24px;
  border-left: 4px solid var(--cardiac-blue);
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.badge-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(27, 58, 107, 0.16);
}

.badge-card .ic {
  font-size: 34px;
  line-height: 1;
}

.badge-card .num {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  color: var(--cardiac-blue);
  line-height: 1.1;
  margin-top: 8px;
}

.badge-card .num .teal {
  color: var(--teal-primary);
}

.badge-card .num .plus {
  font-size: 0.7em;
}

.badge-card .lbl-en {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 6px;
}

.badge-card .lbl-hi {
  font-family: var(--deva);
  font-size: 14px;
  color: var(--text-muted);
}

.badge-card .sub {
  font-size: 12px;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 4px;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 18px;
  max-width: 620px;
  margin: 14px auto 0;
}

.faq-list {
  max-width: 820px;
  margin: 36px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--white);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item.open {
  border-color: var(--cardiac-blue);
  box-shadow: var(--shadow-md);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  text-align: left;
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  background: transparent;
}

.faq-q .en {
  display: block;
  font-family: var(--serif);
  line-height: 1.35;
}

.faq-q .hi {
  display: block;
  font-family: var(--deva);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 4px;
}

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--cardiac-blue-light);
  color: var(--cardiac-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.faq-item.open .faq-icon {
  background: var(--cardiac-blue);
  color: #fff;
}

.faq-a {
  padding: 0 22px 20px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-body);
}

.faq-a p {
  margin: 0;
}

.faq-cred-list {
  margin: 12px 0 14px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.faq-cred-list li {
  position: relative;
  padding: 10px 14px 10px 34px;
  background: var(--off-white, #f8fafc);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-primary);
}

.faq-cred-list li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cardiac-blue);
}

.faq-a p + .faq-cred-list {
  margin-top: 12px;
}

.faq-cred-list + p {
  margin-top: 14px;
}

.faq-cta {
  margin-top: 12px !important;
  font-size: 15px;
}

.faq-cta a {
  color: var(--cardiac-blue);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================================================
   WELCOME + WARNING SIGNS
   ============================================================ */
.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 56px;
  align-items: center;
}

.welcome-body {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-body);
  margin: 20px 0 0;
  max-width: 660px;
}

.promise-list {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.promise-list .item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.promise-list .check {
  color: var(--teal-primary);
  flex-shrink: 0;
  margin-top: 3px;
}

.promise-list .txt {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-body);
}

.warning-card {
  background: var(--white);
  border-radius: 18px;
  border: 2px solid rgba(192, 57, 43, 0.30);
  box-shadow: var(--shadow-md);
  padding: 20px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.warning-card:hover {
  transform: scale(1.02);
  border-color: rgba(192, 57, 43, 0.6);
}

.warning-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.heart-beat {
  color: var(--heart-red);
  animation: heartBeat 0.9s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes heartBeat {

  0%,
  100% {
    transform: scale(1);
  }

  30% {
    transform: scale(1.12);
  }
}

.warning-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.warning-list .item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.warning-list .bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--heart-red);
  margin-top: 9px;
  flex-shrink: 0;
}

.warning-list .en {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
}

.warning-list .hi {
  font-family: var(--deva);
  font-size: 14px;
  color: var(--text-muted);
}

.emergency-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  background: var(--grad-cta);
  color: #fff;
padding: 14px 5px;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 600;
  margin-top: 22px;
  transition: box-shadow 0.2s ease, transform 0.18s ease;
}

.emergency-cta:hover {
  box-shadow: var(--shadow-glow), 0 8px 24px rgba(192, 57, 43, 0.4);
  transform: scale(1.02);
}

/* ============================================================
   PROCEDURE ANIMATIONS
   ============================================================ */
.proc .sub {
  text-align: center;
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(17px, 1.6vw, 20px);
  max-width: 640px;
  margin: 16px auto 0;
}

.proc-tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
  flex-wrap: wrap;
}

.proc-tab {
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.20);
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  padding: 10px 24px;
  min-height: 48px;
  border-radius: 100px;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.proc-tab:hover {
  background: rgba(255, 255, 255, 0.20);
  color: #fff;
}

.proc-tab.active {
  background: var(--teal-primary);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-glow);
}

.proc-content {
  margin-top: 40px;
}

.proc-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.proc-panel.enter {
  animation: procEnter 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes procEnter {
  from {
    transform: translateX(20px);
  }

  to {
    transform: none;
  }
}

.proc-stage-wrap {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 18px;
  position: relative;
}

.proc-stage-label {
  text-align: center;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  margin-top: 14px;
  min-height: 22px;
  letter-spacing: 0.02em;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 8px 12px;
}

.proc-stage-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 12px;
}

.proc-stage-dots .d {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  transition: all 0.3s ease;
  cursor: pointer;
}

.proc-stage-dots .d.on {
  background: var(--teal-primary);
  width: 22px;
  border-radius: 4px;
}

.proc-text h3 {
  margin: 0;
}

.proc-text .desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  line-height: 1.75;
  margin-top: 16px;
}

.proc-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.proc-facts .fact {
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 10px;
  padding: 8px 16px;
  font-size: 14px;
  color: #fff;

}

.proc-when {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin-top: 18px;
  line-height: 1.6;
}

.svg-stage {
  width: 100%;
  height: auto;
  display: block;
  max-height: 260px;
}

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
}

.service-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--cardiac-blue);
  box-shadow: 0 16px 40px rgba(27, 58, 107, 0.18);
}

.service-card .glow {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(43, 85, 164, 0.14), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  transform: translate(-50%, -50%);
}

.service-card:hover .glow {
  opacity: 1;
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--cardiac-blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cardiac-blue);
  transition: transform 0.25s ease;
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}

.service-card:hover .service-icon {
  transform: rotate(8deg) scale(1.12);
}

.service-card h3 {
  margin: 22px 0 0;
  position: relative;
  z-index: 1;
}

.service-card .desc {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-body);
  margin-top: 12px;
  position: relative;
  z-index: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal-primary);
  font-weight: 600;
  margin-top: 22px;
  position: relative;
  z-index: 1;
}

.service-link svg {
  transition: transform 0.2s ease;
}

.service-card:hover .service-link svg {
  transform: translateX(4px);
}

.service-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  background: var(--gold-accent);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
}

.center-cta {
  text-align: center;
  margin-top: 44px;
}

.btn-solid-blue {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cardiac-blue);
  color: #fff;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.btn-solid-blue:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}

.btn-solid-blue .hi {
  font-family: var(--deva);
  font-weight: 400;
  opacity: 0.85;
}

/* ============================================================
   WHY CHOOSE
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 44px;
}

.why-card {
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 18px;
  padding: 26px;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.why-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.why-card .ic {
  font-size: 30px;
  line-height: 1;
}

.why-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin: 14px 0 0;
}

.why-card .hi {
  font-family: var(--deva);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 2px;
}

.why-card .desc {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 10px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.carousel {
  margin-top: 44px;
  position: relative;
}

.carousel-track {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.testimonial {
  background: var(--white);
  border-radius: 18px;
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  animation: tFade 0.45s ease;
}

@keyframes tFade {
  from {
    transform: translateX(24px);
  }

  to {
    transform: none;
  }
}

.testimonial .quote-mark {
  position: absolute;
  top: 4px;
  left: 18px;
  font-family: var(--serif);
  font-size: 100px;
  color: rgba(27, 58, 107, 0.10);
  line-height: 1;
  pointer-events: none;
}

.testimonial .stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
  position: relative;
}

.testimonial .stars span {
  color: #facc15;
  font-size: 18px;
}

.testimonial .review {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-body);
  font-style: italic;
  position: relative;
}

.testimonial .patient {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.testimonial .avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--cardiac-blue-light);
  color: var(--cardiac-blue);
  font-weight: 700;
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial .pname {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 16px;
}

.testimonial .ploc {
  font-size: 14px;
  color: var(--text-muted);
}

.testimonial .pdate {
  font-size: 12px;
  color: var(--text-muted);
  margin-left: auto;
}

.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cardiac-blue);
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.carousel-btn:hover {
  background: var(--cardiac-blue);
  color: #fff;
}

.carousel-btn:active {
  transform: scale(0.92);
}

.carousel-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.carousel-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 100px;
  background: var(--border);
  transition: all 0.3s ease;
  cursor: pointer;
}

.carousel-dots .dot.on {
  width: 24px;
  background: var(--cardiac-blue);
}

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta-strip {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0B7A8C 0%, #1B3A6B 100%);
  color: #fff;
}

.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.15;
}

.cta-orb.o1 {
  width: 400px;
  height: 400px;
  background: #fff;
  top: -100px;
  left: -80px;
  animation: orb1 8s ease-in-out infinite;
}

.cta-orb.o2 {
  width: 400px;
  height: 400px;
  background: #6ee7d8;
  bottom: -120px;
  right: -60px;
  animation: orb2 10s ease-in-out infinite;
}

@keyframes orb1 {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(50px, 30px);
  }
}

@keyframes orb2 {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(-40px, -20px);
  }
}

.cta-strip .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-sub {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(17px, 1.6vw, 20px);
  max-width: 560px;
  margin: 14px auto 0;
}

.hours-pills {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 26px;
  flex-wrap: wrap;
}

.hours-pills .pill {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 15px;
}

.cta-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #22c55e;
  color: #fff;
  min-height: 56px;
  padding: 0 40px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.btn-wa:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 28px rgba(34, 197, 94, 0.4);
}

.btn-wa .hi {
  font-family: var(--deva);
  font-weight: 400;
  font-size: 12px;
}

.cta-foot {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin-top: 26px;
}

.cta-foot .hi {
  font-family: var(--deva);
}

/* ============================================================
   MEET YOUR DOCTOR
   ============================================================ */
.md-section {
  background: var(--cardiac-blue-light);
  padding: 84px 0;
}

.md-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.md-portrait-wrap {
  position: sticky;
  top: calc(var(--header-h) + 24px);
}

.md-portrait {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(27, 58, 107, 0.22);
  aspect-ratio: 3 / 4;
  background: var(--cardiac-blue-deep);
}

.md-portrait image-slot {
  width: 100%;
  height: 100%;
}

.md-plate {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.md-plate-name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--cardiac-blue);
  line-height: 1.1;
}

.md-plate-cred {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  color: var(--teal-primary);
  margin-top: 5px;
}

.md-plate-rating {
  text-align: right;
  flex-shrink: 0;
}

.md-stars {
  color: var(--gold-accent);
  font-size: 17px;
  font-weight: 500;
  white-space: nowrap;
}

.md-stars b {
  color: var(--cardiac-blue);
  font-weight: 700;
}

.md-rating-sub {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

.md-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--teal-primary);
  text-transform: uppercase;
}

.md-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal-primary);
}

.md-headline {
  margin: 16px 0 0;
  display: flex;
  flex-direction: column;
  font-family: var(--serif);
  line-height: 1.04;
  letter-spacing: -0.01em;
}

.md-headline .l1 {
  font-size: clamp(28px, 3.6vw, 46px);
  font-weight: 700;
  color: var(--cardiac-blue);
}

.md-headline .l2 {
  font-size: clamp(28px, 3.6vw, 46px);
  font-weight: 700;
  font-style: italic;
  color: var(--teal-primary);
}

.md-headline .hi {
  font-family: var(--deva);
  font-size: clamp(16px, 1.6vw, 22px);
  font-weight: 400;
  color: var(--teal-primary);
  margin-top: 10px;
  line-height: 1.4;
}

.md-seo-sub {
  margin: 12px 0 0;
  font-size: 17px;
  font-weight: 600;
  color: var(--cardiac-blue-mid);
  line-height: 1.4;
}

.md-bio {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
  margin: 18px 0 0;
}

.md-creds {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(27, 58, 107, 0.14);
}

.md-cred-row {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(27, 58, 107, 0.10);
}

.md-cred-row:nth-child(odd) {
  border-right: 1px solid rgba(27, 58, 107, 0.10);
  padding-left: 0;
}

.md-cred-row:nth-child(even) {
  padding-right: 0;
}

.md-cred-row.full-row {
  grid-column: 1 / -1;
  padding-left: 0;
  padding-right: 0;
  border-right: none;
  border-bottom: 1px solid rgba(27, 58, 107, 0.14);
}

.md-cred-key {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--teal-primary);
}

.md-cred-val {
  font-size: 14px;
  font-weight: 600;
  color: var(--cardiac-blue);
  line-height: 1.45;
}

.md-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.md-pill {
  font-size: 13px;
  font-weight: 600;
  color: var(--teal-primary);
  background: var(--teal-light);
  border: 1px solid rgba(11, 122, 140, 0.25);
  border-radius: 100px;
  padding: 7px 16px;
  transition: background 0.2s ease, transform 0.18s ease;
}

.md-pill:hover {
  background: #d6eef1;
  transform: translateY(-2px);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--cardiac-blue-deep);
  color: rgba(255, 255, 255, 0.7);
  padding: 56px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
}

.footer h4 {
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin: 0 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 10px;
}

.footer .fname {
  font-family: var(--serif);
  font-size: 22px;
  color: #fff;
  font-weight: 700;
}

.footer .fname-hi {
  font-family: var(--deva);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
}

.footer ul li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.footer ul li svg {
  flex-shrink: 0;
  margin-top: 3px;
  opacity: 0.7;
}

.footer ul a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
}

.footer ul a:hover {
  color: #fff;
}

.footer .legal {
  margin-top: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
  text-align: center;
  color: rgba(255, 255, 255, 0.45);
}

.footer-attribution {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.footer-attribution .en {
  display: block;
}

.footer-attribution .hi {
  display: block;
  font-family: var(--deva);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 6px;
}

@media (max-width: 980px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;

  }
  .proc-facts .fact {
      width: -webkit-fill-available;
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .portrait-card {
    max-width: 420px;
  }

  .welcome-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

  .services-grid {
    grid-template-columns: 1fr;
  }

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

  .proc-panel {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .carousel-track {
    grid-template-columns: 1fr;
  }

  .md-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .md-portrait-wrap {
    position: static;
  }

  .md-portrait {
    max-width: 420px;
    margin: 0 auto;
    aspect-ratio: 3/4;
  }

  .md-creds {
    grid-template-columns: 1fr 1fr;
  }

  .md-cred-row.full-row {
    grid-column: 1 / -1;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 760px) {
  .topbar .container {
    height: auto;
    min-height: 36px;
    padding: 7px 16px;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4px;
  }
  .topbar .tb-item {
    white-space: normal;
    text-align: center;
    font-size: 12px;
    line-height: 1.4;
    justify-content: center;
  }

.cred-pill{
      text-align: center;
    margin-bottom: 15px;
}
  .nav-links,
  .btn-book {
    display: none;
  }

  .hamburger {
    display: flex;
  }
.container{
      padding: 0 16px;
}
    .badges-grid {
        grid-template-columns: repeat(1, 1fr);
    }
  .why-grid {
    grid-template-columns: 1fr;
  }
.section {
    padding: 35px 0;
}
  .topbar .tb-item.hide-sm {
    display: none;
  }
  .proc-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
    justify-content: center;
}
.md-section {
    background: var(--cardiac-blue-light);
    padding: 30px 0;
}
.carousel{
      margin-top: 25px;
}
  .hero-cta {
    flex-direction: column;
  }
.hero .container{
      padding-top: 35px;
    padding-bottom: 40px;
}
.cred-pill{
  border-radius: 20px;
}
  .hero-cta .btn-primary,
  .hero-cta .btn-outline {
    width: 100%;
  }
  .hours-pills .pill{
        width: 100%;
  }
.btn-outline{
      width: 100%;
}
.btn-wa{
      width: 100%;
    justify-content: center;
    align-items: center;
}
  .scroll-indicator {
    display: none !important;
  }

  .portrait-card .portrait {
    height: 300px;
  }

  .portrait-card {
    max-width: 100%;
  }

.drawer-emergency{
      padding: 12px 0px;
}
  .md-creds {
    grid-template-columns: 1fr;
  }

  .md-cred-row:nth-child(odd) {
    border-right: none;
  }

  .md-cred-row {
    border-bottom: 1px solid rgba(27, 58, 107, 0.10);
    padding: 10px 0;
  }

  .md-cred-row.full-row {
    grid-column: 1;
  }
}

/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */
.float-wa {
  position: fixed;
  right: 20px;
  bottom: 24px;
  bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  z-index: 9999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.50);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  will-change: transform;
}

.float-wa:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.65);
}

.float-wa:active {
  transform: scale(0.95);
}

@media (max-width: 760px) {
  .float-wa {
    width: 54px;
    height: 54px;
    right: 16px;
    bottom: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  }
}

/* ============================================================
   SAFE AREA — sticky header for iOS notch
   ============================================================ */
.topbar {
  padding-top: env(safe-area-inset-top, 0px);
}