/* =========================================================
   Tejaswi Multispecialty Clinics — Premium Stylesheet
   Brand: blue #1B9BD8 · teal #16A89C · ink #0C2E3A
   ========================================================= */

:root {
  --blue: #1B9BD8;
  --blue-d: #1280b8;
  --teal: #16A89C;
  --teal-d: #0f8a80;
  --ink: #0C2E3A;
  --slate: #46606c;
  --muted: #6c8593;
  --bg: #ffffff;
  --bg-alt: #f1f9fb;
  --bg-soft: #f7fcfd;
  --line: #e1edf1;
  --shadow-sm: 0 4px 14px rgba(12, 46, 58, 0.06);
  --shadow: 0 14px 40px rgba(12, 46, 58, 0.09);
  --shadow-lg: 0 30px 70px rgba(12, 46, 58, 0.16);
  --glow: 0 18px 40px rgba(27, 155, 216, 0.35);
  --radius: 20px;
  --radius-sm: 12px;
  --max: 1180px;
  --grad: linear-gradient(120deg, #16A89C 0%, #1B9BD8 100%);
  --grad-soft: linear-gradient(120deg, #e9f8f6 0%, #e6f4fb 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: 'Poppins', sans-serif; line-height: 1.18; letter-spacing: -0.01em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }

.grad-text {
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- Scroll progress ---------- */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 200; background: var(--grad); box-shadow: 0 0 10px rgba(27,155,216,.6); transition: width .1s linear; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 30px; border-radius: 50px; font-weight: 600; font-size: 0.97rem;
  cursor: pointer; border: 2px solid transparent; position: relative; overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.btn--primary { background: var(--grad); color: #fff; box-shadow: var(--glow); }
.btn--primary::after { content: ""; position: absolute; top: 0; left: -120%; width: 60%; height: 100%; background: linear-gradient(100deg, transparent, rgba(255,255,255,.45), transparent); transform: skewX(-18deg); transition: left .6s; }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 22px 48px rgba(27,155,216,.45); }
.btn--primary:hover::after { left: 120%; }
.btn--ghost { background: rgba(255,255,255,.6); color: var(--ink); border-color: var(--line); backdrop-filter: blur(6px); }
.btn--ghost:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }
.btn--white { background: #fff; color: var(--teal-d); }
.btn--white:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.btn--block { width: 100%; }

/* ---------- Topbar ---------- */
.topbar { background: var(--ink); color: #bdd9e2; font-size: 0.8rem; }
.topbar__inner { display: flex; justify-content: space-between; align-items: center; min-height: 40px; flex-wrap: wrap; gap: 6px; }
.topbar a, .topbar__hours { color: #bdd9e2; transition: color .2s; }
.topbar a:hover { color: #fff; }
.topbar__contact { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; }
.topbar__social { display: flex; gap: 16px; }
.topbar .ico { margin-right: 5px; opacity: .8; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.82);
  backdrop-filter: blur(14px) saturate(160%); border-bottom: 1px solid rgba(225,237,241,.7);
  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; min-height: 76px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand__logo-img { width: 52px; height: 52px; object-fit: contain; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: 'Baloo 2', cursive; font-size: 1.7rem; font-weight: 800; color: var(--blue); letter-spacing: .2px; }
.brand__sub { font-size: 0.58rem; font-weight: 800; letter-spacing: 2.4px; color: var(--teal); margin-top: 2px; }

.nav { display: flex; align-items: center; gap: 2px; }
.nav a { padding: 9px 15px; font-weight: 500; font-size: 0.94rem; color: var(--slate); border-radius: 9px; transition: color .2s, background .2s; }
.nav a:hover { color: var(--blue); background: var(--bg-alt); }
.nav__cta { background: var(--grad); color: #fff !important; padding: 11px 24px !important; border-radius: 50px; margin-left: 10px; box-shadow: var(--glow); }
.nav__cta:hover { transform: translateY(-2px); }

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

/* ---------- Hero ---------- */
.hero { position: relative; padding: 84px 0 120px; overflow: hidden; background: var(--bg-soft); }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg .blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .55; }
.blob--1 { width: 460px; height: 460px; background: #bfe9e3; top: -120px; right: -100px; animation: float1 14s ease-in-out infinite; }
.blob--2 { width: 380px; height: 380px; background: #c4e7f8; bottom: -120px; left: -90px; animation: float2 16s ease-in-out infinite; }
.blob--3 { width: 260px; height: 260px; background: #d8f3ee; top: 40%; left: 45%; opacity: .4; animation: float1 18s ease-in-out infinite; }
.hero__bg .grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(27,155,216,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(27,155,216,.05) 1px, transparent 1px); background-size: 44px 44px; mask-image: radial-gradient(circle at 50% 40%, #000 0%, transparent 75%); }

.hero__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.08fr .92fr; gap: 54px; align-items: center; }
.hero__eyebrow { display: inline-flex; align-items: center; gap: 9px; background: rgba(255,255,255,.7); backdrop-filter: blur(6px); border: 1px solid var(--line); color: var(--teal-d); font-weight: 600; font-size: .82rem; padding: 8px 18px; border-radius: 50px; box-shadow: var(--shadow-sm); }
.hero__eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 0 rgba(22,168,156,.5); animation: pulse 2s infinite; }
.hero__title { font-size: clamp(2.2rem, 5.2vw, 3.6rem); font-weight: 800; margin: 20px 0; color: var(--ink); }
.hero__text { color: var(--slate); font-size: 1.08rem; max-width: 540px; }
.hero__actions { display: flex; gap: 14px; margin: 30px 0 36px; flex-wrap: wrap; }
.hero__stats { display: flex; gap: 38px; flex-wrap: wrap; }
.stat strong { display: block; font-family: 'Poppins'; font-size: 1.9rem; font-weight: 800; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat span { font-size: .85rem; color: var(--muted); }

.hero__visual { position: relative; }
.hero__glass {
  background: rgba(255,255,255,.7); backdrop-filter: blur(18px); border: 1px solid rgba(255,255,255,.8);
  border-radius: 24px; padding: 32px; box-shadow: var(--shadow-lg); position: relative; z-index: 2;
}
.hero__glass-head { display: inline-flex; align-items: center; gap: 8px; font-size: .8rem; font-weight: 600; color: var(--teal-d); background: rgba(22,168,156,.12); padding: 7px 15px; border-radius: 50px; }
.hero__glass-head .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--teal); animation: pulse 2s infinite; }
.hero__glass h3 { margin: 16px 0 16px; font-size: 1.4rem; }
.hero__list { list-style: none; display: flex; flex-direction: column; gap: 13px; margin-bottom: 24px; }
.hero__list li { display: flex; align-items: center; gap: 12px; font-size: .96rem; color: var(--slate); }
.hero__list-ico { flex: 0 0 auto; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; background: var(--grad-soft); font-size: 1rem; }
.hero__chip { position: absolute; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 11px 16px; font-size: .82rem; font-weight: 600; box-shadow: var(--shadow); display: flex; align-items: center; gap: 8px; z-index: 3; }
.hero__chip span { color: var(--blue); }
.hero__chip--1 { top: -22px; left: -26px; animation: floaty 5s ease-in-out infinite; }
.hero__chip--2 { bottom: 30px; right: -24px; animation: floaty 6s ease-in-out infinite .5s; }

.hero__wave { position: absolute; left: 0; right: 0; bottom: -1px; height: 60px; background: var(--bg); clip-path: ellipse(80% 100% at 50% 100%); z-index: 1; }

@keyframes float1 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-20px, 26px); } }
@keyframes float2 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(24px, -20px); } }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(22,168,156,.5); } 70% { box-shadow: 0 0 0 9px rgba(22,168,156,0); } 100% { box-shadow: 0 0 0 0 rgba(22,168,156,0); } }

/* ---------- Marquee ---------- */
.marquee { background: var(--grad); overflow: hidden; padding: 14px 0; }
.marquee__track { display: flex; align-items: center; gap: 26px; width: max-content; animation: scroll 28s linear infinite; }
.marquee__track span { color: #fff; font-weight: 600; font-size: .98rem; letter-spacing: .3px; white-space: nowrap; opacity: .95; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.section { padding: 92px 0; }
.section--alt { background: var(--bg-alt); }
.section__head { text-align: center; max-width: 660px; margin: 0 auto 56px; }
.eyebrow { display: inline-block; color: var(--teal-d); font-weight: 700; font-size: .8rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px; }
.eyebrow--light { color: rgba(255,255,255,.9); }
.section__title { font-size: clamp(1.8rem, 3.6vw, 2.5rem); font-weight: 700; color: var(--ink); }
.section__title--light { color: #fff; }
.section__lead { color: var(--slate); margin-top: 14px; font-size: 1.04rem; }

/* ---------- About ---------- */
.about { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; align-items: center; }
.about__media { position: relative; }
.about__logo-card {
  background: var(--grad); border-radius: 28px; padding: 64px 30px 54px; text-align: center; color: #fff;
  box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.about__logo-card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 80% 15%, rgba(255,255,255,.22), transparent 55%); }
.about__logo-card img { width: 120px; height: 120px; margin: 0 auto 18px; filter: drop-shadow(0 8px 18px rgba(0,0,0,.15)); background: #fff; border-radius: 24px; padding: 14px; }
.about__logo-name { display: block; font-family: 'Baloo 2'; font-size: 2.2rem; font-weight: 800; }
.about__logo-sub { display: block; font-size: .72rem; letter-spacing: 3px; opacity: .92; }
.about__float { position: absolute; background: #fff; border-radius: 16px; padding: 14px 18px; box-shadow: var(--shadow); text-align: left; }
.about__float strong { display: block; font-family: 'Poppins'; font-size: 1.4rem; color: var(--teal-d); }
.about__float span { font-size: .76rem; color: var(--muted); }
.about__float--a { top: 22px; left: -28px; animation: floaty 6s ease-in-out infinite; }
.about__float--b { bottom: 28px; right: -24px; animation: floaty 5s ease-in-out infinite .6s; }
.about__content p { color: var(--slate); margin-bottom: 16px; }
.about__points { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 26px; }
.point { display: flex; gap: 13px; align-items: flex-start; }
.point__ico { flex: 0 0 auto; width: 46px; height: 46px; display: grid; place-items: center; background: var(--grad-soft); border-radius: 13px; font-size: 1.2rem; }
.point strong { display: block; color: var(--ink); font-size: .98rem; }
.point p { margin: 0; font-size: .88rem; }

/* ---------- Services ---------- */
.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.service-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 28px;
  position: relative; transition: transform .3s, box-shadow .3s; overflow: hidden;
}
.service-card::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: var(--grad); transform: scaleX(0); transform-origin: left; transition: transform .3s; }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }
.service-card__ico { display: grid; place-items: center; width: 62px; height: 62px; border-radius: 16px; background: var(--grad); color: #fff; font-size: 1.6rem; margin-bottom: 20px; box-shadow: var(--glow); }
.service-card h3 { font-size: 1.2rem; margin-bottom: 9px; }
.service-card p { color: var(--slate); font-size: .94rem; margin-bottom: 16px; }
.service-card__link { font-weight: 600; font-size: .9rem; color: var(--blue); }
.service-card__link:hover { color: var(--blue-d); }

/* ---------- Why band ---------- */
.why { background: var(--ink); color: #fff; padding: 84px 0; position: relative; overflow: hidden; }
.why::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 15% 20%, rgba(27,155,216,.25), transparent 45%), radial-gradient(circle at 85% 80%, rgba(22,168,156,.25), transparent 45%); }
.why__inner { position: relative; z-index: 2; }
.why__head { text-align: center; max-width: 600px; margin: 0 auto 48px; }
.why__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why__item { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); padding: 30px 24px; text-align: center; transition: transform .3s, background .3s; }
.why__item:hover { transform: translateY(-6px); background: rgba(255,255,255,.1); }
.why__item span { font-size: 2.2rem; display: block; margin-bottom: 14px; }
.why__item h4 { font-size: 1.1rem; margin-bottom: 8px; }
.why__item p { color: rgba(255,255,255,.7); font-size: .9rem; }

/* ---------- Doctors ---------- */
.doctors { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.doctor-card {
  display: flex; gap: 24px; align-items: flex-start; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s;
}
.doctor-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.doctor-card__avatar { flex: 0 0 auto; width: 92px; height: 92px; border-radius: 24px; background: var(--grad); display: grid; place-items: center; box-shadow: var(--glow); }
.doctor-card__avatar--alt { background: linear-gradient(120deg, #1B9BD8, #16A89C); }
.doctor-card__avatar span { font-family: 'Poppins'; font-weight: 800; font-size: 1.8rem; color: #fff; }
.doctor-card h3 { font-size: 1.28rem; }
.doctor-card__role { color: var(--blue); font-weight: 600; font-size: .95rem; margin: 5px 0 9px; }
.doctor-card__quals { color: var(--slate); font-size: .9rem; }
.doctor-card__reg { color: var(--muted); font-size: .82rem; margin-top: 6px; }
.doctor-card__tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 14px; }
.doctor-card__tags span { background: var(--bg-alt); color: var(--teal-d); font-size: .76rem; font-weight: 600; padding: 5px 12px; border-radius: 50px; }

/* ---------- Videos / Media ---------- */
.videos { display: grid; grid-template-columns: 1.25fr 1fr; gap: 34px; align-items: start; }
.video-embed { position: relative; padding-top: 56.25%; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); background: #000; }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-facade { cursor: pointer; }
.video-facade__thumb { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.video-facade__shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.45)); transition: background .25s; }
.video-facade:hover .video-facade__shade { background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.3)); }
.video-facade__play { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 74px; height: 74px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,0,0,.92); color: #fff; font-size: 1.6rem; padding-left: 5px; box-shadow: 0 10px 30px rgba(0,0,0,.4); transition: transform .25s, background .25s; }
.video-facade:hover .video-facade__play, .video-facade:focus-visible .video-facade__play { transform: translate(-50%, -50%) scale(1.1); background: #ff0000; }
.videos__yt-btn { display: inline-flex; align-items: center; gap: 9px; margin-top: 18px; padding: 12px 24px; border-radius: 50px; background: #ff0000; color: #fff; font-weight: 600; font-size: .92rem; box-shadow: 0 10px 26px rgba(255,0,0,.28); transition: transform .2s; }
.videos__yt-btn:hover { transform: translateY(-2px); }

.videos__reels-title { font-size: 1.2rem; margin-bottom: 16px; }
.reels-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.reel-card {
  position: relative; aspect-ratio: 9 / 16; border-radius: 16px; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  background: linear-gradient(150deg, #515BD4 0%, #8134AF 35%, #DD2A7B 65%, #F58529 100%);
  color: #fff; box-shadow: var(--shadow); transition: transform .25s, box-shadow .25s;
}
.reel-card::before { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,.12); transition: background .25s; }
.reel-card:hover { transform: translateY(-5px) scale(1.02); box-shadow: var(--shadow-lg); }
.reel-card:hover::before { background: rgba(0,0,0,0); }
.reel-card__play { position: relative; z-index: 2; width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.22); border: 2px solid rgba(255,255,255,.7); backdrop-filter: blur(2px); font-size: 1rem; padding-left: 3px; }
.reel-card__label { position: relative; z-index: 2; font-size: .8rem; font-weight: 600; }
.videos__ig-btn { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; padding: 12px 24px; border-radius: 50px; background: linear-gradient(120deg, #8134AF, #DD2A7B, #F58529); color: #fff; font-weight: 600; font-size: .92rem; box-shadow: 0 10px 26px rgba(221,42,123,.3); transition: transform .2s; }
.videos__ig-btn:hover { transform: translateY(-2px); }

/* ---------- Health Camp ---------- */
.camp { background: var(--grad); color: #fff; padding: 86px 0; position: relative; overflow: hidden; }
.camp::before { content: ""; position: absolute; right: -120px; top: -120px; width: 400px; height: 400px; background: rgba(255,255,255,.08); border-radius: 50%; }
.camp::after { content: ""; position: absolute; left: -80px; bottom: -120px; width: 300px; height: 300px; background: rgba(255,255,255,.06); border-radius: 50%; }
.camp__inner { display: grid; grid-template-columns: auto 1fr; gap: 54px; align-items: center; position: relative; z-index: 2; }
.camp__badge { background: rgba(255,255,255,.14); border: 2px solid rgba(255,255,255,.4); border-radius: 24px; padding: 28px 34px; text-align: center; display: flex; flex-direction: column; align-items: center; backdrop-filter: blur(6px); }
.camp__day { font-weight: 700; letter-spacing: 3px; font-size: .9rem; }
.camp__date { font-family: 'Poppins'; font-size: 4rem; font-weight: 800; line-height: 1; margin: 4px 0; }
.camp__month { font-weight: 600; letter-spacing: 2px; font-size: .85rem; }
.camp__free { margin-top: 14px; background: #fff; color: var(--teal-d); font-weight: 700; font-size: .72rem; letter-spacing: 1px; padding: 5px 14px; border-radius: 50px; }
.camp__content h2 { font-size: clamp(1.7rem, 3.2vw, 2.3rem); margin: 8px 0 14px; color: #fff; }
.camp__content p { color: rgba(255,255,255,.94); max-width: 640px; }
.camp__list { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 9px 26px; margin: 22px 0; max-width: 580px; }
.camp__list li { font-weight: 500; }
.camp__note { font-style: italic; margin-bottom: 24px !important; }

/* ---------- Locations ---------- */
.locations { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.location-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s; }
.location-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.location-card__top { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.location-card__pin { width: 44px; height: 44px; display: grid; place-items: center; background: var(--grad-soft); border-radius: 12px; font-size: 1.2rem; }
.location-card__top h3 { font-size: 1.4rem; }
.location-card__addr { color: var(--slate); margin-bottom: 20px; }
.location-card__meta { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 22px; }
.location-card__meta li { display: flex; align-items: center; gap: 12px; font-size: .94rem; color: var(--slate); }
.location-card__meta li span { opacity: .7; }
.location-card__meta a:hover { color: var(--blue); }
.location-card__map { display: inline-flex; font-weight: 600; color: var(--blue); }
.location-card__map:hover { color: var(--blue-d); }

/* ---------- Contact ---------- */
.contact__inner { display: grid; grid-template-columns: 1fr 1.05fr; gap: 54px; align-items: start; }
.contact__info p { color: var(--slate); margin-bottom: 26px; }
.contact__list { list-style: none; display: flex; flex-direction: column; gap: 18px; margin-bottom: 28px; }
.contact__list li { display: flex; gap: 14px; align-items: center; }
.contact__list li > span { flex: 0 0 auto; width: 48px; height: 48px; display: grid; place-items: center; background: var(--grad-soft); border-radius: 13px; font-size: 1.2rem; }
.contact__list li > div { min-width: 0; }
.contact__list strong { display: block; color: var(--ink); }
.contact__list a, .contact__list div span { color: var(--slate); display: block; }
.contact__social { margin-top: 4px; }
.contact__list a:hover { color: var(--blue); }
.contact__social { display: flex; gap: 12px; }
.contact__social a { padding: 10px 22px; border: 1px solid var(--line); border-radius: 50px; font-weight: 600; font-size: .9rem; transition: .25s; }
.contact__social a:hover { background: var(--grad); color: #fff; border-color: transparent; transform: translateY(-2px); }

.contact__form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow); }
.contact__form-title { font-size: 1.3rem; margin-bottom: 20px; }
.field { margin-bottom: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { display: block; font-weight: 600; font-size: .85rem; margin-bottom: 6px; color: var(--ink); }
.field input, .field select, .field textarea { width: 100%; padding: 13px 15px; border: 1px solid var(--line); border-radius: var(--radius-sm); font-family: inherit; font-size: .95rem; color: var(--ink); background: #fbfdfe; transition: border-color .2s, box-shadow .2s; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(27,155,216,.12); background: #fff; }
.field textarea { resize: vertical; }
.form-status { margin-top: 12px; font-size: .9rem; font-weight: 600; text-align: center; }
.form-status.ok { color: var(--teal-d); }
.form-status.err { color: #d9534f; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: #aecbd6; padding-top: 64px; }
.footer__inner { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 38px; padding-bottom: 46px; }
.footer__logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer__logo img { background: #fff; border-radius: 12px; padding: 6px; }
.footer__logo span { display: flex; flex-direction: column; line-height: 1; }
.brand__name--light { font-family: 'Baloo 2'; color: #fff; font-size: 1.6rem; font-weight: 800; }
.brand__sub--light { color: var(--teal); font-size: .58rem; letter-spacing: 2.2px; font-weight: 800; margin-top: 2px; }
.footer__brand p { font-size: .92rem; max-width: 320px; }
.footer__col h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; }
.footer__col a { display: block; padding: 5px 0; font-size: .92rem; transition: color .2s; }
.footer__col a:hover { color: var(--blue); }
.footer__bar { border-top: 1px solid rgba(255,255,255,.1); padding: 18px 0; font-size: .85rem; text-align: center; }

/* ---------- Floating call ---------- */
.fab { position: fixed; bottom: 24px; right: 24px; z-index: 90; width: 58px; height: 58px; border-radius: 50%; background: var(--grad); color: #fff; display: grid; place-items: center; font-size: 1.5rem; box-shadow: var(--glow); transition: transform .2s; }
.fab::before { content: ""; position: absolute; inset: 0; border-radius: 50%; background: var(--grad); animation: ring 2.2s infinite; z-index: -1; }
.fab:hover { transform: scale(1.08); }
@keyframes ring { 0% { transform: scale(1); opacity: .6; } 100% { transform: scale(1.8); opacity: 0; } }

/* ---------- Reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero__inner, .about, .contact__inner { grid-template-columns: 1fr; }
  .about__media { order: -1; max-width: 420px; margin: 0 auto; }
  .services { grid-template-columns: repeat(2, 1fr); }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .doctors, .locations { grid-template-columns: 1fr; }
  .videos { grid-template-columns: 1fr; }
  .camp__inner { grid-template-columns: 1fr; gap: 30px; }
  .camp__badge { width: max-content; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .nav { position: fixed; inset: 0 0 0 auto; width: min(80vw, 330px); background: #fff; flex-direction: column; align-items: stretch; padding: 96px 24px 30px; gap: 6px; transform: translateX(100%); transition: transform .35s ease; box-shadow: var(--shadow-lg); }
  .nav.open { transform: none; }
  .nav a { padding: 13px 16px; border-radius: 12px; }
  .nav__cta { margin-left: 0; text-align: center; }
  .nav-toggle { display: flex; z-index: 101; }
  .topbar__hours, .topbar__contact a:nth-child(2) { display: none; }
  .hero__chip { display: none; }
}
@media (max-width: 540px) {
  .services { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .about__points { grid-template-columns: 1fr; }
  .hero__stats { gap: 24px; }
  .doctor-card { flex-direction: column; }
  .section { padding: 64px 0; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
