/* ═══════════════════════════════════════════════
   NISHA CLINIC — Palette from actual clinic photos
   
   From photos:
   ─ Blush pink walls/sofas : #f5cdd5
   ─ Rose wallpaper deep    : #d4849a
   ─ Warm white walls       : #fdf6f0
   ─ Champagne/gold light   : #e8c88a
   ─ Rose-gold glass frames : #c9856a
   ─ Soft sage (plants)     : #b5c9a8
   ─ Pure white moulding    : #ffffff
   ─ Dark text              : #2d1f24
   ═══════════════════════════════════════════════ */

:root {
  --blush:      #f5cdd5;
  --blush-lt:   #fde8ed;
  --blush-dk:   #e8a8b8;
  --rose:       #d4849a;
  --rose-dk:    #b86880;
  --rosegold:   #c9856a;
  --rosegold-lt:#e8c0b0;
  --champagne:  #e8c88a;
  --champ-lt:   #f5e4c0;
  --cream:      #fdf6f0;
  --cream-dk:   #f0e4dc;
  --white:      #ffffff;
  --sage:       #b5c9a8;
  --dark:       #2d1f24;
  --dark-2:     #3d2a30;
  --text:       #4a3038;
  --text-lt:    #8a6878;
  --border:     rgba(212,132,154,0.2);

  --font-serif: 'Playfair Display', serif;
  --font-body:  'DM Sans', sans-serif;
  --font-thin:  'Cormorant', serif;

  --shadow-rose: 0 20px 60px rgba(212,132,154,0.25);
  --shadow-soft: 0 10px 40px rgba(45,31,36,0.08);
  --r:    18px;
  --r-lg: 32px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--blush-lt); }
::-webkit-scrollbar-thumb { background: var(--rose); border-radius: 10px; }

/* ─── CURSOR ─── */
.cur {
  position: fixed; width: 10px; height: 10px;
  background: var(--rose); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width .2s, height .2s;
  mix-blend-mode: multiply;
}
.cur-ring {
  position: fixed; width: 34px; height: 34px;
  border: 1.5px solid var(--rose); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: all .1s ease; opacity: .6;
}

/* ─── BUTTONS ─── */
.btn-rose {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--rose); color: var(--white);
  font-family: var(--font-body); font-weight: 700;
  font-size: .88rem; letter-spacing: .5px;
  padding: 14px 32px; border-radius: 100px;
  border: 2px solid var(--rose-dk);
  box-shadow: 0 6px 24px rgba(212,132,154,0.35);
  transition: all .25s; cursor: pointer;
}
.btn-rose:hover {
  background: var(--rose-dk);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(212,132,154,0.45);
}
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white);
  font-family: var(--font-body); font-weight: 700;
  font-size: .88rem; letter-spacing: .5px;
  padding: 14px 32px; border-radius: 100px;
  border: 2px solid rgba(255,255,255,0.5);
  transition: all .25s; cursor: pointer;
}
.btn-ghost:hover { background: rgba(255,255,255,.12); border-color: white; }

/* ─── NAV ─── */
#nav {
  position: sticky; top: 0; z-index: 800;
  background: rgba(253,246,240,0.92);
  backdrop-filter: blur(20px) saturate(1.6);
  -webkit-backdrop-filter: blur(20px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 56px; height: 80px;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 24px rgba(45,31,36,0.06);
  transition: box-shadow .3s;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo-img { height: 64px; width: auto; object-fit: contain; display: block; }
.logo-rose { color: var(--rose); font-size: 1rem; }
.logo-sub  { font-size: 1rem; font-weight: 400; letter-spacing: 6px; color: var(--rose); }
.nav-links { display: flex; gap: 34px; }
.nav-links a {
  font-size: .82rem; font-weight: 600; letter-spacing: 1px;
  color: var(--text); transition: color .2s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1.5px; background: var(--rose);
  transition: width .3s;
}
.nav-links a:hover { color: var(--rose); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--rose); color: white !important;
  font-family: var(--font-body); font-weight: 700;
  font-size: .78rem; letter-spacing: 1px;
  padding: 10px 24px; border-radius: 100px;
  border: 2px solid var(--rose-dk);
  box-shadow: 0 4px 16px rgba(212,132,154,0.3);
  transition: all .2s;
}
.nav-cta:hover { background: var(--rose-dk); transform: translateY(-1px); }

.burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
}
.burger span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: all .3s; }

/* MOBILE */
.mob {
  position: fixed; inset: 0; z-index: 900;
  background: var(--cream);
  display: flex; flex-direction: column;
  justify-content: center; align-items: center; gap: 28px;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  border-left: 3px solid var(--blush);
}
.mob.open { transform: translateX(0); }
.mob-x {
  position: absolute; top: 24px; right: 32px;
  background: none; border: none; font-size: 1.5rem;
  color: var(--rose); cursor: pointer;
}
.mob ul { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.mob ul li a {
  font-family: var(--font-serif); font-size: 2rem;
  color: var(--dark); letter-spacing: 2px; transition: color .2s;
}
.mob ul li a:hover { color: var(--rose); }
.mob-book {
  background: var(--rose) !important; color: white !important;
  padding: 12px 36px; border-radius: 100px; font-size: 1rem !important;
  font-family: var(--font-body) !important; font-weight: 700 !important;
}

/* ─── HERO ─── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg-img { transition: transform 8s ease; }
.hero:hover .hero-bg-img { transform: scale(1.03); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(45,31,36,.72) 0%,
    rgba(180,80,100,.45) 40%,
    rgba(45,31,36,.68) 100%
  );
}

/* petals */
.petals { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.petal {
  position: absolute;
  font-size: 1.2rem; opacity: 0;
  animation: petalFall linear infinite;
}
@keyframes petalFall {
  0%   { transform: translateY(-20px) rotate(0deg);   opacity: .7; }
  100% { transform: translateY(110vh) rotate(540deg); opacity: 0; }
}

/* giant bg title */
.hero-giant {
  position: absolute; z-index: 1;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-family: var(--font-serif);
  font-size: clamp(10rem, 24vw, 20rem);
  font-weight: 900; color: transparent;
  -webkit-text-stroke: 2px rgba(245,205,213,.25);
  pointer-events: none; white-space: nowrap;
  animation: giantPulse 6s ease-in-out infinite;
  letter-spacing: 8px;
}
@keyframes giantPulse { 0%,100%{opacity:.6} 50%{opacity:1} }

/* starburst */
.starburst {
  position: absolute; top: 14%; right: 7%; z-index: 3;
  width: 90px; height: 90px;
  display: flex; align-items: center; justify-content: center;
  animation: starSpin 14s linear infinite;
}
.starburst svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.starburst span {
  position: relative; z-index: 1; text-align: center;
  font-family: var(--font-body); font-weight: 900;
  font-size: .6rem; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--dark); line-height: 1.4;
}
@keyframes starSpin { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }

/* hero pills */
.hero-pill {
  position: absolute; z-index: 3;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255,255,255,.35);
  color: white;
  font-family: var(--font-body); font-weight: 700;
  font-size: .75rem; padding: 8px 18px; border-radius: 100px;
  box-shadow: 0 4px 20px rgba(45,31,36,.2);
  animation: pillBob 4s ease-in-out infinite;
}
.p1 { bottom: 26%; left: 5%;  animation-delay: 0s; }
.p2 { bottom: 34%; right: 5%; animation-delay: 1.2s; }
.p3 { top: 20%;    left: 6%;  animation-delay: 2.4s; }
@keyframes pillBob { 0%,100%{transform:translateY(0) rotate(-1deg)} 50%{transform:translateY(-10px) rotate(1deg)} }

/* hero copy */
.hero-copy {
  position: relative; z-index: 2; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 18px;
  padding: 0 24px; max-width: 720px;
}
.hero-eyebrow {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.3);
  backdrop-filter: blur(8px);
  color: rgba(255,255,255,.85);
  font-size: .75rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  padding: 7px 20px; border-radius: 100px;
}
.hero-copy h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700; color: white; line-height: 1.1;
}
.hero-copy h1 em { font-style: italic; color: var(--blush); }
.hero-desc { font-size: .92rem; color: rgba(255,255,255,.65); line-height: 1.75; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* hero stats */
.hero-stats {
  position: relative; z-index: 2; width: 100%;
  background: rgba(253,246,240,0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  gap: 40px; padding: 22px 60px; margin-top: 60px;
}
.hstat { display: flex; flex-direction: column; align-items: center; gap: 3px; }
.hstat > div { display: flex; align-items: baseline; gap: 2px; }
.hstat-n { font-family: var(--font-serif); font-size: 2.2rem; font-weight: 700; color: white; line-height: 1; }
.hstat > div > span { font-size: 1.1rem; font-weight: 700; color: var(--blush); }
.hstat > b { font-family: var(--font-serif); font-size: 2.2rem; font-weight: 700; color: white; line-height: 1; }
.hstat > span { font-size: 1.1rem; font-weight: 700; color: var(--blush); }
.hstat p { font-size: .68rem; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.5); font-weight: 600; }
.hstat-sep { font-size: 1rem; color: rgba(245,205,213,.4); }

/* ─── SECTION SHARED ─── */
.sec-tag {
  font-family: var(--font-body); font-weight: 700;
  font-size: .72rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--rose); margin-bottom: 12px;
}
.sec-h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 700; color: var(--dark); line-height: 1.1; margin-bottom: 18px;
}
.sec-h2 em { font-style: italic; color: var(--rose); }
.sec-p { font-size: .95rem; color: var(--text-lt); line-height: 1.8; max-width: 700px; text-align: center; white-space: nowrap; }

/* ─── SERVICES ─── */
.services {
  padding: 100px 64px;
  background: var(--cream);
  text-align: center;
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px; margin-top: 52px; text-align: left;
}
.svc-card {
  border-radius: var(--r-lg); padding: 36px 32px;
  border: 1.5px solid var(--border);
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex; flex-direction: column; gap: 12px;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-rose); }
.svc-card::before {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 100%; height: 3px; background: var(--rose);
  transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.svc-card:hover::before { transform: scaleX(1); }
.sc-rose   { background: var(--blush-lt); }
.sc-gold   { background: var(--champ-lt); }
.sc-blush  { background: #fff0f3; }
.sc-cream  { background: var(--cream-dk); }
.sc-featured { border-color: var(--champagne); }
.svc-num {
  position: absolute; top: 16px; right: 20px;
  font-family: var(--font-serif); font-size: 3rem; font-weight: 900;
  color: rgba(45,31,36,.07); line-height: 1;
}
.svc-badge {
  display: inline-flex; align-items: center;
  background: var(--rosegold); color: white;
  font-size: .65rem; font-weight: 700; letter-spacing: 1px;
  padding: 5px 14px; border-radius: 100px; align-self: flex-start;
}
.svc-icon { font-size: 2rem; }
.svc-card h3 {
  font-family: var(--font-serif); font-size: 1.35rem; font-weight: 700;
  color: var(--dark);
}
.svc-card p { font-size: .88rem; color: var(--text-lt); line-height: 1.75; }
.svc-btn {
  display: inline-flex; align-items: center;
  background: var(--dark); color: var(--cream);
  font-size: .78rem; font-weight: 700; letter-spacing: .5px;
  padding: 9px 20px; border-radius: 100px; align-self: flex-start;
  margin-top: auto; transition: background .2s, transform .2s;
  box-shadow: 0 3px 12px rgba(45,31,36,.15);
}
.svc-btn:hover { background: var(--rose); transform: translateY(-2px); }

/* ─── ABOUT ─── */
.about {
  padding: 100px 64px;
  background: white;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 72px; align-items: center;
}
.about-imgs { display: flex; gap: 16px; }
.ai-main {
  flex: 1.4; height: 560px;
  border-radius: var(--r-lg); overflow: hidden; position: relative;
  box-shadow: var(--shadow-rose);
  border: 2px solid var(--border);
}
.ai-tag {
  position: absolute; bottom: 20px; left: 20px;
  background: rgba(253,246,240,.9); backdrop-filter: blur(8px);
  color: var(--rose); font-weight: 700; font-size: .75rem; letter-spacing: 2px;
  padding: 8px 18px; border-radius: 100px;
  border: 1.5px solid var(--border);
}
.ai-col { flex: 1; display: flex; flex-direction: column; gap: 16px; }
.ai-sm { height: 270px; border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-soft); border: 2px solid var(--border); }

.about-text { display: flex; flex-direction: column; gap: 18px; }
.about-lead {
  font-family: var(--font-thin); font-size: 1.2rem; font-style: italic;
  color: var(--rose-dk); line-height: 1.8;
}
.about-body { font-size: .92rem; color: var(--text-lt); line-height: 1.85; }
.about-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  background: var(--blush-lt); color: var(--dark);
  font-size: .75rem; font-weight: 700; padding: 8px 16px; border-radius: 100px;
  border: 1.5px solid var(--blush-dk);
  transition: all .2s; cursor: default;
}
.chip:hover { background: var(--rose); color: white; border-color: var(--rose-dk); transform: translateY(-2px); }

/* ─── MARQUEE ─── */
.marquee-band {
  background: var(--dark); overflow: hidden; padding: 14px 0;
  border-top: 1px solid rgba(245,205,213,.1);
}
.mq-track {
  display: flex; gap: 0; white-space: nowrap;
  animation: mqRun 20s linear infinite;
}
.mq-track span {
  font-family: var(--font-body); font-weight: 700;
  font-size: .78rem; letter-spacing: 2px;
  color: rgba(245,205,213,.5); padding: 0 24px; flex-shrink: 0;
}
.mq-track span:nth-child(2n) { color: var(--rosegold-lt); }
@keyframes mqRun { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ─── DOCTORS ─── */
.doctors { padding: 100px 64px; background: var(--blush-lt); text-align: center; }
.doc-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 52px; text-align: left; }
.doc-card {
  background: white; border-radius: var(--r-lg); overflow: hidden;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-soft);
  transition: transform .3s, box-shadow .3s;
}
.doc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-rose); }
.doc-photo { position: relative; height: 300px; overflow: hidden; }
.doc-photo img { transition: transform .6s; }
.doc-card:hover .doc-photo img { transform: scale(1.05); }
.doc-hover {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(45,31,36,.75), rgba(180,80,100,.3));
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-end;
  padding: 24px; gap: 12px;
  opacity: 0; transition: opacity .3s;
}
.doc-card:hover .doc-hover { opacity: 1; }
.doc-book {
  background: var(--rose); color: white;
  font-weight: 700; font-size: .78rem; padding: 10px 24px;
  border-radius: 100px; border: 2px solid var(--rose-dk);
  transition: background .2s;
}
.doc-book:hover { background: var(--rose-dk); }
.doc-socials { display: flex; gap: 10px; }
.doc-socials a {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.15); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: .88rem; transition: background .2s;
}
.doc-socials a:hover { background: var(--rose); }
.doc-info { padding: 20px 22px; }
.doc-role { font-size: .68rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--rose); margin-bottom: 6px; }
.doc-info h3 { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.doc-info span { font-size: .75rem; color: var(--text-lt); }

/* ─── GALLERY ─── */
.gallery { padding: 100px 64px; background: var(--cream); text-align: center; }
.gal-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  grid-auto-rows: 240px; gap: 14px; margin-top: 52px; text-align: left;
}
.gal-item { border-radius: var(--r-lg); overflow: hidden; position: relative; box-shadow: var(--shadow-soft); border: 1.5px solid var(--border); }
.gal-item.gi-tall { grid-row: span 2; }
.gal-item.gi-wide { grid-column: span 2; }
.gal-item img { transition: transform .6s; }
.gal-item:hover img { transform: scale(1.06); }
.gal-cap {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(45,31,36,.7));
  color: white; font-weight: 700; font-size: .78rem; letter-spacing: 1.5px;
  padding: 32px 18px 16px;
  transform: translateY(100%); transition: transform .3s;
}
.gal-item:hover .gal-cap { transform: translateY(0); }

/* ─── REVIEWS ─── */
.reviews { padding: 100px 64px; background: var(--dark); text-align: center; }
.reviews .sec-tag { color: var(--blush); }
.reviews .sec-h2 { color: var(--cream); }
.rev-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 52px; text-align: left; }
.rev-card {
  background: rgba(245,205,213,.07);
  border: 1.5px solid rgba(245,205,213,.15);
  border-radius: var(--r-lg); padding: 36px 32px;
  transition: transform .3s, border-color .3s;
  display: flex; flex-direction: column; gap: 16px;
}
.rev-card:hover { transform: translateY(-4px); border-color: rgba(245,205,213,.35); }
.rev-card.rev-hero { background: rgba(212,132,154,.12); border-color: rgba(212,132,154,.3); }
.rev-crown {
  background: var(--rose); color: white;
  font-size: .65rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 100px; align-self: flex-start;
}
.rev-stars { font-size: .95rem; letter-spacing: 3px; color: var(--champagne); }
.rev-card p { font-size: .92rem; font-style: italic; color: rgba(253,246,240,.72); line-height: 1.8; }
.rev-author { display: flex; align-items: center; gap: 12px; }
.rev-author img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(245,205,213,.3); flex-shrink: 0; }
.rev-author b { display: block; font-size: .85rem; color: var(--cream); font-weight: 700; }
.rev-author span { font-size: .72rem; color: var(--rose); font-weight: 600; }
.rev-tag { font-size: .7rem; color: var(--rose); font-weight: 700; letter-spacing: 1px; }

/* ─── APPOINTMENT ─── */
.appt {
  padding: 100px 64px;
  background: var(--cream);
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: start;
}
.appt-left { display: flex; flex-direction: column; gap: 22px; }
.appt-left .sec-h2 { margin-bottom: 4px; }
.appt-left > p { font-size: .92rem; color: var(--text-lt); line-height: 1.8; }
.appt-info { display: flex; flex-direction: column; gap: 14px; }
.ai-row { display: flex; align-items: center; gap: 14px; }
.ai-icon { font-size: 1.3rem; flex-shrink: 0; width: 42px; height: 42px;
  background: var(--blush-lt); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--border);
}
.ai-row b { font-size: .82rem; font-weight: 700; color: var(--dark); display: block; }
.ai-row p { font-size: .8rem; color: var(--text-lt); }
.appt-img { height: 240px; border-radius: var(--r-lg); overflow: hidden; position: relative; border: 1.5px solid var(--border); box-shadow: var(--shadow-soft); }
.appt-img-tag {
  position: absolute; bottom: 14px; left: 14px; right: 14px; text-align: center;
  background: rgba(253,246,240,.9); backdrop-filter: blur(8px);
  color: var(--rose); font-weight: 700; font-size: .75rem; letter-spacing: 1.5px;
  padding: 8px; border-radius: 100px; border: 1.5px solid var(--border);
}

.appt-form-col { background: white; border-radius: var(--r-lg); padding: 48px 44px; box-shadow: var(--shadow-rose); border: 1.5px solid var(--border); }
.appt-form { display: flex; flex-direction: column; gap: 18px; }
.fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fg { display: flex; flex-direction: column; gap: 7px; }
.fg label { font-size: .68rem; font-weight: 700; letter-spacing: 2px; color: var(--rose); }
.fg input, .fg select, .fg textarea {
  background: var(--cream); border: 1.5px solid var(--cream-dk);
  border-radius: var(--r); padding: 13px 16px;
  font-family: var(--font-body); font-size: .88rem; color: var(--dark);
  outline: none; transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 4px rgba(212,132,154,.12);
}
.fg textarea { resize: none; }
.appt-submit { width: 100%; justify-content: center; font-size: .9rem; padding: 16px; margin-top: 4px; }

/* ─── TOAST ─── */
.toast {
  position: fixed; bottom: 32px; left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--dark); color: var(--cream);
  font-family: var(--font-body); font-weight: 700;
  font-size: .85rem; padding: 16px 28px; border-radius: 100px;
  border: 2px solid var(--rose); box-shadow: var(--shadow-rose);
  z-index: 9999; white-space: nowrap;
  opacity: 0; transition: transform .45s cubic-bezier(.4,0,.2,1), opacity .45s;
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

/* ─── FOOTER ─── */
.footer { background: var(--dark-2); }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.3fr; gap: 52px;
  padding: 72px 64px; border-bottom: 1px solid rgba(245,205,213,.08);
}
.footer-logo {
  font-family: var(--font-serif); font-size: 2.2rem; font-weight: 700;
  color: var(--blush); letter-spacing: 6px; margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.footer-logo span { color: var(--rose); }
.fl-sub { font-size: 1rem; font-weight: 400; letter-spacing: 8px; }
.footer-brand p { font-size: .85rem; color: rgba(245,205,213,.4); line-height: 1.75; max-width: 260px; margin-bottom: 22px; }
.ft-social { display: flex; gap: 10px; }
.ft-social a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1.5px solid rgba(245,205,213,.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--rose); font-size: .9rem; transition: all .2s;
}
.ft-social a:hover { background: var(--rose); color: white; border-color: var(--rose); transform: translateY(-3px); }
.footer-col h4 { font-size: .7rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--rose); margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li, .footer-col ul li a { font-size: .84rem; color: rgba(245,205,213,.4); transition: color .2s; }
.footer-col ul li a:hover { color: var(--blush); }
.footer-bottom {
  padding: 20px 64px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom span { font-size: .7rem; color: rgba(245,205,213,.2); font-weight: 600; letter-spacing: 1.5px; }

/* ─── REVEAL ─── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .services, .about, .doctors, .gallery, .reviews, .appt { padding: 80px 36px; }
  .svc-grid { grid-template-columns: repeat(2,1fr); }
  .doc-grid { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; padding: 56px 36px; }
  .footer-bottom { padding: 18px 36px; }
}
@media (max-width: 900px) {
  #nav { padding: 0 24px; }
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }
  .about { grid-template-columns: 1fr; gap: 40px; }
  .about-imgs { flex-direction: column; }
  .ai-main { height: 360px; }
  .ai-col { flex-direction: row; }
  .ai-sm { flex: 1; height: 200px; }
  .appt { grid-template-columns: 1fr; gap: 36px; }
  .rev-grid { grid-template-columns: 1fr; }
  .gal-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
  .gal-item.gi-tall, .gal-item.gi-wide { grid-column: auto; grid-row: auto; }
  .hero-stats { flex-wrap: wrap; gap: 20px; padding: 20px 24px; }
  .hstat-sep { display: none; }
}
@media (max-width: 640px) {
  .svc-grid { grid-template-columns: 1fr; }
  .doc-grid { grid-template-columns: 1fr; }
  .gal-grid { grid-template-columns: 1fr; }
  .fg-row { grid-template-columns: 1fr; }
  .appt-form-col { padding: 32px 24px; }
  .footer-top { grid-template-columns: 1fr; padding: 48px 24px; }
  .footer-bottom { flex-direction: column; gap: 6px; padding: 16px 24px; }
  .hero-pill { display: none; }
  .hero-copy h1 { font-size: 2.4rem; }
  .hero-btns { flex-direction: column; align-items: center; }
  .services, .about, .doctors, .gallery, .reviews, .appt { padding: 64px 20px; }
}

/* ═══════════════════════════════════════
   DR. NISHA SPOTLIGHT SECTION
   ═══════════════════════════════════════ */
.doctor-section {
  padding: 100px 64px;
  background: var(--blush-lt);
  text-align: center;
}
.doctor-section .sec-tag { color: var(--rose); }
.doctor-section .sec-h2  { margin-bottom: 56px; }

.doc-spotlight {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 64px;
  align-items: start;
  text-align: left;
  background: white;
  border-radius: var(--r-lg);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-rose);
  overflow: hidden;
}

/* Photo column */
.dsp-photo {
  position: relative;
  height: 100%;
  min-height: 580px;
  background: var(--blush-lt);
}
.dsp-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  display: block;
}
.dsp-photo-tag {
  position: absolute; bottom: 70px; left: 0; right: 0;
  text-align: center;
  background: rgba(253,246,240,0.92);
  backdrop-filter: blur(8px);
  color: var(--rose-dk);
  font-weight: 700; font-size: .78rem;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 10px 20px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.dsp-social {
  position: absolute; bottom: 18px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 12px;
}
.dsp-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--rose); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; border: 2px solid var(--rose-dk);
  transition: all .2s; box-shadow: 0 4px 12px rgba(212,132,154,.3);
}
.dsp-social a:hover { background: var(--rose-dk); transform: translateY(-2px); }

/* Info column */
.dsp-info {
  padding: 48px 48px 48px 0;
  display: flex; flex-direction: column; gap: 22px;
}
.dsp-name-row {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.dsp-name-row h3 {
  font-family: var(--font-serif);
  font-size: 2.8rem; font-weight: 700;
  color: var(--dark); line-height: 1;
}
.dsp-badge {
  background: var(--blush-lt);
  border: 1.5px solid var(--blush-dk);
  color: var(--rose-dk);
  font-size: .72rem; font-weight: 700; letter-spacing: 1.5px;
  padding: 6px 16px; border-radius: 100px;
}
.dsp-title {
  font-size: .82rem; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--rose);
}
.dsp-bio {
  font-size: .95rem; color: var(--text-lt);
  line-height: 1.85; max-width: 560px;
  border-left: 3px solid var(--blush);
  padding-left: 18px;
}

/* Stats row */
.dsp-stats {
  display: flex; gap: 0;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}
.dsp-stat {
  flex: 1; padding: 18px 20px; text-align: center;
  border-right: 1.5px solid var(--border);
  display: flex; flex-direction: column; gap: 4px;
  background: var(--cream);
}
.dsp-stat:last-child { border-right: none; }
.dsp-stat-n {
  font-family: var(--font-serif);
  font-size: 1.9rem; font-weight: 700;
  color: var(--rose); line-height: 1;
}
.dsp-stat span:last-child {
  font-size: .68rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--text-lt);
}

/* Specialties chips */
.dsp-specialties {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.dsp-spec {
  background: var(--blush-lt);
  border: 1.5px solid var(--blush-dk);
  color: var(--dark);
  font-size: .78rem; font-weight: 700;
  padding: 7px 16px; border-radius: 100px;
  transition: all .2s; cursor: default;
}
.dsp-spec:hover { background: var(--rose); color: white; border-color: var(--rose-dk); }

/* Awards */
.dsp-awards { display: flex; flex-direction: column; gap: 10px; }
.dsp-award {
  display: flex; align-items: center; gap: 10px;
  font-size: .82rem; font-weight: 600; color: var(--text-lt);
}
.dsp-award i { color: var(--champagne); font-size: .9rem; }

/* RESPONSIVE */
@media (max-width: 1000px) {
  .doc-spotlight { grid-template-columns: 1fr; }
  .dsp-photo { min-height: 420px; height: 420px; }
  .dsp-info { padding: 36px; }
}
@media (max-width: 640px) {
  .doctor-section { padding: 64px 20px; }
  .dsp-name-row h3 { font-size: 2rem; }
  .dsp-stats { flex-direction: column; }
  .dsp-stat { border-right: none; border-bottom: 1.5px solid var(--border); }
  .dsp-stat:last-child { border-bottom: none; }
}


/* ─── SLOT STATUS ─── */
.slot-status { padding: 10px 16px; border-radius: 10px; font-size: .85rem; font-weight: 600; margin-bottom: 8px; display: none; }
.slot-status:not(:empty) { display: block; }
.slot-available { background: #d1fae5; color: #065f46; border: 1.5px solid #6ee7b7; }
.slot-full { background: #fee2e2; color: #991b1b; border: 1.5px solid #fca5a5; }
.slot-closed { background: #fef3c7; color: #92400e; border: 1.5px solid #fcd34d; }
.slot-checking { background: #f3f4f6; color: #6b7280; border: 1.5px solid #d1d5db; }

/* ── Slot Status ── */
.slot-status { padding:10px 16px; border-radius:10px; font-size:.85rem; font-weight:600; margin-bottom:10px; display:none; }
.slot-status:not(:empty) { display:block; }
.slot-available { background:#d1fae5; color:#065f46; border:1.5px solid #6ee7b7; }
.slot-full      { background:#fee2e2; color:#991b1b; border:1.5px solid #fca5a5; }
.slot-closed    { background:#fef3c7; color:#92400e; border:1.5px solid #fcd34d; }
.slot-checking  { background:#f3f4f6; color:#6b7280; border:1.5px solid #d1d5db; }

/* ── Service Price Rows ── */
.svc-prices {
  display: flex; flex-direction: column; gap: 6px;
  margin: 8px 0 14px;
  background: rgba(255,255,255,0.6);
  border-radius: 10px; padding: 10px 12px;
  border: 1px solid rgba(212,132,154,0.15);
}
.svc-price-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .78rem; color: var(--text);
  padding: 3px 0; border-bottom: 1px dashed rgba(212,132,154,0.15);
}
.svc-price-row:last-child { border-bottom: none; }
.svc-price-row span:last-child { font-weight: 700; color: var(--rose-dk); }

/* ── Offers Banner ── */
.offers-banner {
  display: flex; justify-content: center; gap: 16px;
  flex-wrap: wrap; margin-bottom: 40px;
}
.offer-pill {
  font-family: var(--font-body); font-weight: 800;
  font-size: .85rem; letter-spacing: 1px;
  padding: 12px 28px; border-radius: 100px;
  border: 2px solid var(--dark);
  box-shadow: 4px 4px 0 var(--dark);
}
.op1 { background: var(--rose); color: white; }
.op2 { background: var(--dark); color: var(--champagne); }

/* fix services grid for more cards */
.svc-grid { grid-template-columns: repeat(3,1fr); }
@media(max-width:900px) { .svc-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:600px) { .svc-grid { grid-template-columns: 1fr; } }
