:root {
  --ivory: #f5f8fc;
  --ivory-deep: #e9f0fa;
  --forest: #1d3e8c;
  --forest-deep: #122a66;
  --herbal: #2f6fe0;
  --herbal-light: #7aa6f0;
  --sandal: #c21e2b;
  --sandal-light: #e14a3c;
  --gold: #d62839;
  --gold-soft: #f1a0a0;
  --ink: #1c2230;
  --ink-soft: #5a6273;
  --line: #d7e0ee;
  --white: #ffffff;

  --font-head: "Cormorant Garamond", serif;
  --font-body: "Inter", sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;

  --shadow-sm: 0 2px 10px rgba(31, 58, 46, 0.06);
  --shadow-md: 0 12px 34px rgba(31, 58, 46, 0.1);
  --shadow-lg: 0 24px 60px rgba(31, 58, 46, 0.14);

  --container: 1220px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}
input,
select,
textarea {
  font-family: inherit;
  font-size: 15px;
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  color: var(--forest-deep);
  font-weight: 700;
  line-height: 1.15;
}
.eyebrow {
  font-family: var(--font-body);
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sandal);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

.bg-white1{
  background: #fff;
}
.section {
  padding: 50px 0;
}
.section-tight {
  padding: 64px 0;
}
.section-head {
  max-width: 680px;
  margin: 0 auto 25px;
  text-align: center;
}
.section-head h2 {
  font-size: clamp(30px, 4vw, 44px);
  margin-top: 12px;
}
.section-head p {
  color: var(--ink-soft);
  margin-top: 16px;
  font-size: 16.5px;
}

.section-alt {
  background: var(--ivory-deep);
}
.section-dark {
  background: var(--forest-deep);
  color: #efe9da;
}
.section-dark h2,
.section-dark h3,
.section-dark .eyebrow {
  color: #f3eedf;
}
.section-dark p {
  color: #c9cfc5;
}

/* Botanical divider — signature motif: a single traced root/leaf vein line
   used consistently as the section transition, echoing Ayurvedic materia medica. */
.root-divider {
  width: 100%;
  height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.55;
}
.root-divider svg {
  height: 100%;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.01em;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--forest);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--forest-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-gold {
  background: var(--gold);
  color: #fff;
}
.btn-gold:hover {
  background: #a01d28;
  transform: translateY(-2px);
}
.btn-outline {
  border: 1.5px solid var(--forest);
  color: var(--forest);
  background: transparent;
}
.btn-outline:hover {
  background: var(--forest);
  color: #fff;
}
.btn-outline-light {
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  color: #fff;
}
.btn-outline-light:hover {
  background: #fff;
  color: var(--forest-deep);
}
.btn-whatsapp {
  background: #2e7d5b;
  color: #fff;
}
.btn-whatsapp:hover {
  background: #256349;
  transform: translateY(-2px);
}
.btn-sm {
  padding: 9px 18px;
  font-size: 13px;
}
.btn:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2.5px solid var(--gold);
  outline-offset: 3px;
}

/* ============================================================
   TOP UTILITY BAR
   ============================================================ */
.topbar {
  background: var(--forest-deep);
  color: #d9e0d6;
  font-size: 12.5px;
  padding: 8px 0;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.topbar a {
  color: #d9e0d6;
}
.topbar .divider {
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.25);
}
.topbar-right {
  gap: 14px;
}
.lang-toggle span {
  cursor: pointer;
}
.lang-toggle span.active {
  color: var(--gold-soft);
  font-weight: 600;
}

@media (max-width: 520px) {
  .topbar-left,
  .topbar-right {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 8px;
    flex-wrap: nowrap;
  }
}

/* ============================================================
   HEADER
   ============================================================ */
header.main-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s ease;
}
header.main-header.scrolled {
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 3px;
}
.logo-mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-mark svg {
  width: 24px;
  height: 24px;
}
.logo-text {
  font-family: var(--font-head);
  line-height: 1.1;
}
.logo-text .name {
  font-size: 20px;
  font-weight: 700;
  color: var(--forest-deep);
  display: block;
}
.logo-text .sub {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sandal);
  font-family: var(--font-body);
  font-weight: 600;
}

nav.main-nav ul {
  display: flex;
  gap: 26px;
  align-items: center;
  flex-wrap: nowrap;
}
nav.main-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
}
nav.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}
nav.main-nav a:hover::after {
  width: 100%;
}

/* Nav dropdown — Treatments */
.nav-item-dropdown {
  position: relative;
}
.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.nav-dropdown-toggle svg {
  width: 13px;
  height: 13px;
  transition: transform 0.25s ease;
}
.nav-item-dropdown:hover .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}
.nav-dropdown-menu {
  position: absolute;
  top: 90%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 240px;
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s;
  z-index: 50;
}
.nav-item-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(4px);
}
.nav-dropdown-menu a {
  display: block;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
}
.nav-dropdown-menu a:hover {
  background: var(--ivory-deep);
}
.nav-dropdown-menu a::after {
  display: none;
}
.nav-dropdown-menu a.is-highlight {
  background: var(--ivory-deep);
  color: var(--forest-deep);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.nav-dropdown-menu a.is-highlight:hover {
  background: var(--gold-soft);
}
.nav-dropdown-menu a.is-highlight span.tag {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: var(--gold);
  color: #fff;
  padding: 2px 7px;
  border-radius: 100px;
}
.nav-dropdown-divider {
  height: 1px;
  background: var(--line);
  margin: 6px 4px;
}

/* Mobile nav accordion — Treatments */
.mobile-accordion-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.mobile-accordion-head svg {
  width: 16px;
  height: 16px;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.mobile-nav-accordion.is-open .mobile-accordion-head svg {
  transform: rotate(180deg);
}
.mobile-accordion-list {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-left: 14px;
}
.mobile-nav-accordion.is-open .mobile-accordion-list {
  max-height: 400px;
}
.mobile-accordion-list li {
  list-style: none;
}
.mobile-accordion-list a {
  font-size: 14px;
  padding: 8px 0;
  display: block;
  color: var(--ink-soft);
}
.mobile-accordion-list a.is-highlight {
  color: var(--forest-deep);
  font-weight: 700;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--forest-deep);
}
.header-phone svg {
  width: 18px;
  height: 18px;
  color: var(--herbal);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 26px;
}
.hamburger span {
  height: 2px;
  background: var(--forest-deep);
  border-radius: 2px;
  transition: 0.3s;
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0 0 0 auto;
  width: 82%;
  max-width: 340px;
  background: var(--ivory);
  z-index: 300;
  padding: 28px 26px;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.2);
  overflow-y: auto;
}
.mobile-nav.open {
  transform: translateX(0);
}
.mobile-nav-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mobile-nav a {
  display: block;
  padding: 13px 4px;
  font-size: 17px;
  font-weight: 500;
  border-bottom: 1px solid var(--line);
}
.mobile-nav .btn {
  width: 100%;
  margin-top: 20px;
}
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(22, 40, 31, 0.45);
  z-index: 290;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.nav-overlay.open {
  display: block;
  opacity: 1;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background:
    radial-gradient(
      ellipse at 85% 0%,
      rgba(185, 146, 74, 0.1),
      transparent 55%
    ),
    linear-gradient(180deg, var(--ivory) 0%, var(--ivory-deep) 100%);
  padding: 50px 0 50px;
  overflow: hidden;
}
.hero-leaf-bg {
  position: absolute;
  top: -60px;
  right: -80px;
  width: 420px;
  opacity: 0.12;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 22px;
  box-shadow: var(--shadow-sm);
}
.hero-trust-badge span.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--herbal);
}
.hero h1 {
  font-size: clamp(34px, 4.6vw, 54px);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.hero h1 em {
  color: var(--sandal);
  font-style: italic;
}
.hero p.lead {
  font-size: 17.5px;
  color: var(--ink-soft);
  max-width: 540px;
  margin-bottom: 28px;
}
.hero-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 22px;
  margin-bottom: 32px;
}
.hero-points li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 14.5px;
  color: var(--ink);
  font-weight: 500;
}
.hero-points svg {
  width: 17px;
  height: 17px;
  color: var(--herbal);
  flex-shrink: 0;
  margin-top: 2px;
}
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 22px;
}
.hero-quick-contact {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.quick-contact-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  color: var(--ink-soft);
  font-weight: 500;
}
.quick-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--sandal);
}

/* Hero form card */
.hero-form-wrap {
  max-width: 420px;
  margin-left: auto;
}
.hero-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  position: relative;
}
.hero-form-badge {
  position: absolute;
  top: -22px;
  left: 28px;
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  border: 3px solid var(--white);
}
.hero-form-badge img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.hero-form-card h3 {
  font-size: 19px;
  margin-bottom: 3px;
  padding-top: 6px;
}
.hero-form-card .sub {
  font-size: 12.5px;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.form-row {
  margin-bottom: 11px;
}
.form-row label {
  display: block;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--forest-deep);
  margin-bottom: 5px;
  letter-spacing: 0.02em;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 9px 12px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--ivory);
  color: var(--ink);
  transition: border-color 0.2s ease;
  font-size: 13.5px;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--herbal);
  outline: none;
  background: #fff;
}
.form-row textarea {
  resize: vertical;
  min-height: 52px;
}
.form-row.error input,
.form-row.error select {
  border-color: #b4472f;
}
.form-error-msg {
  font-size: 11px;
  color: #b4472f;
  margin-top: 4px;
  display: none;
}
.form-row.error .form-error-msg {
  display: block;
}
.radio-group {
  display: flex;
  gap: 8px;
}
.radio-pill {
  flex: 1;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 0.2s ease;
}
.radio-pill input {
  display: none;
}
.radio-pill.checked {
  border-color: var(--herbal);
  background: rgba(76, 122, 90, 0.08);
  color: var(--forest);
}
.form-submit {
  width: 100%;
  margin-top: 4px;
  padding: 12px;
  font-size: 14px;
}
.form-privacy {
  font-size: 10.5px;
  color: var(--ink-soft);
  text-align: center;
  margin-top: 10px;
  line-height: 1.4;
}
.form-success {
  display: none;
  text-align: center;
  padding: 18px 6px;
}
.form-success.show {
  display: block;
}
.form-success svg {
  width: 40px;
  height: 40px;
  color: var(--herbal);
  margin: 0 auto 10px;
}
.form-success h4 {
  font-size: 17px;
  margin-bottom: 6px;
}
.form-success p {
  color: var(--ink-soft);
  font-size: 13px;
}

/* ============================================================
   CONSULTATION MODAL POPUP
   ============================================================ */
.consult-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 30, 45, 0.55);
  backdrop-filter: blur(2px);
  z-index: 900;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.consult-modal-overlay.is-open {
  display: flex;
  opacity: 1;
}
.consult-modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 460px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding: 30px 26px 24px;
  box-shadow: var(--shadow-lg);
  transform: translateY(16px) scale(0.98);
  opacity: 0;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}
.consult-modal-overlay.is-open .consult-modal {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.consult-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--ivory-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}
.consult-modal-close:hover {
  background: var(--gold-soft);
}
.consult-modal-close svg {
  width: 16px;
  height: 16px;
  color: var(--forest-deep);
}
.consult-modal h3 {
  font-size: 19px;
  margin-bottom: 3px;
  padding-top: 6px;
}
.consult-modal .sub {
  font-size: 12.5px;
  color: var(--ink-soft);
  margin-bottom: 18px;
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--forest);
  padding: 34px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  text-align: center;
}
.trust-item .num {
  font-family: serif;
  font-size: 32px;
  color: #fff;
  font-weight: 700;
}
.trust-item .num span {
  color: #fff;
}
.trust-item .label {
  font-size: 12.5px;
  color: #c9cfc5;
  margin-top: 4px;
  letter-spacing: 0.02em;
}

/* ============================================================
   CONDITIONS CARDS
   ============================================================ */
.conditions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.condition-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.condition-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--herbal-light);
}
.condition-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--ivory-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.condition-icon svg {
  width: 26px;
  height: 26px;
  color: var(--herbal);
}
.condition-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}
.condition-card p {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 16px;
  min-height: 66px;
}
.condition-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.condition-links a.know-more {
  font-size: 13px;
  font-weight: 600;
  color: var(--sandal);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.condition-links a.know-more svg {
  width: 13px;
  height: 13px;
  transition: transform 0.2s;
}
.condition-links a.know-more:hover svg {
  transform: translateX(3px);
}

/* ============================================================
   CASHLESS INSURANCE
   ============================================================ */
.insurance-section {
  background: var(--ivory);
}
.insurance-head {
  max-width: 700px;
  margin: 0 auto 25px;
  text-align: center;
}
.insurance-head .eyebrow {
  margin-bottom: 10px;
}
.insurance-head h2 {
  font-size: clamp(30px, 4vw, 44px);
  margin-bottom: 18px;
}
.highlight-mark {
  background: var(--line);
  padding: 4px 14px;
  border-radius: 6px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.insurance-head p {
  color: var(--ink-soft);
  font-size: 16.5px;
}

.insurance-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 820px;
  margin: 0 auto 56px;
}
.insurance-stat {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.insurance-stat .num {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 700;
  color: var(--herbal);
}
.insurance-stat .label {
  font-size: 13.5px;
  color: var(--ink-soft);
  margin-top: 4px;
  font-weight: 500;
}

.insurance-subhead {
  text-align: center;
  font-size: 23px;
  margin-bottom: 26px;
  color: var(--forest-deep);
}

.marquee-wrap {
  overflow: hidden;
  position: relative;
  margin-bottom: 56px;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 6%,
    #000 94%,
    transparent
  );
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 6%,
    #000 94%,
    transparent
  );
}
.marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee-scroll 32s linear infinite;
}
.marquee-wrap:hover .marquee-track {
  animation-play-state: paused;
}
@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.ins-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 10px 20px 10px 10px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
  flex-shrink: 0;
}
.ins-badge {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.govt-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
.govt-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px 16px;
  text-align: center;
  transition: all 0.25s ease;
}
.govt-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.govt-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  margin: 0 auto 14px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.govt-icon svg {
  width: 24px;
  height: 24px;
}
.govt-card h4 {
  font-size: 17px;
  color: var(--forest-deep);
  margin-bottom: 6px;
}
.govt-card p {
  font-size: 12.5px;
  color: var(--ink-soft);
  line-height: 1.4;
}

.insurance-notice {
  background: #fbf0d9;
  border: 1px solid #ead9a8;
  border-radius: var(--radius-md);
  padding: 18px 24px;
  font-size: 14px;
  color: #7a5a12;
  max-width: 1000px;
  margin: 0 auto 36px;
  line-height: 1.6;
}
.insurance-notice a {
  color: var(--sandal);
  font-weight: 700;
  text-decoration: underline;
}

.insurance-cta-center {
  text-align: center;
}

@media (max-width: 940px) {
  .insurance-stats {
    grid-template-columns: 1fr;
    max-width: 340px;
  }
  .govt-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 600px) {
  .govt-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   WHY CHOOSE US — icon grid (v2)
   ============================================================ */
.why-grid-v2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.why-card-v2 {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: all 0.3s ease;
}
.why-card-v2:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--herbal-light);
}
.why-card-v2 .why-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--ivory-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.why-card-v2 .why-icon svg {
  width: 24px;
  height: 24px;
  color: var(--herbal);
}
.why-card-v2 h4 {
  font-size: 18px;
  margin-bottom: 8px;
}
.why-card-v2 p {
  font-size: 13.5px;
  color: var(--ink-soft);
}

/* ============================================================
   WHY CHOOSE — split layout
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.split-img-wrap {
  position: relative;
}
.split-img-wrap img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 460px;
  object-fit: cover;
}
.split-badge {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--line);
}
.split-badge .icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.split-badge .icon svg {
  width: 20px;
  height: 20px;
  color: #fff;
}
.split-badge strong {
  display: block;
  font-family: var(--font-head);
  font-size: 19px;
  color: var(--forest-deep);
}
.split-badge span {
  font-size: 12px;
  color: var(--ink-soft);
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 26px;
}
.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-item .num {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  width: 38px;
  flex-shrink: 0;
}
.why-item h4 {
  font-size: 17px;
  margin-bottom: 4px;
}
.why-item p {
  font-size: 14px;
  color: var(--ink-soft);
}

/* ============================================================
   PROCESS / JOURNEY — root-line connective motif
   ============================================================ */
.journey-wrap {
  position: relative;
}
.journey-line {
  position: absolute;
  top: 58px;
  left: 0;
  width: 100%;
  height: 4px;
  z-index: 0;
}
.journey-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  position: relative;
  z-index: 1;
}
.journey-step {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 34px 20px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  position: relative;
}
.journey-step:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-soft);
}
.journey-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, var(--gold), var(--herbal));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.journey-step:hover::before {
  opacity: 1;
}
.journey-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--forest), var(--forest-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 8px 20px rgba(29, 62, 140, 0.28);
  border: 3px solid var(--white);
  outline: 2px solid var(--gold-soft);
  outline-offset: 2px;
  position: relative;
  z-index: 2;
  transition:
    transform 0.3s ease,
    outline-color 0.3s ease;
}
.journey-step:hover .journey-num {
  transform: scale(1.08) rotate(-4deg);
  outline-color: var(--gold);
}
.journey-step h4 {
  font-size: 18px;
  margin-bottom: 8px;
}
.journey-step p {
  font-size: 13px;
  color: var(--ink-soft);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.about-img-a {
  border-radius: var(--radius-lg);
  height: 340px;
  object-fit: cover;
  grid-column: 1/2;
}
.about-img-b {
  border-radius: var(--radius-lg);
  height: 340px;
  object-fit: cover;
  grid-column: 2/3;
  margin-top: 44px;
}
.about-content .eyebrow {
  margin-bottom: 14px;
}
.about-content h2 {
  font-size: clamp(28px, 3.6vw, 38px);
  margin-bottom: 18px;
}
.about-content p {
  color: var(--ink-soft);
  margin-bottom: 16px;
  font-size: 15.5px;
}
.about-content .btn {
  margin-top: 12px;
}
.about-flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* ============================================================
   DOCTORS
   ============================================================ */
.doctors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.doctor-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: all 0.3s ease;
}
.doctor-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.doctor-img {
  height: 280px;
  overflow: hidden;
}
.doctor-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.doctor-card:hover .doctor-img img {
  transform: scale(1.05);
}
.doctor-body {
  padding: 24px;
}
.doctor-body .btn {
  position: absolute;
  bottom: 10px;
}
.doctor-body h3 {
  font-size: 21px;
  margin-bottom: 3px;
}
.doctor-qual {
  font-size: 13px;
  color: var(--sandal);
  font-weight: 600;
  margin-bottom: 10px;
}
.doctor-body p.profile {
  font-size: 13.5px;
  color: var(--ink-soft);
  margin-bottom: 30px;
}
.doctor-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.doctor-tags span {
  font-size: 11.5px;
  background: var(--ivory-deep);
  padding: 5px 11px;
  border-radius: 100px;
  color: var(--forest);
  font-weight: 600;
}

/* ============================================================
   ONLINE CONSULT
   ============================================================ */
.online-section {
  background: linear-gradient(
    120deg,
    var(--forest-deep) 0%,
    var(--forest) 100%
  );
  color: #efe9da;
  position: relative;
  overflow: hidden;
}
.online-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.online-content .eyebrow {
  color: var(--gold-soft);
}
.online-content .eyebrow::before {
  background: var(--gold-soft);
}
.online-content h2 {
  color: #fff;
  font-size: clamp(28px, 3.6vw, 38px);
  margin: 14px 0 18px;
}
.online-content p.lead {
  color: #c9cfc5;
  margin-bottom: 24px;
}
.online-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}
.online-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14.5px;
  color: var(--ink);
  font-weight: 500;
}
.online-list svg {
  width: 18px;
  height: 18px;
  color: var(--gold-soft);
  flex-shrink: 0;
  margin-top: 2px;
}
.online-img-wrap {
  position: relative;
}
.online-img-wrap img {
  border-radius: var(--radius-lg);
  height: 420px;
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

/* ============================================================
   VIDEO TESTIMONIAL CAROUSEL
   ============================================================ */
.vtcarousel {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
}
.vtcarousel-track {
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.vtcarousel-slides {
  display: flex;
  transition: transform 0.5s ease;
}
.vtcarousel-slide {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.vtcarousel-video {
  position: relative;
  height: 100%;
  min-height: 320px;
}
.vtcarousel-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.vtcarousel-playbtn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: transform 0.25s ease;
}
.vtcarousel-playbtn:hover {
  transform: translate(-50%, -50%) scale(1.08);
}
.vtcarousel-playbtn svg {
  width: 22px;
  height: 22px;
  color: var(--forest-deep);
  margin-left: 3px;
}
.vtcarousel-content {
  padding: 36px 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.vtcarousel-quote-icon {
  color: var(--gold-soft);
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
}
.vtcarousel-content p.quote {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 20px;
}
.vtcarousel-person strong {
  display: block;
  font-size: 15px;
  color: var(--forest-deep);
}
.vtcarousel-person span {
  font-size: 13px;
  color: var(--ink-soft);
}
.vtcarousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 26px;
}
.vtcarousel-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}
.vtcarousel-arrow:hover {
  background: var(--forest-deep);
  border-color: var(--forest-deep);
}
.vtcarousel-arrow:hover svg {
  color: #fff;
}
.vtcarousel-arrow svg {
  width: 18px;
  height: 18px;
  color: var(--forest-deep);
}
.vtcarousel-dots {
  display: flex;
  gap: 8px;
}
.vtcarousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line);
  cursor: pointer;
  transition: all 0.25s ease;
}
.vtcarousel-dot.active {
  background: var(--gold);
  width: 22px;
  border-radius: 5px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 26px 24px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.stars {
  display: flex;
  gap: 3px;
  color: var(--gold);
}
.stars svg {
  width: 15px;
  height: 15px;
}
.testimonial-card p.quote {
  font-size: 14.5px;
  color: var(--ink);
  line-height: 1.65;
}
.testimonial-person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 10px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--ivory-deep);
}
.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial-person strong {
  display: block;
  font-size: 14px;
  color: var(--forest-deep);
}
.testimonial-person span {
  font-size: 12px;
  color: var(--ink-soft);
}
.testimonial-disclaimer {
  text-align: center;
  font-size: 12.5px;
  color: var(--ink-soft);
  max-width: 640px;
  margin: 36px auto 0;
  font-style: italic;
}

/* ============================================================
   VIDEO SECTION
   ============================================================ */
.video-section {
  position: relative;
}
.video-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 960px;
  margin: 0 auto;
}
.video-wrap img {
  width: 100%;
  height: 550px;
  object-fit: cover;
}
.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(22 40 31 / 5%), rgb(22 40 31 / 100%));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  text-align: center;
  padding: 30px;
}
.play-btn {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  cursor: pointer;
  transition: transform 0.25s ease;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}
.play-btn:hover {
  transform: scale(1.08);
}
.play-btn svg {
  width: 28px;
  height: 28px;
  color: var(--forest);
  margin-left: 4px;
}
.video-overlay h3 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 8px;
}
.video-overlay p {
  color: #e4e7df;
  font-size: 14.5px;
  max-width: 420px;
  margin-bottom: 20px;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15.5px;
  color: var(--forest-deep);
}
.faq-question .icon-plus {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  position: relative;
}
.faq-question .icon-plus::before,
.faq-question .icon-plus::after {
  content: "";
  position: absolute;
  background: var(--herbal);
  border-radius: 2px;
  transition: transform 0.3s ease;
}
.faq-question .icon-plus::before {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.faq-question .icon-plus::after {
  width: 2px;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
.faq-item.open .icon-plus::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer-inner {
  padding: 0 24px 22px;
  font-size: 14.5px;
  color: var(--ink-soft);
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  background: var(--forest-deep);
  background: linear-gradient(
    120deg,
    var(--forest-deep) 0%,
    var(--forest) 100%
  );
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta h2 {
  color: #fff;
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 16px;
}
.final-cta p {
  color: #dce4f2;
  max-width: 560px;
  margin: 0 auto 32px;
  font-size: 16px;
}
.final-cta-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
.final-cta-info {
  display: flex;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
  font-size: 14px;
  color: #dce4f2;
}
.final-cta-info span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.final-cta-info svg {
  width: 16px;
  height: 16px;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--forest-deep);
  color: #c9cfc5;
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-logo .logo-mark {
  background: var(--gold);
}
.footer-logo .logo-mark svg {
  color: #fff;
}
.footer-about p {
  font-size: 13.5px;
  line-height: 1.7;
  color: #a9b0a2;
  margin-bottom: 18px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
}
.footer-social svg {
  width: 16px;
  height: 16px;
}
footer h4 {
  color: #f3eedf;
  font-family: var(--font-head);
  font-size: 18px;
  margin-bottom: 20px;
}
.footer-links li {
  margin-bottom: 11px;
}
.footer-links a {
  font-size: 13.5px;
  color: #a9b0a2;
  transition: color 0.2s ease;
}
.footer-links a:hover {
  color: var(--gold-soft);
}
.footer-contact li {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 13.5px;
  color: #a9b0a2;
  align-items: flex-start;
}
.footer-contact svg {
  width: 17px;
  height: 17px;
  color: var(--gold-soft);
  flex-shrink: 0;
  margin-top: 1px;
}
.footer-bottom {
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12.5px;
  color: #8b927f;
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom-links a {
  color: #8b927f;
}
.footer-bottom-links a:hover {
  color: var(--gold-soft);
}
.footer-disclaimer {
  background: rgba(0, 0, 0, 0.18);
  padding: 16px 0;
  font-size: 12px;
  color: #909788;
  text-align: center;
  line-height: 1.6;
}
.footer-disclaimer .container {
  max-width: 900px;
}

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.float-whatsapp {
  position: fixed;
  bottom: 96px;
  right: 22px;
  z-index: 250;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #2e7d5b;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease;
}
.float-whatsapp:hover {
  transform: scale(1.08);
}
.float-whatsapp svg {
  width: 28px;
  height: 28px;
  color: #fff;
}
.float-tooltip {
  position: absolute;
  right: 68px;
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: var(--forest-deep);
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 12.5px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s ease;
}
.float-whatsapp:hover .float-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* ============================================================
   STICKY MOBILE BAR
   ============================================================ */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 240;
  background: #fff;
  border-top: 1px solid var(--line);
  box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.08);
  padding: 5px;
}
.mobile-cta-bar .row {
  display: grid;
  grid-template-columns: 1fr 1fr 1.3fr;
  gap: 10px;
}
.mobile-cta-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 10px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
}
.mobile-cta-bar svg {
  width: 16px;
  height: 16px;
}
.mobile-cta-bar .call {
  background: var(--ivory-deep);
  color: var(--forest-deep);
}
.mobile-cta-bar .whatsapp {
  background: #e7f3ec;
  color: #256349;
}
.mobile-cta-bar .book {
  background: var(--gold);
  color: #fff;
}

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .conditions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .doctors-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  .testimonial-track {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 940px) {
  nav.main-nav {
    display: none;
  }
  .header-phone {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .mobile-nav,
  .nav-overlay {
    display: block;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-leaf-bg {
    display: none;
  }
  .split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .split-img-wrap img {
    height: 340px;
  }
  .about-flex {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .about-img-b {
    margin-top: 0;
  }
  .online-grid {
    grid-template-columns: 1fr;
  }
  .online-img-wrap {
    order: -1;
  }
  .online-img-wrap img {
    height: 300px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .journey-steps {
    grid-template-columns: repeat(1, 1fr);
    gap: 26px;
  }
  .journey-line {
    display: none;
  }
  .journey-step {
    display: flex;
    align-items: center;
    gap: 18px;
    text-align: left;
  }
  .journey-num {
    margin: 0;
    flex-shrink: 0;
  }
  .mobile-cta-bar {
    display: block;
  }
  .float-whatsapp {
    bottom: 86px;
  }
}
@media (max-width: 760px) {
  .section {
    padding: 30px 0;
  }
  .conditions-grid {
    grid-template-columns: 1fr;
  }
  .doctors-grid {
    grid-template-columns: 1fr;
  }
  .testimonial-track {
    grid-template-columns: 1fr;
  }
  .vtcarousel-slide {
    grid-template-columns: 1fr;
  }
  .vtcarousel-video {
    min-height: 220px;
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-img-a,
  .about-img-b {
    grid-column: 1/2;
    height: 430px;
    width: 100%;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .topbar .container {
    justify-content: center;
    text-align: center;
  }
  .hero-points {
    grid-template-columns: 1fr;
  }
  .final-cta-btns {
    flex-direction: column;
    align-items: stretch;
  }
  .final-cta-btns .btn {
    width: 100%;
  }
}

/* ============================================================
   CONSULTATION FORM SECTION
   ============================================================ */
.consult-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.consult-content h2 {
  font-size: clamp(28px, 3.6vw, 38px);
  margin: 12px 0 16px;
}
.consult-content p.lead {
  color: var(--ink-soft);
  font-size: 16px;
  margin-bottom: 22px;
}
.consult-content .online-list {
  margin-bottom: 0;
}

/* ============================================================
   HOSPITAL FACILITIES
   ============================================================ */
.facility-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.facility-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-align: left;
  transition: all 0.3s ease;
}
.facility-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--herbal-light);
}
.facility-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.facility-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.facility-card:hover .facility-img img {
  transform: scale(1.06);
}
.facility-body {
  padding: 22px 22px 26px;
}
.facility-card h4 {
  font-size: 18px;
  margin-bottom: 8px;
}
.facility-card p {
  font-size: 13.5px;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.facility-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.facility-tags span {
  background: var(--ivory-deep);
  color: var(--forest);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 13px;
  border-radius: 100px;
}
.facility-card.is-hidden {
  display: none;
}
.facility-more-wrap {
  text-align: center;
  margin-top: 36px;
}

/* legacy icon style kept for other sections reusing .facility-icon */
.facility-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--ivory-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.facility-icon svg {
  width: 25px;
  height: 25px;
  color: var(--herbal);
}

/* ============================================================
   DIAGNOSTIC SERVICES
   ============================================================ */
.diag-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.diag-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all 0.3s ease;
}
.diag-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.diag-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ivory-deep);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.diag-icon svg {
  width: 22px;
  height: 22px;
  color: var(--sandal);
}
.diag-card h4 {
  font-size: 16px;
  margin-bottom: 5px;
}
.diag-card p {
  font-size: 13px;
  color: var(--ink-soft);
}

/* ============================================================
   FREE HEALTH CHECK BANNER
   ============================================================ */
.freecheck-banner {
  background: linear-gradient(
    120deg,
    var(--forest-deep) 0%,
    var(--forest) 100%
  );
  padding: 64px 0;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.freecheck-banner .eyebrow {
  justify-content: center;
  color: var(--gold-soft);
}
.freecheck-banner .eyebrow::before {
  background: var(--gold-soft);
}
.freecheck-banner h2 {
  color: #fff;
  font-size: clamp(28px, 3.6vw, 38px);
  margin: 14px 0 16px;
}
.freecheck-banner p {
  color: #d7deea;
  max-width: 620px;
  margin: 0 auto 28px;
  font-size: 16px;
}
.freecheck-points {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.freecheck-points li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #eaeef6;
  font-weight: 500;
}
.freecheck-points svg {
  width: 17px;
  height: 17px;
  color: var(--gold-soft);
}
.freecheck-banner .btn-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============================================================
   HEALTH & DIAGNOSTIC PACKAGES
   ============================================================ */
.package-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.package-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}
.package-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--herbal-light);
}
.package-card.featured {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  position: relative;
}
.package-card.featured::before {
  content: "Most Popular";
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 100px;
  letter-spacing: 0.03em;
}
.package-card h4 {
  font-size: 19px;
  margin-bottom: 6px;
}
.package-price {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 700;
  color: var(--forest-deep);
  margin-bottom: 4px;
}
.package-price span {
  font-size: 12.5px;
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-weight: 500;
}
.package-card p.desc {
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.package-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  flex-grow: 1;
}
.package-list li {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 13px;
  color: var(--ink);
}
.package-list svg {
  width: 14px;
  height: 14px;
  color: var(--herbal);
  flex-shrink: 0;
  margin-top: 3px;
}
.package-card .btn {
  width: 100%;
}

/* ============================================================
   PATIENT STORIES & HEALTH TIPS (blog)
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s ease;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.blog-img {
  height: 190px;
  overflow: hidden;
}
.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.blog-card:hover .blog-img img {
  transform: scale(1.05);
}
.blog-body {
  padding: 22px;
}
.blog-tag {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--sandal);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.blog-body h4 {
  font-size: 18px;
  margin: 8px 0 8px;
}
.blog-body p {
  font-size: 13.5px;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.blog-read {
  font-size: 13px;
  font-weight: 600;
  color: var(--forest);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.blog-read svg {
  width: 13px;
  height: 13px;
  transition: transform 0.2s;
}
.blog-card:hover .blog-read svg {
  transform: translateX(3px);
}

@media (max-width: 1080px) {
  .facility-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .diag-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .package-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid-v2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 940px) {
  .consult-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero-form-wrap {
    margin-left: auto;
    margin-right: auto;
  }
  .freecheck-points {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}
@media (max-width: 760px) {
  .facility-grid {
    grid-template-columns: 1fr;
  }
  .diag-grid {
    grid-template-columns: 1fr;
  }
  .package-grid {
    grid-template-columns: 1fr;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .why-grid-v2 {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   RESPONSIVE HEADER AND MOBILE NAV — FINAL FIX
   ============================================================ */

body.mobile-menu-open {
  overflow: hidden;
  touch-action: none;
}

#closeMobileNav {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--forest-deep);
  border-radius: 50%;
}

#closeMobileNav:hover,
#closeMobileNav:focus-visible {
  background: var(--ivory-deep);
}

@media (max-width: 1100px) {
  nav.main-nav ul {
    gap: 16px;
  }

  .header-actions {
    gap: 12px;
  }

  .header-phone {
    display: none;
  }
}

@media (max-width: 940px) {
  .main-nav,
  .header-actions > .btn,
  .header-phone {
    display: none;
  }

  .hamburger {
    display: inline-flex;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    padding: 10px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    position: relative;
    z-index: 201;
  }

  .hamburger span {
    display: block;
    width: 24px;
    flex-shrink: 0;
  }

  .mobile-nav {
    display: block;
    visibility: hidden;
    opacity: 1;
    pointer-events: none;
    transform: translateX(100%);
    transition:
      transform 0.35s ease,
      visibility 0s linear 0.35s;
  }

  .mobile-nav.open {
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
    transition:
      transform 0.35s ease,
      visibility 0s linear 0s;
  }

  .nav-overlay {
    display: block;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition:
      opacity 0.3s ease,
      visibility 0s linear 0.3s;
  }

  .nav-overlay.open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transition:
      opacity 0.3s ease,
      visibility 0s linear 0s;
  }

  .header-inner {
    padding: 10px 24px;
  }
}

@media (min-width: 941px) {
  .mobile-nav,
  .nav-overlay {
    display: none !important;
  }

  body.mobile-menu-open {
    overflow: auto;
    touch-action: auto;
  }
}

@media (max-width: 520px) {
  /* .topbar {
    display: none;
  } */
  .hero {
    padding: 35px 0 30px;
  }
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .header-inner {
    padding: 9px 16px;
  }

  .logo {
    min-width: 0;
    gap: 3px;
  }

  .logo-mark {
    width: 38px;
    height: 38px;
  }

  .logo-text {
    min-width: 0;
  }

  .logo-text .name {
    max-width: 190px;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 16px;
    white-space: nowrap;
  }

  .logo-text .sub {
    font-size: 8px;
    letter-spacing: 0.06em;
  }

  .mobile-nav {
    width: min(88%, 340px);
    padding: 20px 18px 28px;
  }

  .mobile-nav-top {
    margin-bottom: 18px;
  }

  .mobile-nav a {
    padding: 11px 4px;
    font-size: 16px;
  }

  .mobile-accordion-list a {
    font-size: 14px;
    padding: 8px 0;
  }
}

@media (max-width: 768px) {
  .hero-cta-row {
    display: grid;
  }
  .about-content .btn {
    display: grid !important;
  }
  .doctor-body .btn {
    display: grid !important;
  }
  .journey-step {
    gap: 8px;
  }
  .journey-step {
    padding: 15px 10px 15px;
  }
  .marquee-wrap {
    margin-bottom: 30px;
  }
  .video-overlay {
    position: relative;
    background: linear-gradient(180deg, rgb(29 62 140), rgb(22 40 31 / 100%));
  }
  .video-wrap img {
      height: auto;
  }
}
