:root {
  --navy: #0b2f6b;
  --navy-dark: #071c42;
  --navy-light: #1a4590;
  --gold: #f0a93a;
  --gold-dark: #d98c1b;
  --bg-light: #f6f8fb;
  --text-dark: #1c2530;
  --text-muted: #5b6472;
  --white: #ffffff;
  --border: #e5e9f0;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(11, 47, 107, 0.08);
}

* { box-sizing: border-box; min-width: 0; }

html { scroll-behavior: smooth; height: 100%; }

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* Fully invisible scrollbars everywhere — page and any inner
   overflow:auto container (modal boxes, mobile nav) — no visible
   track or thumb, scrolling still works normally. */
* {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
*::-webkit-scrollbar {
  width: 0;
  height: 0;
  background: transparent;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Poppins', 'Inter', sans-serif;
  margin: 0 0 0.5em;
  color: var(--navy-dark);
}

p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 60px 0; }

.center { text-align: center; }

.section-eyebrow {
  color: var(--gold-dark);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 0.4em;
}

.placeholder-note {
  background: #fff6e6;
  border: 1px dashed var(--gold);
  border-radius: 10px;
  padding: 10px 14px;
  color: #7a5a10;
  font-size: 0.92rem;
}

/* ===== Icons =====
   Inline SVG line icons (see sprite in index.html) — replaces emoji
   throughout the site for a consistent, professional look. */
.icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(135deg, #e0a23f, var(--gold-dark));
  color: var(--navy-dark);
  box-shadow: 0 6px 16px rgba(217, 140, 27, 0.25);
}
.btn-primary:hover { background: var(--gold-dark); }

.btn-call {
  background: var(--navy);
  color: white;
  padding: 10px 20px;
  font-size: 0.9rem;
}
.btn-call:hover { background: var(--navy-light); }

.btn-outline {
  background: transparent;
  border: 2px solid var(--navy);
  color: var(--navy);
  padding: 10px 20px;
}
.btn-outline:hover { background: var(--navy); color: white; }

/* Used on the hero, directly over the dark photo background */
.btn-light {
  background: white;
  color: var(--navy-dark);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}
.btn-light:hover { background: #eef1f6; }

.btn-outline-light {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  color: white;
}
.btn-outline-light:hover { background: rgba(255, 255, 255, 0.12); border-color: white; }

.btn-block { width: 100%; }

/* Inline icons inside buttons/links/labels */
.btn .icon { width: 18px; height: 18px; vertical-align: -4px; margin-right: 4px; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy-dark);
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 76px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand img {
  height: 46px;
  width: 46px;
  object-fit: cover;
  border-radius: 50%;
  background: white;
  flex-shrink: 0;
}
.brand-text-group {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.brand-text {
  color: white;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
}
.brand-tagline {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-top: 2px;
  max-width: 260px;
}

.main-nav {
  display: flex;
  gap: clamp(14px, 2.5vw, 32px);
  flex-wrap: nowrap;
}
.main-nav a {
  color: #d9e2f5;
  font-weight: 500;
  font-size: 0.95rem;
}
.main-nav a:hover { color: var(--gold); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(7,28,66,0.92) 0%, rgba(7,28,66,0.78) 45%, rgba(7,28,66,0.55) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding-top: 60px;
  padding-bottom: 60px;
}
.hero-hindi {
  color: var(--gold);
  font-weight: 700;
  font-style: italic;
  font-size: 1.65rem;
  text-align: center;
  margin-bottom: 14px;
}
.hero h1 {
  color: white;
  font-size: 2.6rem;
  line-height: 1.2;
  margin-bottom: 0.4em;
}
.hero-sub {
  color: #e6ecf7;
  font-size: 1.05rem;
  margin-bottom: 1.8em;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== Trust strip ===== */
.trust-strip {
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 48px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--navy-dark);
  font-size: 0.95rem;
  flex: 0 1 auto;
}
.trust-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(11, 47, 107, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-icon .icon { width: 20px; height: 20px; color: var(--navy); }

/* ===== Featured treatments carousel ===== */
.highlights { padding-top: 32px; padding-bottom: 48px; background: var(--bg-light); }
.highlights .container { padding-bottom: 12px; }

.carousel {
  position: relative;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.carousel-viewport {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}
.carousel-slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 440px;
}
.carousel-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.carousel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,28,66,0.88) 0%, rgba(7,28,66,0.55) 45%, rgba(7,28,66,0.15) 75%);
}
.carousel-caption {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 480px;
  padding: 40px 44px;
  color: white;
}
.carousel-eyebrow {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 0.5em;
}
.carousel-caption h3 { color: white; font-size: 1.8rem; margin-bottom: 0.35em; }
.carousel-caption p:not(.carousel-eyebrow) { color: #dfe6f5; margin-bottom: 1.3em; }
.carousel-caption .btn { align-self: flex-start; }

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.85);
  color: var(--navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
  transition: background 0.15s ease;
  z-index: 3;
}
.carousel-arrow:hover { background: white; }
.carousel-arrow .icon { width: 20px; height: 20px; }
.carousel-prev { left: 16px; }
.carousel-next { right: 16px; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}
.carousel-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #c7d0e0;
  cursor: pointer;
  padding: 0;
}
.carousel-dots button.active { background: var(--gold); width: 26px; border-radius: 999px; }

/* ===== About ===== */
.about-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.about-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.about h2 { font-size: 2rem; }
.about-quote {
  margin: 22px 0;
  padding: 4px 0 4px 22px;
  border-left: 3px solid var(--gold);
}
.about-quote p {
  font-family: 'Poppins', sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--navy-dark);
  line-height: 1.55;
  margin: 0 0 8px;
}
.about-quote cite {
  font-style: normal;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.doctor-cred {
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 8px;
}

/* ===== Doctors ===== */
.doctors { padding-top: 40px; }
.doctors-sub {
  max-width: 600px;
  margin: 0 auto 40px;
  color: var(--text-muted);
}
.doctors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 32px;
}
.doctor-card-team {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.doctor-card-team:hover,
.doctor-card-team:focus-visible {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
  outline: none;
}
.doctor-avatar {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.03em;
}
.avatar-1 { background: linear-gradient(135deg, var(--navy), var(--navy-light)); }
.avatar-2 { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); color: var(--navy-dark); }
.avatar-3 { background: linear-gradient(135deg, #2f6b6b, #4fa3a3); }
.avatar-4 { background: linear-gradient(135deg, #5b6472, #8a97b5); }
.doctor-avatar.has-photo { padding: 0; overflow: hidden; }
.doctor-avatar.has-photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }

.mock-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 3px 10px;
  margin-bottom: 10px;
}
.doctor-card-team h3 { font-size: 1.05rem; margin-bottom: 2px; }
.doctor-card-team .doctor-cred { font-size: 0.85rem; margin-bottom: 16px; }

/* ===== Doctor bio modal ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 28, 66, 0.65);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 500;
}
.modal-overlay.open { display: flex; }
.modal-box {
  position: relative;
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: var(--radius);
  max-width: 440px;
  width: 100%;
  max-height: 85vh;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
/* The close button lives outside .modal-body, so it never scrolls out of
   reach even when the body content is taller than the modal itself. */
.modal-body {
  padding: 36px 32px;
  overflow-y: auto;
  min-height: 0;
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 34px;
  height: 34px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  border-radius: 50%;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--text-muted);
  cursor: pointer;
}
.modal-close:hover { color: var(--navy-dark); }
.modal-avatar.has-photo { padding: 0; overflow: hidden; }
.modal-avatar.has-photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.modal-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
}
#modalDoctorBio { color: var(--text-muted); font-size: 0.95rem; margin: 0; }

/* ===== Lead-capture popup ===== */
.lead-box h3 { font-size: 1.3rem; margin-bottom: 8px; }
.lead-sub { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 20px; }
.lead-form {
  display: grid;
  gap: 12px;
  text-align: left;
}
.lead-form input {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 11px 12px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-dark);
}
.lead-form input:focus {
  outline: none;
  border-color: var(--navy);
}
.lead-box .form-hint { margin-top: 12px; }

/* ===== Why us ===== */
.why-us { background: var(--bg-light); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.why-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  text-align: center;
}
.why-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(11,47,107,0.08), rgba(240,169,58,0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.why-icon .icon { width: 26px; height: 26px; color: var(--navy); }
.why-card h3 { font-size: 1.05rem; }
.why-card p { color: var(--text-muted); font-size: 0.92rem; margin: 0; }

/* ===== Services ===== */
.services-disclaimer {
  max-width: 620px;
  margin: 0 auto 40px;
  color: var(--text-muted);
  font-size: 0.92rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 22px 26px;
  box-shadow: 0 4px 14px rgba(11, 47, 107, 0.05);
  transition: box-shadow 0.15s ease, transform 0.15s ease, border-color 0.15s ease;
}
.service-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: var(--gold); }
.service-card.featured { border-color: var(--gold); background: #fffaf1; }
.service-card h3 { font-size: 1.05rem; }
.service-card p { color: var(--text-muted); font-size: 0.9rem; }

.service-icon {
  width: 68px;
  height: 68px;
  margin-bottom: 16px;
}
.service-icon img { width: 100%; height: 100%; display: block; }
.badge {
  position: absolute;
  top: -10px;
  right: 18px;
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
}

/* ===== Booking ===== */
.booking { background: var(--navy-dark); color: white; }
.booking-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.booking h2, .booking .section-eyebrow { color: white; }
.booking .section-eyebrow { color: var(--gold); }
.booking-points { list-style: none; padding: 0; margin: 20px 0; }
.booking-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: #d9e2f5;
}
.booking-points .icon { width: 18px; height: 18px; color: var(--gold); }
.booking-alt { color: #c3cee6; font-size: 0.92rem; }
.booking-alt a { color: var(--gold); font-weight: 600; }

.booking-form {
  background: white;
  border-radius: var(--radius);
  padding: 30px;
  display: grid;
  gap: 16px;
  box-shadow: var(--shadow);
}
.booking-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy-dark);
}
.booking-form input,
.booking-form select,
.booking-form textarea {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 11px 12px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-dark);
}
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: var(--navy);
}
.field-row { display: flex; gap: 16px; }
.field-row label { flex: 1; }

.field-icon-wrap { position: relative; display: flex; align-items: center; }
.field-icon-wrap input,
.field-icon-wrap select { width: 100%; }
.field-icon {
  position: absolute;
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  pointer-events: none;
}
.field-icon-wrap:not(.select-wrap) .field-icon { left: 12px; }
.field-icon-wrap:not(.select-wrap) input { padding-left: 38px; }

.select-wrap select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 38px;
  background: white;
  cursor: pointer;
}
.select-wrap .field-icon-right { right: 12px; width: 16px; height: 16px; }

@media (max-width: 480px) {
  .field-row { flex-direction: column; gap: 16px; }
}
.form-hint {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
}

/* ===== Gallery ===== */
.gallery-sub {
  max-width: 560px;
  margin: 0 auto 40px;
  color: var(--text-muted);
}
.clinic-tour-video-wrap {
  max-width: 420px;
  margin: 0 auto;
}
.gallery-grid,
.photo-gallery-grid {
  columns: 3;
  column-gap: 18px;
}
.photo-gallery-grid img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 18px;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform 0.15s ease;
}
.photo-gallery-grid img:hover { transform: scale(1.02); }
.gallery-grid img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 18px;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform 0.15s ease;
}
.gallery-grid img:hover { transform: scale(1.02); }

.gallery-video-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 18px;
  box-shadow: var(--shadow);
  cursor: pointer;
  break-inside: avoid;
}
.gallery-video-card img {
  width: 100%;
  display: block;
  transition: transform 0.2s ease;
}
.gallery-video-card:hover img { transform: scale(1.04); }
.gallery-video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,28,66,0.1) 40%, rgba(7,28,66,0.75) 100%);
}
.play-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}
.play-badge .icon { width: 26px; height: 26px; color: var(--navy-dark); margin-left: 3px; }
.gallery-video-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  color: white;
  font-weight: 700;
  z-index: 2;
}

.video-modal-box {
  max-width: 720px;
  background: black;
}
.video-modal-box .modal-body { padding: 12px; }
.video-modal-box video {
  width: 100%;
  max-height: 80vh;
  display: block;
  border-radius: 8px;
}
.video-modal-box .modal-close {
  color: white;
  background: none;
  border-radius: 50%;
  top: 20px;
  right: 20px;
}

/* ===== Patient Care Guides ===== */
.care-guides { background: var(--bg-light); }
.care-guides-sub {
  max-width: 620px;
  margin: 0 auto 40px;
  color: var(--text-muted);
}
.guides-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.guide-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 4px 14px rgba(11, 47, 107, 0.05);
  transition: box-shadow 0.15s ease, transform 0.15s ease, border-color 0.15s ease;
}
.guide-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: var(--gold); }
.guide-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.guide-icon .icon { width: 28px; height: 28px; color: white; }
.guide-card h3 { font-size: 1.02rem; margin-bottom: 4px; }
.guide-card p { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 16px; }

.guide-modal-box {
  max-width: 620px;
  text-align: left;
}
.guide-modal-box h3 { text-align: center; padding-right: 20px; }
.guide-video {
  display: block;
  max-height: 60vh;
  width: auto;
  max-width: 100%;
  margin: 0 auto 20px;
  border-radius: 10px;
  background: black;
}
.guide-flashcards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 18px;
}
.flashcard {
  display: flex;
  align-items: center;
  gap: 14px;
  background: white;
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(11, 47, 107, 0.06);
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.flashcard:hover {
  box-shadow: 0 6px 18px rgba(11, 47, 107, 0.12);
  transform: translateY(-2px);
}
.flashcard-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: visible;
}
.flashcard-icon img {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 3px 6px rgba(11, 47, 107, 0.18));
}
.flashcard .flashcard-label {
  display: block;
  color: var(--navy-dark);
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 4px;
  line-height: 1.25;
}
.flashcard .flashcard-text {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.4;
}
.guide-warning {
  background: #fff6e6;
  border: 1px solid var(--gold);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 0.9rem;
  color: #7a5a10;
}
.guide-warning strong { color: var(--gold-dark); display: block; margin-bottom: 4px; }

/* ===== Contact ===== */
.contact { background: var(--bg-light); padding-top: 40px; }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 56px;
}
.contact-row {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
}
.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon .icon { width: 20px; height: 20px; color: white; }
.contact-row strong { color: var(--navy-dark); }
.contact-row a { color: var(--navy); font-weight: 600; }
.contact-row a:hover { color: var(--gold-dark); }

.map-embed {
  margin-top: 8px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  line-height: 0;
}
.map-embed iframe {
  width: 100%;
  height: 260px;
  border: 0;
  display: block;
}
.contact-image {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.contact-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  flex: 1;
  width: 100%;
  min-height: 260px;
  object-fit: cover;
}
.contact-image .caption {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-top: 10px;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--navy-dark);
  color: #c3cee6;
  padding-top: 16px;
  margin-top: auto;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-bottom: 16px;
}
.footer-brand { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.footer-brand img { height: 30px; width: 30px; object-fit: cover; border-radius: 50%; background: white; flex-shrink: 0; }
.footer-brand-text { display: flex; flex-direction: column; line-height: 1.3; }
.footer-brand strong { color: white; font-size: 0.88rem; }
.footer-brand-tagline {
  color: #8a97b5;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-top: 1px;
}
.footer-links { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; font-size: 0.85rem; }
.footer-links a:hover { color: var(--gold); }
.footer-social { display: flex; align-items: center; }
.footer-social .icon { width: 26px; height: 26px; }
.footer-divider {
  /* full-bleed divider — unconstrained by .container's max-width,
     unlike footer-inner above it, so it truly spans edge to edge */
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-bottom {
  text-align: left;
  font-size: 0.75rem;
  padding-top: 12px;
  padding-bottom: 12px;
  margin-top: 0;
  margin-bottom: 0;
  color: #8a97b5;
}

@media (max-width: 560px) {
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  .footer-bottom { text-align: center; }
  .about-image img { height: 300px; }
}

/* ===== Floating WhatsApp ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #25D366;
  color: white;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  z-index: 200;
  transition: transform 0.15s ease;
}
.whatsapp-float .icon { width: 28px; height: 28px; }
.whatsapp-float:hover { transform: scale(1.08); }

/* ===== Responsive ===== */

/* Nav collapses to hamburger at the same point the multi-column grids
   collapse, so there's no in-between width where the inline nav is
   squeezed against the logo/call button with no room to breathe. */
@media (max-width: 960px) {
  .main-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--navy-dark);
    flex-direction: column;
    padding: 12px 24px 24px;
    gap: 16px;
    display: none;
    max-height: calc(100vh - 76px);
    overflow-y: auto;
  }
  .main-nav.open { display: flex; }
  .nav-toggle { display: flex; }
}

@media (max-width: 900px) {
  .about-inner, .booking-inner, .contact-inner {
    grid-template-columns: 1fr;
  }
  .contact-image { height: auto; }
  .contact-image img { flex: none; min-height: 260px; }
  .why-grid, .services-grid, .doctors-grid, .guides-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid, .photo-gallery-grid { columns: 2; }
  .carousel-slide { height: 400px; }
  .carousel-caption { max-width: 100%; padding: 32px; }
  .carousel-overlay { background: linear-gradient(180deg, rgba(7,28,66,0.3) 0%, rgba(7,28,66,0.92) 75%); }
  .about-image img { height: 380px; }
}

@media (max-width: 720px) {
  .header-actions .btn-call { display: none; }
  .brand-tagline { display: none; }
  .hero h1 { font-size: 2rem; }
  .why-grid, .services-grid, .doctors-grid, .guides-grid { grid-template-columns: 1fr; }
  .gallery-grid, .photo-gallery-grid { columns: 1; }
  section { padding: 52px 0; }
  .carousel-slide { height: 460px; }
  .carousel-caption { justify-content: flex-end; padding: 28px 24px 40px; }
  .carousel-caption h3 { font-size: 1.5rem; }
  .carousel-arrow { width: 38px; height: 38px; }
  .carousel-arrow .icon { width: 16px; height: 16px; }
  .guide-flashcards { grid-template-columns: 1fr; }
}

@media (max-width: 420px) {
  .hero-hindi { font-size: 1.25rem; }
  .hero h1 { font-size: 1.6rem; }
  .hero-sub { font-size: 0.95rem; }
  .btn { padding: 12px 20px; font-size: 0.9rem; }
  .hero-ctas { gap: 12px; }
  .trust-strip-inner { gap: 16px; }
  .whatsapp-float { width: 50px; height: 50px; bottom: 16px; right: 16px; }
  .whatsapp-float .icon { width: 24px; height: 24px; }
  .carousel-slide { height: 420px; }
}
