/* ============================================
   Jain Hospital & Fertility Centre
   ============================================ */

:root {
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --blue-soft: #93c5fd;
  --blue-50: #eff6ff;
  --navy: #0b1530;
  --navy-2: #0f1b3d;
  --ink: #0f172a;
  --ink-2: #1e293b;
  --muted: #64748b;
  --line: #e5e7eb;
  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --bg-blue-soft: #eef4ff;
  --green: #16a34a;
  --green-soft: #dcfce7;
  --shadow-sm: 0 1px 2px rgba(15,23,42,.06);
  --shadow: 0 10px 30px -10px rgba(15,23,42,.15);
  --shadow-lg: 0 30px 60px -20px rgba(37,99,235,.25);
  --radius: 18px;
  --radius-lg: 28px;
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(15,23,42,.06);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -.01em;
  text-decoration: none;
  color: inherit;
  line-height: 1.1;
}
.logo-mark {
  width: 160px; height: auto;
  display: block;
  background: transparent;
  color: transparent;
  border-radius: 0;
  box-shadow: none;
}
.logo-img {
  height: 42px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.logo-text {
  display: block;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -.01em;
  color: var(--ink);
  white-space: nowrap;
  line-height: 1.15;
}
.logo-text .logo-accent {
  display: block;
  font-weight: 700;
  font-size: 13px;
  color: var(--blue);
  letter-spacing: .02em;
}

.primary-nav ul {
  display: flex;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
  background: #f1f5f9;
  border-radius: 999px;
  padding: 6px;
}
.primary-nav a {
  display: inline-block;
  padding: 8px 16px;
  font-weight: 500;
  font-size: 14.5px;
  color: var(--ink-2);
  border-radius: 999px;
  transition: all .2s ease;
}
.primary-nav a:hover { color: var(--blue); }
.primary-nav a.active {
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

.hamburger {
  display: none;
  background: none;
  border: 0;
  width: 40px; height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.hamburger span {
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: .2s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  font-weight: 600;
  font-size: 14.5px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  transition: all .2s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: #dc2626;
  color: #fff;
}
.btn-primary:hover {
  background: #b91c1c;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -8px rgba(220, 38, 38, .5);
}
.btn-ghost {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--ink); }
.btn-outline {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}
.btn-outline:hover { border-color: var(--ink); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--blue); }
.btn-white {
  background: #fff;
  color: var(--ink);
}
.btn-white:hover { background: var(--blue-50); }
.btn-ghost-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.3);
}
.btn-ghost-white:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn-lg { padding: 14px 26px; font-size: 15px; }
.btn-block { width: 100%; }
.icon-btn {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 12px;
  border: 1.5px solid var(--line);
  background: #fff;
  color: var(--ink);
  transition: .2s;
}
.icon-btn:hover { border-color: var(--ink); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  padding: 70px 0 90px;
  background:
    radial-gradient(ellipse 80% 60% at 20% 10%, #dbeafe 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 0%, #e0f2fe 0%, transparent 60%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(37,99,235,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,.05) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 30%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  box-shadow: var(--shadow-sm);
}
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); display: inline-block; }
.trust-pill .dot { box-shadow: 0 0 0 4px rgba(22,163,74,.15); }

.display {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 5.4vw, 64px);
  line-height: 1.05;
  letter-spacing: -.02em;
  margin: 22px 0 18px;
  color: var(--ink);
}
.hl {
  color: var(--blue);
  position: relative;
  display: inline-block;
}
.hl::after {
  content: '';
  position: absolute;
  left: -2px; right: -2px; bottom: 4px;
  height: 10px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 10' preserveAspectRatio='none'><path d='M2 7 Q 50 1, 100 5 T 198 4' stroke='%232563eb' stroke-width='2.5' fill='none' stroke-linecap='round'/></svg>") no-repeat;
  background-size: 100% 100%;
}
.lead {
  font-size: 17px;
  color: var(--muted);
  max-width: 540px;
  margin: 0 0 30px;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}
.stat-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
}
.stat-num .plus, .stat-num .star { color: var(--blue); }
.stat-num .star { font-size: 22px; vertical-align: 4px; }
.stat-num .slash { color: var(--blue); font-weight: 700; }
.stat-lbl { font-size: 13px; color: var(--muted); margin-top: 4px; }

/* Hero visual */
.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 540px;
  margin-left: auto;
}
.hero-card {
  position: relative;
  background: linear-gradient(160deg, var(--blue) 0%, #1e40af 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  margin: 30px 0 0 0;
  z-index: 2;
}
.hero-card-top {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px;
}
.hc-label {
  font-size: 11px;
  letter-spacing: .12em;
  font-weight: 600;
  opacity: .85;
}
.hc-live {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700;
  background: rgba(255,255,255,.18);
  padding: 4px 10px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
.live-dot {
  width: 7px; height: 7px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(74,222,128,.3);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 3px rgba(74,222,128,.3); }
  50% { box-shadow: 0 0 0 6px rgba(74,222,128,0); }
}
.hc-doctor { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.hc-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background-size: cover; background-position: center;
  border: 3px solid rgba(255,255,255,.4);
}
.hc-name { font-size: 17px; font-weight: 700; }
.hc-spec { font-size: 12.5px; opacity: .85; }
.hc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 18px; }
.hc-box {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 14px;
  padding: 12px 14px;
  backdrop-filter: blur(6px);
}
.hc-box-lbl { font-size: 10px; letter-spacing: .12em; opacity: .8; font-weight: 600; }
.hc-box-val { font-size: 18px; font-weight: 700; margin-top: 2px; }
.hc-join {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: #fff;
  color: var(--ink);
  padding: 13px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14.5px;
  transition: .2s;
}
.hc-join:hover { background: var(--blue-50); }

.float-card {
  position: absolute;
  background: #fff;
  padding: 12px 16px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 12px;
  z-index: 3;
  animation: float 5s ease-in-out infinite;
}
.fc-1 { top: 5%; right: 0; }
.fc-2 { bottom: 22%; left: -10px; animation-delay: 1.5s; }
.fc-3 { bottom: 5%; right: 10%; animation-delay: 3s; }
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.fc-icon {
  width: 36px; height: 36px;
  background: var(--blue-50);
  border-radius: 10px;
  display: grid; place-items: center;
  font-size: 18px;
}
.fc-icon-green {
  background: var(--green-soft);
  color: var(--green);
}
.fc-title { font-size: 12px; color: var(--muted); }
.fc-sub { font-size: 13.5px; color: var(--ink); }
.avatars { display: flex; }
.avatars span {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: inline-block;
  margin-left: -8px;
  background-size: cover;
}
.avatars span:first-child { margin-left: 0; }

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 90px 0;
}
.section-alt { background: var(--bg-alt); }
.section-blue {
  background: linear-gradient(180deg, #f0f6ff 0%, #e6efff 100%);
}
.section-head { margin-bottom: 50px; }
.section-head.center { text-align: center; max-width: 720px; margin-inline: auto; }
.section-head.between {
  display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap;
}
.eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: var(--blue-50);
  color: var(--blue);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  margin-bottom: 14px;
}
.eyebrow-light { background: rgba(255,255,255,.18); color: #fff; }
.cta-eyebrow { background: rgba(255,255,255,.1); color: #cfe0ff; }

.h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -.02em;
  margin: 0 0 12px;
}
.h2.white { color: #fff; }
.sub { color: var(--muted); font-size: 16px; margin: 0; }
.sub.light-sub { color: #cbd5e1; }
.text-blue { color: var(--blue); }
.text-blue-soft { color: #cfe0ff; }

/* ============================================
   SERVICES
   ============================================ */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  max-width: 1080px;
  margin: 0 auto;
}
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all .25s ease;
  position: relative;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--blue-soft);
}
.service-ico {
  width: 56px; height: 56px;
  background: var(--blue-50);
  border-radius: 14px;
  display: grid; place-items: center;
  font-size: 26px;
  margin-bottom: 18px;
}
.service-ico-img {
  width: 100%;
  height: 160px;
  background-size: cover;
  background-position: center;
  border-radius: 14px;
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
}
.service-ico-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0) 60%, rgba(255,255,255,.35) 100%);
}
.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--ink);
}
.service-card p {
  color: var(--muted);
  font-size: 14.5px;
  margin: 0 0 18px;
}
.learn {
  font-weight: 600;
  color: var(--blue);
  font-size: 14px;
  display: inline-flex; gap: 4px; align-items: center;
}
.learn:hover { gap: 8px; }

/* ============================================
   DOCTORS
   ============================================ */
.doctor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.doctor-grid-3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 980px;
  margin: 0 auto;
}
.doctor-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: .25s ease;
  display: block;
  color: inherit;
}
a.doctor-card { cursor: pointer; }
.doctor-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.doctor-photo {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  position: relative;
}
.doctor-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.5) 100%);
}
.available {
  position: absolute;
  top: 12px; left: 12px;
  background: #fff;
  color: var(--ink);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .04em;
  display: inline-flex; align-items: center; gap: 6px;
  z-index: 2;
}
.available .dot { width: 6px; height: 6px; }
.years {
  position: absolute;
  bottom: 12px; left: 12px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  z-index: 2;
  text-shadow: 0 1px 4px rgba(0,0,0,.5);
}
.doctor-body { padding: 20px; }
.doctor-body h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 4px;
}
.doctor-body .spec {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--blue);
  margin-bottom: 10px;
}
.doctor-body p {
  color: var(--muted);
  font-size: 13.5px;
  margin: 0 0 16px;
  min-height: 56px;
}
.doctor-actions { display: flex; gap: 8px; align-items: center; }

/* ============================================
   BOOK FORM
   ============================================ */
.book-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 30px 60px -20px rgba(15,23,42,.15);
  max-width: 720px;
  margin: 0 auto;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.form-grid-simple {
  max-width: 640px;
  margin: 0 auto;
  grid-template-columns: 1fr 1fr;
}
.form-grid-simple .field.full { grid-column: 1 / -1; }
.form-actions-center { justify-content: center; }
.field { display: flex; flex-direction: column; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
  margin-bottom: 6px;
}
.field input, .field select, .field textarea {
  border: 1.5px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 14.5px;
  font-family: inherit;
  color: var(--ink);
  transition: .2s;
  outline: none;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,.12);
}
.field textarea { resize: vertical; min-height: 80px; }
.form-actions {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.form-note { font-size: 13px; color: var(--muted); margin: 0; }

/* Book section — dark theme so white text shows up properly */
.section.section-blue {
  position: relative;
  background:
    radial-gradient(ellipse 60% 50% at 0% 0%, rgba(96,165,250,.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 100% 100%, rgba(37,99,235,.18) 0%, transparent 60%),
    linear-gradient(135deg, #0b1530 0%, #0f1b3d 100%);
  color: #fff;
}
.section.section-blue .h2.white { color: #fff; }
.section.section-blue .text-blue-soft { color: #93c5fd; }
.section.section-blue .eyebrow-light {
  background: rgba(255,255,255,.12);
  color: #cfe0ff;
  border: 1px solid rgba(255,255,255,.18);
}
.book-section-card {
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,.5);
  max-width: 720px;
  margin: 0 auto;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testi-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  transition: .2s;
}
.testi-card:hover { box-shadow: var(--shadow); }
.testi-card::after {
  content: '”';
  position: absolute;
  top: 18px; right: 24px;
  font-size: 80px;
  line-height: 1;
  color: var(--blue-50);
  font-family: Georgia, serif;
  font-weight: 700;
}
.stars { color: #fbbf24; font-size: 16px; margin-bottom: 14px; letter-spacing: 2px; }
.quote {
  font-size: 15px;
  color: var(--ink-2);
  margin: 0 0 22px;
  line-height: 1.6;
}
.testi-foot {
  display: flex; align-items: center; gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.t-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}
.t-name { font-size: 14px; font-weight: 700; }
.t-meta { font-size: 12px; color: var(--muted); }
.verified {
  margin-left: auto;
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--green-soft);
  color: var(--green);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 700;
}
.verified .check { width: 16px; height: 16px; font-size: 10px; background: var(--green); color: #fff; }

/* ============================================
   CTA BOX
   ============================================ */
.section-cta { padding: 50px 0 100px; }
.cta-box {
  background:
    radial-gradient(ellipse at 0% 0%, rgba(255,255,255,.06) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(255,255,255,.06) 0%, transparent 50%),
    linear-gradient(135deg, #0b1530 0%, #0f1b3d 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 70px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: .5;
}
.cta-box > * { position: relative; }
.cta-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 800;
  margin: 14px 0 16px;
  letter-spacing: -.02em;
  line-height: 1.1;
}
.cta-sub { color: #cbd5e1; max-width: 600px; margin: 0 auto 32px; font-size: 16px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 26px; }
.cta-trust {
  display: flex; gap: 28px; justify-content: center; flex-wrap: wrap;
  font-size: 14px; color: #cbd5e1;
}
.cta-trust .check { background: none; color: #4ade80; font-weight: 700; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 50px;
}
.f-col h4 {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 16px;
  color: var(--ink);
}
.f-col ul { list-style: none; padding: 0; margin: 0; }
.f-col li { margin-bottom: 10px; }
.f-col a { color: var(--muted); font-size: 14px; transition: .2s; }
.f-col a:hover { color: var(--blue); }
.f-tag { color: var(--muted); font-size: 14px; margin: 0 0 18px; line-height: 1.6; }
.socials { display: flex; gap: 8px; }
.socials a {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  color: var(--ink-2);
  font-size: 14px;
  transition: .2s;
}
.socials a:hover { border-color: var(--blue); color: var(--blue); }

.newsletter {
  display: flex;
  background: var(--bg-alt);
  border-radius: 999px;
  padding: 4px;
  margin-bottom: 16px;
}
.newsletter input {
  flex: 1;
  background: transparent;
  border: 0;
  outline: none;
  padding: 10px 14px;
  font-size: 14px;
  font-family: inherit;
  color: var(--ink);
}
.newsletter button {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  border: 0;
  display: grid; place-items: center;
  transition: .2s;
}
.newsletter button:hover { background: var(--blue); }
.contact-info { display: flex; flex-direction: column; gap: 8px; }
.contact-info a { color: var(--muted); font-size: 14px; }
.contact-info a:hover { color: var(--blue); }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 20px 0;
}
.fb-inner {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.fb-inner p { margin: 0; font-size: 13px; color: var(--muted); }
.fb-links { display: flex; gap: 20px; }
.fb-links a, .fb-links span { font-size: 13px; color: var(--muted); }
.fb-links a:hover { color: var(--ink); }

/* ============================================
   FLOATING WHATSAPP
   ============================================ */
.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 10px 30px -5px rgba(37,211,102,.5);
  z-index: 99;
  transition: .2s;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float .wa-icon {
  display: block;
  width: 28px; height: 28px;
  margin-top: -2px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .service-grid, .doctor-grid { grid-template-columns: repeat(2, 1fr); }
  .doctor-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .primary-nav { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 40px 0 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 420px; margin: 0 auto; }
  .section { padding: 60px 0; }
  .form-grid, .form-grid-simple { grid-template-columns: 1fr; }
  .book-form { padding: 28px 22px; }
  .cta-box { padding: 50px 24px; }
}

@media (max-width: 600px) {
  .service-grid, .doctor-grid { grid-template-columns: 1fr; }
  .doctor-grid-3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .stat-num { font-size: 26px; }
  .float-card { display: none; }
  .nav-wrap { height: 64px; }
  .logo-text { font-size: 14px; }
  .logo-text .logo-accent { font-size: 11px; font-weight: 700; }
  .logo-mark { width: 130px; }
  .logo-img { height: 36px; }
  .logo { gap: 8px; }
  .wa-float { width: 50px; height: 50px; bottom: 16px; right: 16px; }
}

/* Mobile drawer */
.mobile-menu {
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 20px 24px;
  box-shadow: var(--shadow);
  display: none;
  z-index: 99;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 14px 0;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.mobile-menu a:last-child { border-bottom: 0; }
.mobile-menu .btn { margin-top: 14px; width: 100%; }

/* ============================================
   DOCTOR PROFILE PAGE
   ============================================ */
.profile-hero {
  padding: 60px 0 80px;
  background:
    radial-gradient(ellipse 60% 50% at 10% 0%, #dbeafe 0%, transparent 60%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}
.profile-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 50px;
  align-items: flex-start;
}
.profile-photo {
  position: sticky;
  top: 100px;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.profile-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.4) 100%);
}
.available-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: #fff;
  color: var(--ink);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  display: inline-flex; align-items: center; gap: 6px;
  z-index: 2;
  box-shadow: var(--shadow-sm);
}
.back-link {
  display: inline-block;
  color: var(--blue);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 14px;
}
.back-link:hover { text-decoration: underline; }
.profile-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.1;
  margin: 6px 0 16px;
  color: var(--ink);
}
.profile-quote {
  font-size: 17px;
  color: var(--muted);
  font-style: italic;
  margin: 0 0 28px;
  padding-left: 16px;
  border-left: 3px solid var(--blue);
}
.profile-meta-line {
  font-size: 15px;
  color: var(--ink-2);
  font-weight: 500;
  margin: -10px 0 16px;
  letter-spacing: .02em;
}
.profile-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--blue);
  margin: 30px 0 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--blue-50);
}
.profile-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 30px;
}
.pm-label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 4px;
}
.pm-val {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
}
.profile-sub {
  font-size: 18px;
  font-weight: 700;
  margin: 24px 0 12px;
  color: var(--ink);
}
.profile-info p {
  color: var(--ink-2);
  line-height: 1.7;
  margin: 0 0 12px;
  font-size: 15px;
}
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}
.tag {
  display: inline-block;
  background: var(--blue-50);
  color: var(--blue);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}
.edu-list {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
}
.edu-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-2);
  font-size: 15px;
}
.edu-list li:last-child { border-bottom: 0; }
.edu-list strong { color: var(--ink); }

@media (max-width: 900px) {
  .profile-grid { grid-template-columns: 1fr; gap: 30px; }
  .profile-photo { position: static; max-width: 360px; margin: 0 auto; }
  .profile-meta { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .profile-meta { grid-template-columns: 1fr 1fr; padding: 14px; }
  .pm-val { font-size: 16px; }
}
