/* Deign 2 — Deep Sapphire + Warm Ivory (deign-2-only.design-system.json) */
:root {
  --bg-primary: #FAF7F0;
  --bg-secondary: #F2EBE0;
  --bg-tertiary: #E8DFD2;

  --text-heading: #1A1A1A;
  --text-body: #5C5C5C;
  --text-muted: #8A8278;
  --text-inverse: #FFFFFF;
  --text-link: #1B3B6F;

  --brand: #1B3B6F;
  --brand-hover: #142D56;
  --brand-subtle: #DDE6F2;

  --star: #F5B301;
  --badge-bg: #DDE6F2;
  --badge-text: #1B3B6F;

  --border-subtle: #E0D8CC;
  --border-ghost: #9BB4D4;

  --deco-shape: rgba(27, 59, 111, 0.06);

  --radius-pill: 9999px;
  --radius-card: 14px;
  --radius-image: 20px;
  --radius-image-hero: 28px;

  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.06);
  --shadow-card-hover: 0 8px 32px rgba(0, 0, 0, 0.08);
  --shadow-control: 0 2px 12px rgba(0, 0, 0, 0.08);

  --font: 'Inter', 'Segoe UI', system-ui, sans-serif;
  --max: 1200px;
  --pad-x: clamp(24px, 4vw, 40px);
  --section-y: clamp(80px, 9vw, 112px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-body);
  background-color: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection {
  background: var(--brand-subtle);
  color: var(--brand);
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.section {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}

.section--white {
  background-color: var(--bg-primary);
}

.section--gray {
  background-color: var(--bg-secondary);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 72px;
  background-color: var(--bg-primary);
  border-bottom: 1px solid var(--border-subtle);
  transition: box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 4px 20px rgba(26, 26, 26, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.logo {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brand);
  text-transform: lowercase;
  flex-shrink: 0;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.logo-mark {
  color: var(--brand);
}

.logo-rest {
  color: var(--brand);
  font-weight: 600;
  opacity: 0.88;
}

.logo--footer {
  display: inline-block;
  margin-bottom: 12px;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.5vw, 32px);
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-heading);
  transition: color 0.2s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--brand);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 10px;
  transition: background-color 0.2s ease;
}

.nav-toggle:hover {
  background-color: var(--bg-secondary);
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--text-heading);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded='true'] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded='true'] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded='true'] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Buttons — pill only */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 14px 28px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background-color: var(--brand);
  color: var(--text-inverse);
  box-shadow: 0 6px 18px rgba(27, 59, 111, 0.18);
}

.btn--primary:hover {
  background-color: var(--brand-hover);
  box-shadow: 0 8px 22px rgba(27, 59, 111, 0.22);
}

.btn--dark {
  background-color: var(--brand);
  color: var(--text-inverse);
}

.btn--dark:hover {
  background-color: var(--brand-hover);
}

.btn--secondary {
  background-color: transparent;
  color: var(--text-link);
  border: 1.5px solid var(--border-ghost);
}

.btn--secondary:hover {
  background-color: var(--brand-subtle);
}

.btn--inverse {
  background-color: var(--text-inverse);
  color: var(--brand);
}

.btn--inverse:hover {
  background-color: var(--bg-secondary);
}

.btn--header {
  padding: 12px 24px;
}

/* Badge */
.badge {
  display: inline-block;
  background-color: var(--badge-bg);
  color: var(--badge-text);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

/* Typography */
.hero-title {
  font-size: clamp(2.15rem, 4.6vw, 3.4rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--text-heading);
  margin-bottom: 18px;
  max-width: 18ch;
  padding-top: 4px;
}

.hero-subcopy {
  font-size: 1.0625rem;
  color: var(--text-body);
  line-height: 1.65;
  max-width: 460px;
  margin-bottom: 28px;
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 8px;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--text-heading);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.6;
  max-width: 640px;
}

.card-title {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-heading);
  margin-bottom: 8px;
}

.card-desc {
  font-size: 0.875rem;
  color: var(--text-body);
  line-height: 1.5;
}

.section-header {
  margin-bottom: 48px;
}

.section-header--center {
  text-align: center;
}

.section-header--center .section-desc {
  margin-left: auto;
  margin-right: auto;
}

/* Social proof */
.social-proof {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.social-proof--link {
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.social-proof--link:hover {
  border-color: var(--border-ghost);
  box-shadow: var(--shadow-control);
  transform: translateY(-1px);
}

.stars {
  color: var(--star);
  font-size: 1rem;
  letter-spacing: 2px;
}

.stars--sm {
  font-size: 0.875rem;
  display: block;
  margin-bottom: 12px;
}

.social-proof-label {
  font-size: 0.875rem;
  color: var(--text-body);
}

.social-proof-label strong {
  color: var(--text-heading);
}

/* Split hero */
.hero {
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-media {
  position: relative;
  min-height: 480px;
}

.hero-composition {
  position: relative;
  z-index: 1;
  min-height: 480px;
}

.hero-img--rect {
  display: block;
  width: 72%;
  margin-left: auto;
  height: 480px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-image-hero);
  box-shadow: var(--shadow-card);
}

/* Doctor circle — clipped portrait overlapping hero image */
.hero-avatar {
  position: absolute;
  z-index: 2;
  width: 42%;
  aspect-ratio: 1;
  bottom: 24px;
  left: 0;
  border-radius: 50%;
  border: 4px solid var(--bg-primary);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  background: var(--bg-secondary);
}

.hero-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  /* Frame head through chest — not a tight face crop */
  object-position: center 32%;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-top: 56px;
  margin-top: 16px;
  border-top: 1px solid var(--border-subtle);
}

.deco-shape {
  position: absolute;
  background-color: var(--deco-shape);
  pointer-events: none;
  z-index: 0;
}

.deco-shape--circle {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  top: -20px;
  right: -30px;
}


/* Feature strip */
.feature-item {
  text-align: left;
  padding: 8px 4px;
  border-radius: 12px;
  transition: transform 0.2s ease;
}

.feature-item:hover {
  transform: translateY(-2px);
}

.feature-item:hover .icon-circle {
  background-color: #d0dceb;
}

.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--brand-subtle);
  color: var(--brand);
  margin-bottom: 20px;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.icon-circle svg {
  stroke: currentColor;
}

/* About */
.about-actions {
  text-align: center;
  margin-top: 8px;
}

.services-intro {
  margin-bottom: 40px;
}

/* Promo band */
.promo-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  padding: 32px;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}

.promo-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.promo-copy {
  flex: 1;
  min-width: 220px;
}

.promo-copy .section-title {
  margin-bottom: 8px;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}

.promo-copy .section-desc {
  margin-bottom: 0;
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 36px;
}

.team-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: grid;
  grid-template-columns: 160px 1fr;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.team-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.team-card img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  object-position: center 18%;
  transition: transform 0.4s ease;
}

.team-card:hover img {
  transform: scale(1.03);
}

/* Keep faces visible — portraits have headroom above hair */
.team-card img[alt*='Sachin'] {
  object-position: center 12%;
}

.team-card img[alt*='Bindu'] {
  object-position: center 18%;
}

.team-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.team-creds {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--brand);
  margin-bottom: 10px;
  line-height: 1.45;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.badge-row .badge {
  margin-bottom: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* Service cards */
.services-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 20px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  overflow: hidden;
}

.service-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 16px;
  transition: transform 0.35s ease;
}

.service-card:hover img {
  transform: scale(1.03);
}

.service-book-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand);
}

.service-book-link:hover {
  color: var(--brand-hover);
  text-decoration: underline;
}

.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
}

.service-arrow-link {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand-subtle);
  color: var(--brand);
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.service-arrow-link:hover {
  background: var(--brand);
  color: var(--text-inverse);
  transform: translateX(2px);
  box-shadow: var(--shadow-control);
}

.service-arrow-link:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

/* Testimonials */
.testimonials {
  padding-top: var(--section-y);
}

.google-rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.google-rating-label {
  font-size: 0.9375rem;
  color: var(--text-body);
}

.google-rating-label strong {
  color: var(--text-heading);
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 300px;
  scroll-snap-align: start;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.testimonial-card--quote {
  min-height: 280px;
}

.testimonial-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.testimonial-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.review-source {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--brand-subtle);
  border-radius: var(--radius-pill);
  padding: 4px 10px;
  margin-bottom: 12px;
}

.google-reviews-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 40px;
}

.carousel {
  display: flex;
  align-items: center;
  gap: 16px;
}

.carousel-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  flex: 1;
  padding: 8px 0;
  scrollbar-width: none;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.testimonial-quote {
  font-size: 0.9375rem;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 16px;
  flex: 1;
}

.testimonial-author {
  font-style: normal;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-heading);
  margin-top: auto;
}

.carousel-btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background-color: var(--bg-primary);
  box-shadow: var(--shadow-control);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.2s ease;
}

.carousel-btn:hover {
  box-shadow: var(--shadow-card);
}

.carousel-btn:focus-visible,
.btn:focus-visible,
.nav-link:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

/* ECHS FAQ */
.echs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.echs-card {
  background-color: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 8px 12px;
}

.echs-note,
.echs-form-note,
.echs-inline-note {
  font-size: 0.875rem;
  color: var(--text-body);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.echs-inline-note {
  text-align: left;
  margin: 0 0 8px;
  padding: 14px 16px;
  background-color: var(--brand-subtle);
  border-radius: 12px;
  color: var(--brand);
}

.echs-checklist {
  margin: 0 0 16px;
  padding: 14px 16px;
  background-color: var(--brand-subtle);
  border-radius: 12px;
  color: var(--brand);
}

.echs-checklist-title {
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--brand);
}

.echs-checklist-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.echs-checklist-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  line-height: 1.45;
  color: var(--brand);
}

.echs-checklist-list em {
  font-style: normal;
  opacity: 0.85;
}

.echs-check {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  border: 1.5px solid var(--brand);
  border-radius: 3px;
  background: transparent;
}

/* CTA banner */
.cta-banner {
  background-color: var(--brand);
  padding: 56px 0;
}

.cta-banner-inner {
  text-align: center;
}

.cta-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--text-inverse);
  margin-bottom: 12px;
}

.cta-sub {
  color: rgba(255, 255, 255, 0.88);
  max-width: 560px;
  margin: 0 auto 24px;
  font-size: 1rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.btn--ghost-light {
  background-color: transparent;
  color: var(--text-inverse);
  border: 1.5px solid rgba(255, 255, 255, 0.7);
}

.btn--ghost-light:hover {
  background-color: rgba(255, 255, 255, 0.12);
  transform: scale(1.02);
}

/* Booking form */
.booking-wrap {
  max-width: 800px;
}

.booking-steps {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0 auto 36px;
  max-width: 520px;
}

.booking-step {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  position: relative;
  color: var(--text-muted);
  font-size: 0.8125rem;
  font-weight: 500;
}

.booking-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 36px;
  right: -8px;
  top: 15px;
  height: 1px;
  background: var(--border-subtle);
}

.booking-step.is-active {
  color: var(--brand);
}

.booking-step.is-complete {
  color: var(--text-heading);
}

.booking-step.is-complete:not(:last-child)::after,
.booking-step.is-active:not(:last-child)::after {
  background: var(--brand);
}

.booking-step-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--border-subtle);
  background: var(--bg-primary);
  font-size: 0.8125rem;
  font-weight: 600;
  z-index: 1;
  flex-shrink: 0;
}

.booking-step.is-active .booking-step-num {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--text-inverse);
}

.booking-step.is-complete .booking-step-num {
  background: var(--brand-subtle);
  border-color: var(--brand-subtle);
  color: var(--brand);
}

.booking-panel {
  animation: bookingFade 0.35s ease;
}

@keyframes bookingFade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 28px;
  background: var(--bg-primary);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-heading);
}

.form-field em {
  font-style: normal;
  font-weight: 400;
  color: var(--text-muted);
}

.form-field--full {
  width: 100%;
}

.form-field input,
.form-field select,
.form-field textarea {
  font: inherit;
  font-weight: 400;
  color: var(--text-heading);
  background: var(--bg-primary);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 12px 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
  border-color: var(--brand);
}

.form-field input.is-invalid,
.form-field select.is-invalid,
.form-field textarea.is-invalid {
  border-color: #B42318;
}

.field-error {
  font-size: 0.8125rem;
  font-weight: 400;
  color: #B42318;
  line-height: 1.4;
}

.field-error[hidden] {
  display: none;
}

.btn--submit:disabled,
.btn.is-disabled {
  opacity: 0.65;
  cursor: not-allowed;
  pointer-events: none;
}

.form-error {
  font-size: 0.875rem;
  color: #B42318;
  background: #FCEBEA;
  border-radius: 10px;
  padding: 10px 14px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.form-actions--split {
  justify-content: space-between;
  margin-top: 8px;
}

.btn--submit {
  min-width: 220px;
}

.form-alt {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.form-alt a {
  color: var(--brand);
  font-weight: 500;
}

.form-alt a:hover {
  text-decoration: underline;
}

.review-card,
.success-card {
  padding: 32px;
  background: var(--bg-primary);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
}

.review-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 8px;
}

.review-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 8px;
  line-height: 1.25;
}

.review-sub {
  font-size: 0.9375rem;
  color: var(--text-body);
  margin-bottom: 24px;
  line-height: 1.55;
}

.review-list {
  display: grid;
  gap: 0;
  margin-bottom: 24px;
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  overflow: hidden;
}

.review-list > div {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.875rem;
}

.review-list > div:last-child {
  border-bottom: none;
}

.review-list > div:nth-child(even) {
  background: var(--bg-secondary);
}

.review-list dt {
  color: var(--text-muted);
  font-weight: 500;
}

.review-list dd {
  color: var(--text-heading);
  font-weight: 600;
  margin: 0;
}

.review-process {
  background: var(--bg-secondary);
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 24px;
}

.review-process-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 10px;
}

.review-process-list {
  margin: 0;
  padding-left: 18px;
  color: var(--text-body);
  font-size: 0.875rem;
  line-height: 1.6;
}

.review-process-list li {
  margin-bottom: 4px;
}

.success-card {
  text-align: center;
}

.success-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--brand-subtle);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 20px;
}

.success-highlight {
  max-width: 480px;
  margin: 0 auto 24px;
  padding: 16px;
  background: var(--brand-subtle);
  border-radius: 12px;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--brand);
  text-align: center;
}

.success-steps {
  list-style: decimal;
  list-style-position: outside;
  text-align: left;
  max-width: 420px;
  margin: 0 auto 28px;
  padding: 0 0 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.success-steps li {
  font-size: 0.9375rem;
  color: var(--text-body);
  line-height: 1.5;
  padding-left: 4px;
}

.success-steps a {
  color: var(--brand);
  font-weight: 600;
}

.success-note {
  font-size: 0.875rem;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.55;
}

.success-note a {
  color: var(--brand);
  font-weight: 500;
}

.btn.is-loading {
  pointer-events: none;
  opacity: 0.85;
}

/* Booking confirmation modal */
.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.booking-modal[hidden] {
  display: none;
}

.booking-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.booking-modal-dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 440px;
  background: var(--bg-primary);
  border-radius: var(--radius-card);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.14);
  padding: 40px 32px 32px;
  text-align: center;
  animation: bookingModalIn 0.3s ease;
}

@keyframes bookingModalIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.booking-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.booking-modal-close:hover {
  background: var(--bg-secondary);
  color: var(--text-heading);
}

.booking-modal-close:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

.booking-modal-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--brand-subtle);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
}

.booking-modal-title {
  font-size: clamp(1.375rem, 3vw, 1.625rem);
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 12px;
  line-height: 1.25;
}

.booking-modal-message {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 12px;
}

.booking-modal-note {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 24px;
  padding: 12px 14px;
  background: var(--bg-secondary);
  border-radius: 10px;
}

.booking-modal-note strong {
  color: var(--text-heading);
}

.booking-modal-dialog .btn {
  min-width: 140px;
}

body.modal-open {
  overflow: hidden;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.footer-badges .badge {
  margin-bottom: 0;
}

/* Footer */
.site-footer {
  background-color: var(--bg-secondary);
  padding-top: 64px;
  padding-bottom: 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-tagline {
  font-size: 0.875rem;
  color: var(--text-body);
  max-width: 280px;
}

.footer-heading {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 16px;
}

.footer-links li {
  font-size: 0.875rem;
  color: var(--text-body);
  margin-bottom: 10px;
}

.footer-links a:hover {
  color: var(--brand);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
}

.footer-bottom p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 1024px) {
  .services-track {
    grid-template-columns: repeat(2, 1fr);
  }

  .echs-grid {
    grid-template-columns: 1fr;
  }

  .team-card {
    grid-template-columns: 140px 1fr;
  }

  .testimonial-card {
    flex: 0 0 calc(50% - 12px);
  }
}

@media (max-width: 768px) {
  :root {
    --section-y: clamp(40px, 10vw, 56px);
    --pad-x: 20px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background-color: var(--bg-primary);
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-control);
    padding: 12px var(--pad-x) 20px;
    gap: 2px;
  }

  .nav.is-open {
    display: flex;
    animation: bookingFade 0.25s ease;
  }

  .nav-link {
    padding: 14px 4px;
    border-bottom: 1px solid var(--border-subtle);
  }

  .nav-link:last-of-type {
    border-bottom: none;
  }

  .btn--header {
    width: 100%;
    margin-top: 10px;
  }

  .header-inner {
    position: relative;
  }

  .hero-title {
    max-width: none;
  }

  .hero-grid,
  .hero-features {
    grid-template-columns: 1fr;
  }

  .hero-features {
    gap: 24px;
    padding-top: 32px;
  }

  /* Icon left; title + description share the wide text column */
  .feature-item {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    column-gap: 14px;
    row-gap: 6px;
    align-items: start;
    text-align: left;
  }

  .feature-item .icon-circle {
    margin: 0;
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  .feature-item .card-title,
  .feature-item .card-desc {
    grid-column: 2;
    max-width: none;
    width: 100%;
  }

  .feature-item .card-desc {
    margin-bottom: 0;
  }

  .hero-media,
  .hero-composition {
    min-height: 300px;
  }

  .hero-img--rect {
    width: 78%;
    height: 300px;
    margin-left: auto;
    object-position: center 40%;
  }

  .hero-avatar {
    width: 36%;
    max-width: 132px;
    bottom: 14px;
    left: 4px;
  }

  .hero-avatar img {
    object-position: center 28%;
  }

  .hero-content {
    padding-bottom: 8px;
  }

  .hero-actions {
    flex-wrap: wrap;
  }

  .hero-actions .btn {
    min-height: 44px;
  }

  .promo-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .promo-inner .btn--primary {
    width: 100%;
    justify-content: center;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Same structure as desktop: photo left, text right — not stacked */
  .team-card {
    grid-template-columns: 112px 1fr;
    align-items: stretch;
  }

  .team-card img {
    width: 100%;
    height: 100%;
    min-height: 140px;
    max-height: none;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: center 14%;
  }

  .team-card img[alt*='Sachin'] {
    object-position: center 10%;
  }

  .team-card img[alt*='Bindu'] {
    object-position: center 16%;
  }

  .team-card:hover img {
    transform: none;
  }

  .team-body {
    padding: 16px 14px;
  }

  .team-body .card-title {
    font-size: 1rem;
  }

  .team-creds {
    font-size: 0.75rem;
  }

  .team-body .card-desc {
    font-size: 0.875rem;
    margin-bottom: 0;
  }

  .services-track {
    display: grid;
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .service-card {
    flex: none;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .btn--submit,
  .form-actions .btn,
  .success-actions .btn {
    width: 100%;
  }

  .form-actions--split {
    flex-direction: column-reverse;
  }

  .booking-step-label {
    display: none;
  }

  .booking-steps {
    max-width: 220px;
    margin-bottom: 28px;
  }

  .review-list > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .booking-form,
  .review-card,
  .success-card {
    padding: 22px;
  }

  .testimonial-card {
    flex: 0 0 85%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .carousel-btn {
    display: none;
  }

  .google-reviews-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .google-reviews-cta .btn {
    width: 100%;
    text-align: center;
  }
}

/* Contact page */
.contact-page {
  max-width: 960px;
}

.page-hero {
  margin-bottom: 40px;
}

.page-booking .booking-wrap {
  max-width: 640px;
}

.page-booking .page-hero {
  margin-bottom: 32px;
}

.page-booking .booking-form,
.page-booking .review-card,
.page-booking .success-card {
  padding: 32px;
}

.footer-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  list-style: none;
  margin-top: 20px;
  padding: 0;
}

.footer-quick a {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--brand);
}

.footer-quick a:hover {
  text-decoration: underline;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
  min-height: 220px;
  height: 100%;
  background: var(--bg-primary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

a.contact-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
  border-color: var(--border-ghost);
}

.contact-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand-subtle);
  color: var(--brand);
  margin-bottom: 8px;
}

.contact-card .card-title {
  margin-bottom: 0;
}

.contact-card .card-desc {
  margin-bottom: 4px;
  line-height: 1.55;
}

.contact-card-label {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-heading);
}

.contact-card-value {
  font-size: 0.9375rem;
  color: var(--text-body);
  line-height: 1.55;
  word-break: break-word;
}

.contact-card-action {
  margin-top: auto;
  padding-top: 10px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand);
}

.btn--lg {
  min-height: 52px;
  padding-inline: 28px;
  font-size: 1.0625rem;
}

.contact-hours {
  text-align: center;
  padding: 28px;
  background: var(--bg-secondary);
  border-radius: var(--radius-card);
  margin-bottom: 32px;
}

.contact-hours--top {
  margin-bottom: 28px;
  padding: 20px 24px;
}

.contact-process {
  text-align: center;
  padding: 28px 24px;
  margin-bottom: 48px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  background: var(--bg-primary);
  box-shadow: var(--shadow-card);
}

.contact-process .card-title {
  margin-bottom: 16px;
}

.contact-process-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 520px;
  text-align: left;
}

.contact-process-list li {
  position: relative;
  padding: 10px 0 10px 36px;
  font-size: 0.9375rem;
  color: var(--text-body);
  line-height: 1.5;
  border-bottom: 1px solid var(--border-subtle);
}

.contact-process-list li:last-child {
  border-bottom: none;
}

.contact-process-list li::before {
  content: counter(step);
  counter-increment: step;
  position: absolute;
  left: 0;
  top: 10px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--brand-subtle);
  color: var(--brand);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-process-list {
  counter-reset: step;
}

.contact-process-list strong {
  color: var(--text-heading);
  font-weight: 600;
}

.contact-hours .card-title {
  margin-bottom: 12px;
}

.contact-hours .footer-links {
  display: inline-block;
  text-align: left;
  margin-bottom: 20px;
}

.contact-book-cta {
  text-align: center;
  padding: 40px 24px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  background: var(--bg-primary);
}

.contact-book-cta .section-title {
  margin-bottom: 8px;
}

.contact-book-cta .section-desc {
  margin: 0 auto 24px;
}

.btn[aria-current='page'] {
  pointer-events: none;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-card,
  .contact-hours .btn,
  .contact-book-cta .btn {
    width: 100%;
  }
}

/* Subtle entrance */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Sticky mobile action bar */
.mobile-action-bar {
  display: none;
}

@media (max-width: 767.98px) {
  body {
    padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }

  .mobile-action-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-subtle);
    padding: 6px 8px calc(6px + env(safe-area-inset-bottom, 0px));
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.06);
  }

  .mobile-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    min-height: 56px;
    padding: 8px 4px;
    color: var(--brand);
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.2;
    border-radius: 10px;
  }

  .mobile-action:hover,
  .mobile-action:focus-visible {
    background: var(--brand-subtle);
    outline: none;
  }

  .mobile-action[aria-current='page'] {
    background: var(--brand-subtle);
  }

  .mobile-action svg {
    flex-shrink: 0;
  }
}

/* Service detail page */
.page-service-detail {
  padding-top: clamp(48px, 6vw, 72px);
}

.service-detail-wrap {
  max-width: 960px;
}

.service-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.service-breadcrumb a {
  color: var(--brand);
  font-weight: 500;
}

.service-breadcrumb a:hover {
  text-decoration: underline;
}

.service-breadcrumb span:last-child {
  color: var(--text-body);
}

.service-detail-hero img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-image-hero);
  box-shadow: var(--shadow-card);
  margin-bottom: 32px;
}

.service-detail-tagline {
  font-size: 1.125rem;
  line-height: 1.5;
  color: var(--text-body);
  margin-bottom: 28px;
  max-width: 720px;
}

.service-detail-specialist {
  padding: 20px;
  background: var(--brand-subtle);
  border-radius: var(--radius-card);
  margin-bottom: 28px;
}

.service-specialist-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 6px;
}

.service-detail-list--numbered {
  list-style: decimal;
  list-style-position: outside;
  padding-left: 1.25rem;
}

.service-detail-list--numbered li::before {
  display: none;
}

.service-detail-disclaimer {
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 720px;
  margin-bottom: 28px;
  padding: 16px;
  background: var(--bg-secondary);
  border-radius: 10px;
}

.service-detail-lead {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text-body);
  margin-bottom: 32px;
  max-width: 720px;
}

.service-detail-block {
  margin-bottom: 28px;
}

.service-detail-heading {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 12px;
}

.service-detail-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 720px;
}

.service-detail-list li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--text-body);
}

.service-detail-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
}

.service-detail-text {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-body);
  max-width: 720px;
}

.service-detail-doctor {
  padding: 20px;
  background: var(--bg-secondary);
  border-radius: var(--radius-card);
}

.service-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border-subtle);
}

.service-not-found {
  text-align: center;
  padding: 48px 0;
}

.service-not-found .section-desc {
  margin: 0 auto 24px;
}

@media (max-width: 768px) {
  .service-detail-actions .btn {
    width: 100%;
    justify-content: center;
  }
}
