/* ============================================================
   VGR Diabetes Specialities Hospital — Premium Stylesheet
   ============================================================ */

:root {
  --blue-900: #0f2a6b;
  --blue-800: #1a3a8f;
  --blue-700: #2148ad;
  --blue-500: #3b6fd6;
  --blue-100: #e7eefc;
  --red-600: #d62027;
  --red-500: #e63946;
  --ink: #0e1726;
  --slate: #5a6b85;
  --line: #e6ebf4;
  --bg: #ffffff;
  --bg-alt: #f5f8ff;
  --white: #ffffff;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 4px 14px rgba(15, 42, 107, .07);
  --shadow: 0 18px 50px rgba(15, 42, 107, .12);
  --shadow-lg: 0 30px 80px rgba(15, 42, 107, .18);
  --grad: linear-gradient(135deg, var(--blue-800), var(--blue-500));
  --grad-red: linear-gradient(135deg, var(--red-600), var(--red-500));
  --ease: cubic-bezier(.22, 1, .36, 1);
  --font: 'Plus Jakarta Sans', 'Manrope', system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
.ic { width: 18px; height: 18px; fill: currentColor; }

.container { width: min(1180px, 92%); margin-inline: auto; }
.section { padding: 96px 0; }
.section--alt { background: var(--bg-alt); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 700; font-size: .95rem; letter-spacing: .2px;
  padding: 13px 26px; border-radius: 999px; border: 0; cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s;
  font-family: inherit;
}
.btn--primary { background: var(--grad); color: #fff; box-shadow: 0 12px 28px rgba(33, 72, 173, .32); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 18px 38px rgba(33, 72, 173, .42); }
.btn--ghost { background: rgba(255, 255, 255, .12); color: #fff; border: 1.5px solid rgba(255, 255, 255, .5); backdrop-filter: blur(6px); }
.btn--ghost:hover { background: rgba(255, 255, 255, .22); transform: translateY(-3px); }
.btn--lg { padding: 16px 32px; font-size: 1rem; }
.btn--block { width: 100%; }

/* ---------- Topbar ---------- */
.topbar { background: var(--blue-900); color: #cdd9f5; font-size: .82rem; }
.topbar__inner { display: flex; justify-content: space-between; align-items: center; height: 40px; }
.topbar__left { display: flex; gap: 22px; align-items: center; }
.topbar__item { display: inline-flex; align-items: center; gap: 7px; color: #cdd9f5; transition: color .2s; }
.topbar__item:hover { color: #fff; }
.topbar__item .ic { width: 15px; height: 15px; }
.badge-live { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: #d6ffe4; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: #2bd66f; box-shadow: 0 0 0 0 rgba(43, 214, 111, .6); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(43, 214, 111, .5); } 70% { box-shadow: 0 0 0 8px rgba(43, 214, 111, 0); } 100% { box-shadow: 0 0 0 0 rgba(43, 214, 111, 0); } }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .82); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s, background .3s;
}
.header.scrolled { box-shadow: var(--shadow-sm); background: rgba(255, 255, 255, .95); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark {
  width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center;
  background: var(--grad); color: #fff; font-weight: 800; letter-spacing: .5px;
  box-shadow: 0 8px 20px rgba(33, 72, 173, .35);
}
.brand__logo { height: 52px; width: auto; display: block; }
.brand--footer .brand__logo { height: 56px; }
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__text strong { font-size: 1.05rem; color: var(--blue-900); }
.brand__text span { font-size: .74rem; color: var(--slate); letter-spacing: .4px; text-transform: uppercase; }

.nav { display: flex; align-items: center; gap: 6px; }
.nav__link { padding: 9px 14px; border-radius: 10px; font-weight: 600; font-size: .93rem; color: var(--slate); transition: color .2s, background .2s; }
.nav__link:hover, .nav__link.active { color: var(--blue-800); background: var(--blue-100); }
.nav__cta { margin-left: 10px; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 26px; height: 2.5px; background: var(--blue-900); border-radius: 2px; transition: .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: 70px 0 0; color: #fff; }
.hero__bg {
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(1100px 500px at 80% -10%, rgba(214, 32, 39, .35), transparent 60%),
    radial-gradient(900px 600px at 10% 20%, rgba(59, 111, 214, .5), transparent 60%),
    linear-gradient(135deg, #0f2a6b 0%, #1a3a8f 55%, #21379b 100%);
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .07) 1px, transparent 1px);
  background-size: 26px 26px; opacity: .6;
}
.hero__inner { display: grid; grid-template-columns: 1.15fr .85fr; gap: 50px; align-items: center; padding-bottom: 80px; }
.pill {
  display: inline-flex; align-items: center; gap: 9px; font-size: .82rem; font-weight: 600;
  background: rgba(255, 255, 255, .12); border: 1px solid rgba(255, 255, 255, .25);
  padding: 8px 16px; border-radius: 999px; backdrop-filter: blur(6px); margin-bottom: 22px;
}
.hero__title { font-size: clamp(2.3rem, 5vw, 3.7rem); line-height: 1.08; font-weight: 800; letter-spacing: -1px; }
.hero__title span { display: block; background: linear-gradient(90deg, #ffd2d2, #ff7b82); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__sub { margin: 22px 0 30px; font-size: 1.08rem; color: #d3deff; max-width: 540px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__trust { display: flex; align-items: center; gap: 26px; margin-top: 40px; }
.trust__item { display: flex; flex-direction: column; }
.trust__item strong { font-size: 1.6rem; font-weight: 800; }
.trust__item span { font-size: .82rem; color: #b9c8f2; }
.trust__divider { width: 1px; height: 38px; background: rgba(255, 255, 255, .22); }

.hero__card { position: relative; }
.glass-card {
  background: rgba(255, 255, 255, .97); color: var(--ink);
  border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, .6);
}
.glass-card h3 { font-size: 1.35rem; color: var(--blue-900); }
.glass-card__sub { color: var(--slate); font-size: .9rem; margin-bottom: 18px; }
.mini-form { display: flex; flex-direction: column; gap: 12px; }
.mini-form input, .mini-form select, .appt-form input, .appt-form select, .appt-form textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 12px;
  font-family: inherit; font-size: .95rem; color: var(--ink); background: #fbfcff; transition: border .2s, box-shadow .2s;
}
.mini-form input:focus, .mini-form select:focus, .appt-form input:focus, .appt-form select:focus, .appt-form textarea:focus {
  outline: none; border-color: var(--blue-500); box-shadow: 0 0 0 4px rgba(59, 111, 214, .14);
}
.mini-form__note, .appt-form__note { font-size: .85rem; margin-top: 12px; min-height: 18px; text-align: center; color: #1c8a47; font-weight: 600; }

/* hero marquee */
.hero__marquee { background: rgba(255, 255, 255, .08); border-top: 1px solid rgba(255, 255, 255, .12); overflow: hidden; }
.marquee__track { display: flex; gap: 26px; white-space: nowrap; padding: 14px 0; width: max-content; animation: marquee 28s linear infinite; }
.marquee__track span { font-weight: 600; color: #cfdcff; font-size: .92rem; letter-spacing: .3px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Features ---------- */
.features { margin-top: -56px; position: relative; z-index: 5; }
.features__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.feature {
  background: #fff; border-radius: var(--radius); padding: 26px 24px; box-shadow: var(--shadow);
  border: 1px solid var(--line); transition: transform .3s var(--ease), box-shadow .3s;
}
.feature:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.feature__ic { font-size: 1.8rem; width: 54px; height: 54px; display: grid; place-items: center; border-radius: 14px; background: var(--blue-100); margin-bottom: 14px; }
.feature h4 { font-size: 1.05rem; color: var(--blue-900); margin-bottom: 6px; }
.feature p { font-size: .88rem; color: var(--slate); }

/* ---------- Section heads ---------- */
.eyebrow { display: inline-block; font-size: .78rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--red-600); margin-bottom: 12px; }
.section__title { font-size: clamp(1.7rem, 3.2vw, 2.5rem); font-weight: 800; line-height: 1.15; letter-spacing: -.5px; color: var(--blue-900); }
.section__lead { color: var(--slate); font-size: 1.05rem; margin-top: 14px; max-width: 620px; }
.section__head { text-align: center; max-width: 720px; margin: 0 auto 54px; }
.section__head .section__lead { margin-inline: auto; }

/* ---------- About ---------- */
.about__inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; align-items: center; }
.about__media { position: relative; }
.about__shield {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px; aspect-ratio: 1; max-width: 420px;
  padding: 18px; border-radius: var(--radius-lg);
  background: var(--grad); box-shadow: var(--shadow-lg); margin-inline: auto;
}
.shield-quad { border-radius: 16px; display: grid; place-items: center; font-size: 3.4rem; }
.sq--blue { background: rgba(255, 255, 255, .12); }
.sq--blue2 { background: rgba(255, 255, 255, .12); }
.sq--white { background: #fff; }
.sq--white2 { background: #fff; }
.about__stat-float {
  position: absolute; bottom: -18px; right: 10px; background: #fff; color: var(--blue-900);
  border-radius: 16px; padding: 14px 20px; box-shadow: var(--shadow); display: flex; flex-direction: column; line-height: 1.1;
  border: 1px solid var(--line);
}
.about__stat-float strong { font-size: 1.5rem; color: var(--red-600); }
.about__stat-float span { font-size: .78rem; color: var(--slate); }
.about__content p { color: var(--slate); margin-top: 16px; }
.about__list { list-style: none; margin: 24px 0 28px; display: grid; gap: 12px; }
.about__list li { display: flex; align-items: center; gap: 12px; font-weight: 600; color: var(--ink); }
.tick { width: 26px; height: 26px; flex: none; border-radius: 50%; background: var(--blue-100); color: var(--blue-700); display: grid; place-items: center; font-size: .85rem; font-weight: 800; }

/* ---------- Services ---------- */
.services__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.svc-card {
  background: #fff; border-radius: var(--radius); padding: 28px 24px; border: 1px solid var(--line);
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s; position: relative; overflow: hidden;
}
.svc-card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: var(--grad); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.svc-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.svc-card:hover::before { transform: scaleX(1); }
.svc-card__ic { font-size: 2rem; width: 60px; height: 60px; display: grid; place-items: center; border-radius: 16px; background: var(--blue-100); margin-bottom: 16px; transition: transform .3s; }
.svc-card:hover .svc-card__ic { transform: scale(1.08) rotate(-4deg); }
.svc-card h3 { font-size: 1.1rem; color: var(--blue-900); margin-bottom: 8px; }
.svc-card p { font-size: .9rem; color: var(--slate); }

/* ---------- Doctors ---------- */
.doctors__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.doc-card {
  background: #fff; border-radius: var(--radius-lg); padding: 34px 28px; text-align: center;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s;
}
.doc-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.doc-card__avatar {
  width: 94px; height: 94px; border-radius: 50%; margin: 0 auto 18px; display: grid; place-items: center;
  font-size: 1.5rem; font-weight: 800; color: #fff; background: var(--grad); box-shadow: 0 12px 26px rgba(33, 72, 173, .35);
}
.doc-card__avatar--2 { background: linear-gradient(135deg, #d62027, #ff6168); box-shadow: 0 12px 26px rgba(214, 32, 39, .32); }
.doc-card__avatar--3 { background: linear-gradient(135deg, #0d9466, #34d399); box-shadow: 0 12px 26px rgba(13, 148, 102, .3); }
.doc-card h3 { font-size: 1.2rem; color: var(--blue-900); }
.doc-card__role { display: block; color: var(--red-600); font-weight: 700; font-size: .85rem; margin: 4px 0 12px; }
.doc-card p { color: var(--slate); font-size: .92rem; }
.doc-card__tags { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-top: 16px; }
.doc-card__tags span { font-size: .76rem; font-weight: 600; color: var(--blue-700); background: var(--blue-100); padding: 5px 12px; border-radius: 999px; }

/* ---------- Stats ---------- */
.stats { background: var(--grad); color: #fff; padding: 64px 0; position: relative; overflow: hidden; }
.stats::after { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px); background-size: 24px 24px; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.stat { text-align: center; }
.stat strong { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; display: block; letter-spacing: -1px; }
.stat span { font-size: .92rem; color: #cdd9f5; }

/* ---------- Why ---------- */
.why__inner { display: grid; grid-template-columns: .85fr 1.15fr; gap: 50px; align-items: center; }
.why__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.why-card { background: #fff; border-radius: var(--radius); padding: 24px; border: 1px solid var(--line); transition: transform .3s var(--ease), box-shadow .3s; }
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.why-card__ic { font-size: 1.6rem; width: 50px; height: 50px; display: grid; place-items: center; border-radius: 13px; background: var(--blue-100); margin-bottom: 12px; }
.why-card h4 { font-size: 1.02rem; color: var(--blue-900); margin-bottom: 6px; }
.why-card p { font-size: .87rem; color: var(--slate); }

/* ---------- Videos: featured player ---------- */
.vfeature { display: grid; grid-template-columns: 1.7fr 1fr; gap: 26px; align-items: start; }
.vfeature__main { background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }
.vplayer { position: relative; aspect-ratio: 16 / 9; background: #0a1430; cursor: pointer; overflow: hidden; }
.vplayer img, .vplayer iframe { width: 100%; height: 100%; object-fit: cover; border: 0; display: block; }
.vplayer iframe { object-fit: contain; }
.vplayer img { transition: transform .5s var(--ease); }
.vplayer:hover img { transform: scale(1.04); }
.vfeature__caption { padding: 20px 24px 24px; }
.vfeature__caption h3 { font-size: 1.25rem; color: var(--blue-900); margin-bottom: 6px; }
.vfeature__caption p { color: var(--slate); font-size: .95rem; }
.vwatch { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-weight: 700; font-size: .88rem; color: var(--red-600); transition: gap .2s, color .2s; }
.vwatch:hover { gap: 10px; color: var(--red-500); }

.vfeature__list { display: flex; flex-direction: column; gap: 12px; max-height: 520px; overflow-y: auto; padding-right: 4px; }
.vfeature__list::-webkit-scrollbar { width: 6px; }
.vfeature__list::-webkit-scrollbar-thumb { background: #cdd9f5; border-radius: 8px; }
.vitem {
  display: flex; align-items: center; gap: 14px; text-align: left; cursor: pointer; width: 100%;
  background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 10px; font-family: inherit;
  transition: transform .2s, box-shadow .2s, border-color .2s, background .2s;
}
.vitem:hover { transform: translateX(3px); box-shadow: var(--shadow-sm); }
.vitem.is-active { border-color: var(--blue-500); background: var(--blue-100); }
.vitem__thumb { position: relative; flex: none; width: 92px; aspect-ratio: 16 / 9; border-radius: 9px; overflow: hidden; background: #0a1430; }
.vitem__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.vitem__thumb::after { content: ""; position: absolute; inset: 0; margin: auto; width: 0; height: 0; border-style: solid; border-width: 7px 0 7px 12px; border-color: transparent transparent transparent #fff; filter: drop-shadow(0 1px 2px rgba(0,0,0,.5)); }
.vitem__thumb--fb { display: grid; place-items: center; font-family: Georgia, serif; font-weight: 800; font-size: 1.5rem; color: #fff; background: #1877f2; }
.vitem__thumb--fb::after { display: none; }
.vitem__meta { display: flex; flex-direction: column; min-width: 0; }
.vitem__meta strong { font-size: .95rem; color: var(--blue-900); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.vitem__meta small { color: var(--slate); font-size: .78rem; }

/* ---------- Videos: legacy grid (unused, kept for shorts) ---------- */
.videos__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.vid { margin: 0; border-radius: var(--radius); overflow: hidden; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s; }
.vid:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.vid__thumb { position: relative; aspect-ratio: 16 / 9; cursor: pointer; overflow: hidden; background: #0a1430; }
.vid__thumb img, .vid__thumb iframe { width: 100%; height: 100%; object-fit: cover; border: 0; display: block; }
.vid__thumb img { transition: transform .5s var(--ease); }
.vid:hover .vid__thumb img { transform: scale(1.06); }
.vid__play {
  position: absolute; inset: 0; margin: auto; width: 66px; height: 66px; border-radius: 50%;
  background: rgba(214, 32, 39, .92); display: grid; place-items: center; box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
  transition: transform .25s, background .25s;
}
.vid__play::after { content: ""; border-style: solid; border-width: 12px 0 12px 20px; border-color: transparent transparent transparent #fff; margin-left: 5px; }
.vid__thumb:hover .vid__play { transform: scale(1.12); background: var(--red-600); }
.vid figcaption { padding: 15px 18px; font-weight: 700; color: var(--blue-900); font-size: .98rem; }
.vid--fb .vid__thumb { cursor: default; }
.vid--fb .vid__thumb iframe { object-fit: contain; background: #0a1430; }

.videos__subhead { margin: 50px 0 22px; font-size: 1.3rem; color: var(--blue-900); font-weight: 800; }
.shorts__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.short { margin: 0; }
.short__thumb {
  position: relative; aspect-ratio: 9 / 16; border-radius: var(--radius); overflow: hidden; cursor: pointer;
  background: #0a1430; box-shadow: var(--shadow-sm); border: 1px solid var(--line); transition: transform .3s var(--ease), box-shadow .3s;
}
.short:hover .short__thumb { transform: translateY(-6px); box-shadow: var(--shadow); }
.short__thumb img, .short__thumb iframe { width: 100%; height: 100%; object-fit: cover; border: 0; display: block; }
.short__thumb .vid__play { width: 54px; height: 54px; }
.short__thumb .vid__play::after { border-width: 9px 0 9px 15px; }

/* ---------- Reviews ---------- */
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review { background: #fff; border-radius: var(--radius-lg); padding: 30px; border: 1px solid var(--line); box-shadow: var(--shadow-sm); position: relative; }
.review::before { content: "“"; position: absolute; top: 6px; right: 24px; font-size: 4.5rem; color: var(--blue-100); font-family: Georgia, serif; line-height: 1; }
.review__stars { color: #f5a623; font-size: 1.05rem; letter-spacing: 2px; margin-bottom: 12px; }
.review p { color: var(--ink); font-size: .96rem; position: relative; z-index: 1; }
.review footer { margin-top: 18px; display: flex; flex-direction: column; }
.review footer strong { color: var(--blue-900); }
.review footer span { font-size: .82rem; color: var(--slate); }

/* ---------- FAQ ---------- */
.faq__list { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 4px 24px; box-shadow: var(--shadow-sm); transition: box-shadow .25s; }
.faq__item[open] { box-shadow: var(--shadow); }
.faq__item summary { list-style: none; cursor: pointer; font-weight: 700; color: var(--blue-900); font-size: 1.04rem; padding: 18px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; flex: none; width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; background: var(--blue-100); color: var(--blue-700); font-size: 1.25rem; font-weight: 700; transition: transform .3s var(--ease), background .3s; }
.faq__item[open] summary::after { transform: rotate(45deg); background: var(--grad); color: #fff; }
.faq__item p { color: var(--slate); font-size: .96rem; padding: 0 0 18px; margin-top: -4px; }

/* ---------- Appointment ---------- */
.appt__inner { display: grid; grid-template-columns: 1fr 1.05fr; gap: 50px; align-items: start; }
.contact-list { list-style: none; display: grid; gap: 22px; margin-top: 28px; }
.contact-list li { display: flex; gap: 16px; }
.contact-list__ic { width: 48px; height: 48px; flex: none; border-radius: 13px; background: var(--grad); color: #fff; display: grid; place-items: center; font-size: 1.2rem; box-shadow: 0 8px 18px rgba(33, 72, 173, .3); }
.contact-list strong { display: block; color: var(--blue-900); margin-bottom: 2px; }
.contact-list p { color: var(--slate); font-size: .92rem; }
.contact-list a:hover { color: var(--blue-700); }
.appt-form { background: #fff; border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow); border: 1px solid var(--line); }
.appt-form h3 { font-size: 1.3rem; color: var(--blue-900); margin-bottom: 20px; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field label { font-size: .82rem; font-weight: 700; color: var(--ink); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.appt-form textarea { resize: vertical; }

/* ---------- Map ---------- */
.map-sec { line-height: 0; }
.map-sec iframe { width: 100%; height: 420px; border: 0; filter: grayscale(.1) contrast(1.05); }

/* ---------- Footer ---------- */
.footer { background: var(--blue-900); color: #c7d3ef; padding-top: 64px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 48px; }
.brand--footer .brand__text strong { color: #fff; }
.brand--footer .brand__text span { color: #9fb1de; }
.footer__brand p { margin-top: 18px; font-size: .92rem; max-width: 320px; color: #a9b8df; }
.footer__col h5 { color: #fff; font-size: .95rem; margin-bottom: 16px; letter-spacing: .5px; }
.footer__col a { display: block; color: #a9b8df; font-size: .9rem; padding: 6px 0; transition: color .2s, padding-left .2s; }
.footer__col a:hover { color: #fff; padding-left: 5px; }
.footer__bottom { border-top: 1px solid rgba(255, 255, 255, .1); padding: 22px 0; }
.footer__bottom-inner { display: flex; justify-content: space-between; gap: 12px; font-size: .85rem; color: #8ea1cf; flex-wrap: wrap; }

/* ---------- Floating ---------- */
.fab { position: fixed; right: 22px; bottom: 22px; z-index: 90; }
.fab__btn { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; color: #fff; box-shadow: var(--shadow); transition: transform .25s; }
.fab__btn .ic { width: 24px; height: 24px; }
.fab__btn--call { background: var(--grad-red); animation: bob 2.4s ease-in-out infinite; }
.fab__btn:hover { transform: scale(1.1); }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
.to-top { position: fixed; left: 22px; bottom: 22px; z-index: 90; width: 46px; height: 46px; border-radius: 50%; background: var(--blue-800); color: #fff; display: grid; place-items: center; font-size: 1.2rem; box-shadow: var(--shadow-sm); opacity: 0; pointer-events: none; transform: translateY(12px); transition: .3s; }
.to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 36px; padding-bottom: 60px; }
  .about__inner, .why__inner, .appt__inner { grid-template-columns: 1fr; gap: 40px; }
  .features__grid, .services__grid { grid-template-columns: 1fr 1fr; }
  .doctors__grid, .reviews__grid { grid-template-columns: 1fr; }
  .videos__grid { grid-template-columns: 1fr 1fr; }
  .vfeature { grid-template-columns: 1fr; }
  .vfeature__list { max-height: none; }
  .shorts__grid { grid-template-columns: repeat(3, 1fr); }
  .stats__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .topbar__item--hide { display: none; }
  .nav {
    position: fixed; inset: 76px 0 auto 0; flex-direction: column; align-items: stretch; gap: 4px;
    background: #fff; padding: 16px 20px 24px; box-shadow: var(--shadow); border-bottom: 1px solid var(--line);
    transform: translateY(-130%); transition: transform .35s var(--ease); max-height: calc(100vh - 76px); overflow: auto;
  }
  .nav.open { transform: translateY(0); }
  .nav__link { padding: 13px 14px; }
  .nav__cta { margin: 10px 0 0; }
  .nav-toggle { display: flex; }
  .hero__trust { gap: 16px; }
}
@media (max-width: 540px) {
  .section { padding: 70px 0; }
  .features__grid, .services__grid, .why__grid, .field-row, .videos__grid { grid-template-columns: 1fr; }
  .shorts__grid { grid-template-columns: 1fr 1fr; }
  .stats__grid, .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__bottom-inner { justify-content: center; text-align: center; }
  .hero__actions .btn { flex: 1; }
}
