:root {
  --white: #ffffff;
  --medical-blue: #003E62;
  --deep-navy: #002A45;
  --teal: #2D8B4E;
  --soft-gray: #E8EBEE;
  --bg-ivory: #F7F9FB;
  --sage-green: #2D8B4E;
  --forest-green: #003E62;
  --gold-accent: #4A9FD4;
  --gold-accent-rgb: 74, 159, 212;
  --soft-beige: #F0F3F6;
  --text-dark: #003E62;
  --text-muted: #5A6D7D;
  --label: #6B7C8A;
  --glass-border: rgba(255, 255, 255, 0.72);
  --divider: rgba(0, 62, 98, 0.1);
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1.25rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-soft: 0 4px 24px rgba(0, 62, 98, 0.05);
  --shadow-medium: 0 12px 40px rgba(0, 62, 98, 0.08);
  --shadow-elevated: 0 24px 56px rgba(0, 62, 98, 0.12);
  --btn-primary-bg: linear-gradient(135deg, #003E62 0%, #00568A 100%);
  --btn-primary-hover-bg: linear-gradient(135deg, #002A45 0%, #003E62 100%);
  --btn-shadow: 0 10px 28px rgba(0, 62, 98, 0.28);
  --btn-shadow-hover: 0 14px 36px rgba(0, 62, 98, 0.36);
  --font-sans: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-sans);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--bg-ivory);
  color: var(--text-dark);
}

/* Font system --- from code.html */
.brand-text strong,
.footer-brand-text strong {
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: -0.025em;
}

.hero-left h1,
.about-content h2,
.dept-header h2,
.spec-header h2,
.why-header h2,
.impact-header h2,
.testi-top-header h2,
.book-header h2,
.home-section h2,
.appointment-cta h2,
.dept-card-body h3,
.dept-featured-content h3,
.spec-card-panel h3,
.spec-featured-content h3,
.why-card h3,
.impact-card h3,
.about-card h3,
.feature-card h3,
.stat-value {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -0.025em;
}

.testi-deco-quote,
.testi-quote-icon {
  font-family: var(--font-serif);
}

.page-shell {
  width: min(1440px, 100%);
  margin: 0 auto;
  padding: 1rem clamp(1rem, 3.2vw, 2.25rem) clamp(1.5rem, 3vw, 2rem);
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 1.1rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 42, 69, 0.06);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.62rem;
  text-decoration: none;
  color: inherit;
}

.brand-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 8px;
  background: #f0f3f6;
  display: grid;
  place-items: center;
}

.brand-icon svg {
  width: 1.15rem;
  height: 1.15rem;
  stroke: var(--medical-blue);
  stroke-width: 1.8;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-text strong {
  font-size: 1.5rem;
  color: var(--medical-blue);
}

.brand-text small {
  margin-top: 0.15rem;
  letter-spacing: 0.2em;
  font-size: 0.625rem;
  font-weight: 500;
  color: #74836f;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  position: relative;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--deep-navy);
}

.nav-links a.active {
  color: var(--medical-blue);
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.6rem;
  height: 2px;
  background: var(--medical-blue);
  border-radius: 2px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.mode-btn {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 42, 69, 0.1);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-muted);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.mode-btn svg {
  width: 1rem;
  height: 1rem;
  stroke: currentColor;
  stroke-width: 1.6;
  fill: none;
}

.book-btn {
  border: 0;
  border-radius: var(--radius-sm);
  padding: 0.65rem 1.1rem;
  background: linear-gradient(135deg, #003E62 0%, #2D8B4E 100%);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  box-shadow: 0 4px 16px rgba(45, 139, 78, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.book-btn svg {
  width: 1rem;
  height: 1rem;
  stroke: currentColor;
  stroke-width: 1.6;
  fill: none;
}

a.book-btn {
  text-decoration: none;
}

.book-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(45, 139, 78, 0.32);
}

/* --- Mobile navigation drawer (code.html pattern) --- */

.nav-brand-group {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  min-width: 0;
}

.nav-menu-btn {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--medical-blue);
  cursor: pointer;
  place-items: center;
  flex-shrink: 0;
  padding: 0;
}

.nav-menu-btn svg {
  width: 1.5rem;
  height: 1.5rem;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
}

.nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 60;
  width: min(20rem, 86vw);
  height: 100%;
  background: #fbf9f8;
  box-shadow: 0 12px 48px rgba(0, 42, 69, 0.18);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.nav-drawer.is-open {
  transform: translateX(0);
}

.nav-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.25rem 0.75rem;
}

.nav-drawer-brand {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--medical-blue);
}

.nav-drawer-close {
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 0;
}

.nav-drawer-close svg {
  width: 1.35rem;
  height: 1.35rem;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
}

.nav-drawer-links {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.75rem 1.25rem 1.5rem;
}

.nav-drawer-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-drawer-link svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke: currentColor;
  stroke-width: 1.6;
  fill: none;
  flex-shrink: 0;
}

.nav-drawer-link:hover {
  background: rgba(45, 139, 78, 0.06);
  color: var(--deep-navy);
}

.nav-drawer-link.active {
  background: linear-gradient(135deg, #003E62 0%, #2D8B4E 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(45, 139, 78, 0.22);
}

.nav-drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 55;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.nav-drawer-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

body.nav-drawer-open {
  overflow: hidden;
}

.hero-section {
  min-height: calc(100vh - 88px);
  display: grid;
  grid-template-columns: minmax(380px, 0.92fr) minmax(540px, 1.08fr);
  align-items: center;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding: clamp(2rem, 4vw, 3.55rem) 0 clamp(1rem, 3vw, 1.5rem);
  position: relative;
}

.hero-bg-accent {
  position: absolute;
  inset: 5% -8% 5% 38%;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 60% at 30% 40%, rgba(45, 139, 78, 0.06), transparent 55%),
    radial-gradient(ellipse 60% 50% at 80% 70%, rgba(74, 159, 212, 0.04), transparent 50%);
  pointer-events: none;
}

.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 36rem;
}

.eyebrow {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--medical-blue);
  background: rgba(45, 139, 78, 0.06);
  border: 1px solid rgba(45, 139, 78, 0.1);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
}

.eyebrow svg {
  width: 0.75rem;
  height: 0.75rem;
  stroke: var(--medical-blue);
  stroke-width: 1.5;
  fill: rgba(45, 139, 78, 0.15);
}

.hero-left h1 {
  margin: var(--space-md) 0 0;
  font-size: clamp(2.35rem, 4.8vw, 3.75rem);
  line-height: 1.05;
  color: var(--deep-navy);
}

.hero-left h1 span {
  display: block;
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(105deg, #003E62 0%, #2D8B4E 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy {
  margin: var(--space-md) 0 0;
  max-width: 42ch;
  color: var(--text-muted);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.7;
}

.feature-row {
  margin: var(--space-md) 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}

.feature-row li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.875rem;
}

.feature-check {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 999px;
  background: rgba(45, 139, 78, 0.08);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.feature-check svg {
  width: 0.7rem;
  height: 0.7rem;
  stroke: var(--medical-blue);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-cta-row {
  margin-top: var(--space-lg);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn-primary,
.btn-secondary {
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn-primary svg,
.btn-secondary svg {
  width: 1.05rem;
  height: 1.05rem;
  stroke: currentColor;
  stroke-width: 1.6;
  fill: none;
}

.btn-primary {
  border: 0;
  color: #fff;
  background: var(--btn-primary-bg);
  box-shadow: var(--btn-shadow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--btn-primary-hover-bg);
  box-shadow: var(--btn-shadow-hover);
}

.btn-secondary {
  border: 1px solid rgba(0, 42, 69, 0.12);
  color: var(--deep-navy);
  background: var(--white);
}

.btn-secondary:hover {
  border-color: rgba(0, 62, 98, 0.28);
  background: rgba(0, 62, 98, 0.04);
}

.hero-trust-row {
  margin-top: var(--space-lg);
  width: 100%;
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--divider);
}

.hero-trust-row article {
  flex: 1;
  min-width: 0;
}

.trust-divider {
  width: 1px;
  height: 2rem;
  background: var(--divider);
  flex-shrink: 0;
}

.hero-trust-row h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--deep-navy);
}

.hero-trust-row h3 span {
  font-size: 0.8em;
  font-weight: 500;
  color: var(--text-muted);
}

.hero-trust-row p {
  margin: 0.15rem 0 0;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--label);
  letter-spacing: 0.01em;
}

.hero-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-visual-shell {
  width: min(720px, 100%);
  position: relative;
  padding-bottom: 5.5rem;
  padding-top: 50px;
}

.hero-dot-grid {
  position: absolute;
  left: -0.5rem;
  top: 1.5rem;
  width: 4.5rem;
  height: 4.5rem;
  background-image: radial-gradient(circle, rgba(0, 42, 69, 0.12) 1.5px, transparent 1.5px);
  background-size: 10px 10px;
  opacity: 0.7;
  pointer-events: none;
  z-index: 1;
}

.hero-visual-glow {
  position: absolute;
  width: 85%;
  height: 90%;
  right: -2%;
  top: 5%;
  background:
    radial-gradient(ellipse 70% 50% at 70% 30%, rgba(255, 255, 255, 0.5), transparent 50%),
    radial-gradient(ellipse 50% 40% at 90% 80%, rgba(45, 139, 78, 0.08), transparent 45%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-image-frame {
  width: 100%;
  aspect-ratio: 5 / 4;
  position: relative;
  border-radius: 48% 52% 44% 56% / 42% 46% 54% 58%;
  overflow: hidden;
  background: var(--soft-gray);
  box-shadow: var(--shadow-elevated);
  isolation: isolate;
}

.hero-image-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 75% 15%, rgba(255, 255, 255, 0.35), transparent 50%),
    linear-gradient(165deg, rgba(255, 255, 255, 0.12) 0%, transparent 45%);
  pointer-events: none;
  z-index: 2;
}

.hero-image-frame::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 35%;
  background: linear-gradient(180deg, transparent, rgba(0, 42, 69, 0.12));
  pointer-events: none;
  z-index: 2;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.03);
  filter: contrast(1.04) saturate(1.06) brightness(1.02);
}

.stats-panel {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: min(94%, 640px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-medium);
  backdrop-filter: blur(20px) saturate(1.15);
  -webkit-backdrop-filter: blur(20px) saturate(1.15);
  overflow: hidden;
}

.stat-card {
  padding: 1.1rem 0.75rem;
  text-align: center;
  position: relative;
}

.stat-card:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: var(--divider);
}

.stat-icon {
  width: 2.25rem;
  height: 2.25rem;
  margin: 0 auto 0.5rem;
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
}

.stat-icon--blue {
  background: rgba(45, 139, 78, 0.1);
}

.stat-icon--blue svg {
  stroke: #003E62;
}

.stat-icon--teal {
  background: rgba(74, 159, 212, 0.1);
}

.stat-icon--teal svg {
  stroke: #4A9FD4;
}

.stat-icon--purple {
  background: rgba(45, 139, 78, 0.1);
}

.stat-icon--purple svg {
  stroke: #2D8B4E;
}

.stat-icon--gold {
  background: rgba(74, 159, 212, 0.1);
}

.stat-icon--gold svg {
  stroke: #4A9FD4;
}

.stat-icon svg {
  width: 1.15rem;
  height: 1.15rem;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.stat-value {
  margin: 0;
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
  color: var(--deep-navy);
}

.stat-label {
  margin: 0.2rem 0 0;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--label);
}

.stats-panel::after {
  display: none;
}


/* --- About Section --- */
.about-section {
  position: relative;
  margin-top: clamp(3rem, 6vw, 5rem);
  padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 3vw, 2rem);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(165deg, #f7f9fb 0%, #ffffff 45%, #f0f3f6 100%);
  border: 1px solid rgba(45, 139, 78, 0.08);
}

.about-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 15% 30%, rgba(45, 139, 78, 0.07), transparent 55%),
    radial-gradient(ellipse 60% 45% at 85% 70%, rgba(74, 159, 212, 0.06), transparent 50%),
    radial-gradient(ellipse 40% 35% at 50% 100%, rgba(45, 139, 78, 0.04), transparent 45%);
  animation: aboutGradientShift 12s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes aboutGradientShift {
  0% {
    opacity: 0.85;
    transform: scale(1) translateY(0);
  }
  100% {
    opacity: 1;
    transform: scale(1.05) translateY(-1%);
  }
}

.about-main {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(380px, 1.05fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.about-label {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--medical-blue);
}

.about-content h2 {
  margin: 0.75rem 0 0;
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  line-height: 1.1;
  color: var(--deep-navy);
  max-width: 18ch;
}

.about-description {
  margin: 1.25rem 0 0;
  max-width: 48ch;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.about-features {
  margin-top: 1.75rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.about-feature-card {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.about-feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
  border-color: rgba(45, 139, 78, 0.15);
}

.about-feature-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-sm);
  background: rgba(45, 139, 78, 0.08);
  display: grid;
  place-items: center;
}

.about-feature-icon svg {
  width: 1.2rem;
  height: 1.2rem;
  stroke: var(--medical-blue);
  stroke-width: 1.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-feature-card h3 {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--deep-navy);
  letter-spacing: -0.01em;
}

.about-feature-card p {
  margin: 0.25rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.about-cta {
  margin-top: 1.75rem;
}

.about-visual {
  position: relative;
  min-height: 420px;
}

.about-visual-glow {
  position: absolute;
  inset: 10% 5% 15% 10%;
  background: radial-gradient(ellipse 80% 70% at 50% 50%, rgba(45, 139, 78, 0.14), transparent 65%);
  border-radius: 50%;
  filter: blur(24px);
  pointer-events: none;
  animation: aboutGlowPulse 8s ease-in-out infinite alternate;
}

@keyframes aboutGlowPulse {
  0% {
    opacity: 0.7;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1.08);
  }
}

.about-shape {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.about-shape--cross {
  top: 8%;
  right: 12%;
  width: 2.5rem;
  height: 2.5rem;
  border: 2px solid rgba(45, 139, 78, 0.15);
  border-radius: 50%;
  opacity: 0.6;
}

.about-shape--cross::before,
.about-shape--cross::after {
  content: "";
  position: absolute;
  background: rgba(45, 139, 78, 0.2);
  border-radius: 1px;
}

.about-shape--cross::before {
  width: 2px;
  height: 60%;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
}

.about-shape--cross::after {
  width: 60%;
  height: 2px;
  top: 50%;
  left: 20%;
  transform: translateY(-50%);
}

.about-shape--ring {
  bottom: 18%;
  left: 4%;
  width: 4rem;
  height: 4rem;
  border: 2px solid rgba(74, 159, 212, 0.2);
  border-radius: 50%;
  animation: aboutShapeFloat 6s ease-in-out infinite;
}

.about-shape--dots {
  top: 22%;
  left: 6%;
  width: 3.5rem;
  height: 3.5rem;
  background-image: radial-gradient(circle, rgba(45, 139, 78, 0.2) 2px, transparent 2px);
  background-size: 12px 12px;
  opacity: 0.5;
}

@keyframes aboutShapeFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-8px) rotate(5deg);
  }
}

.about-image-wrap {
  position: relative;
  z-index: 2;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: transform 0.4s ease;
  will-change: transform;
}

.about-image {
  display: block;
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  object-position: center 40%;
  filter: contrast(1.03) saturate(1.05);
}

.about-float-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 32px rgba(0, 42, 69, 0.1);
  backdrop-filter: blur(16px) saturate(1.1);
  -webkit-backdrop-filter: blur(16px) saturate(1.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-float-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 42, 69, 0.14);
}

.about-float-card--1 {
  top: 6%;
  left: -4%;
  animation: floatCard1 5s ease-in-out infinite;
}

.about-float-card--2 {
  top: 28%;
  right: -6%;
  animation: floatCard2 6s ease-in-out infinite 0.5s;
}

.about-float-card--3 {
  bottom: 28%;
  left: -8%;
  animation: floatCard3 5.5s ease-in-out infinite 1s;
}

.about-float-card--4 {
  bottom: 8%;
  right: 2%;
  animation: floatCard4 6.5s ease-in-out infinite 0.3s;
}

@keyframes floatCard1 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes floatCard2 {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-8px) translateX(3px);
  }
}

@keyframes floatCard3 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
}

@keyframes floatCard4 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.about-float-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--radius-sm);
  background: rgba(45, 139, 78, 0.1);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.about-float-icon svg {
  width: 1.1rem;
  height: 1.1rem;
  stroke: var(--medical-blue);
  stroke-width: 1.6;
  fill: none;
}

.about-float-icon--red {
  background: rgba(169, 85, 58, 0.1);
}

.about-float-icon--red svg {
  stroke: #A9553A;
}

.about-float-icon--teal {
  background: rgba(74, 159, 212, 0.1);
}

.about-float-icon--teal svg {
  stroke: var(--teal);
}

.about-float-icon--purple {
  background: rgba(45, 139, 78, 0.1);
}

.about-float-icon--purple svg {
  stroke: #2D8B4E;
}

.about-float-value {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--deep-navy);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.about-float-label {
  margin: 0.1rem 0 0;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--label);
}

.about-stats-row {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: clamp(2.5rem, 5vw, 3.5rem) auto 0;
  padding: clamp(1.25rem, 2.5vw, 1.75rem) clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-medium);
  backdrop-filter: blur(20px) saturate(1.12);
  -webkit-backdrop-filter: blur(20px) saturate(1.12);
}

.about-stat {
  flex: 1;
  text-align: center;
  min-width: 0;
}

.about-stat-value {
  margin: 0;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--deep-navy);
  line-height: 1.1;
}

.about-stat-label {
  margin: 0.35rem 0 0;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--label);
}

.about-stat-divider {
  width: 1px;
  height: 2.5rem;
  background: var(--divider);
  flex-shrink: 0;
}


/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}
.reveal-delay-4 {
  transition-delay: 0.4s;
}
.reveal-delay-5 {
  transition-delay: 0.5s;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .about-bg-gradient,
  .about-visual-glow,
  .about-shape--ring,
  .about-float-card,
  .dept-bg-glow,
  .dept-badge,
  .dept-particles::before,
  .dept-particles::after,
  .spec-bg-glow,
  .spec-badge,
  .spec-deco--1,
  .spec-deco--2,
  .why-bg-gradient,
  .why-badge,
  .why-deco--1,
  .why-deco--2,
  .why-particle,
  .why-illus-shape--2,
  .why-illus-shape--3,
  .impact-bg-gradient,
  .impact-dashboard-glow,
  .impact-rings,
  .impact-ring--pulse,
  .impact-orbit-badge,
  .impact-deco--1,
  .impact-deco--2,
  .impact-particle {
    animation: none;
  }

  .testi-bg-gradient,
  .testi-deco-quote,
  .testi-particle,
  .testi-card {
    animation: none;
  }

  .book-bg-gradient,
  .book-deco--1,
  .book-deco--2,
  .book-particle,
  .book-float,
  .foot-deco--1,
  .foot-deco--2,
  .foot-particle--1,
  .foot-particle--2 {
    animation: none;
  }

  .foot-cursor-glow {
    display: none;
  }

  .dept-card[data-tilt],
  .spec-card[data-doc-tilt],
  .why-card[data-why-tilt] {
    transform: none !important;
  }
}


/* --- Departments Section --- */
.departments-section {
  position: relative;
  margin-top: clamp(3rem, 6vw, 5rem);
  padding: clamp(3.5rem, 7vw, 5.5rem) clamp(1.25rem, 3vw, 2rem);
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fb 50%, #f0f3f6 100%);
  border: 1px solid rgba(45, 139, 78, 0.06);
}

.dept-cursor-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 139, 78, 0.09), transparent 65%);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s ease;
  transform: translate(-50%, -50%);
}

.departments-section:hover .dept-cursor-glow {
  opacity: 1;
}

.dept-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.dept-bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.dept-bg-glow--1 {
  width: 50%;
  height: 45%;
  top: -10%;
  right: -5%;
  background: rgba(45, 139, 78, 0.1);
  animation: deptGlowDrift 14s ease-in-out infinite alternate;
}

.dept-bg-glow--2 {
  width: 40%;
  height: 40%;
  bottom: -5%;
  left: -8%;
  background: rgba(74, 159, 212, 0.08);
  animation: deptGlowDrift 18s ease-in-out infinite alternate-reverse;
}

@keyframes deptGlowDrift {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(3%, 4%) scale(1.08);
  }
}

.dept-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: radial-gradient(rgba(45, 139, 78, 0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, transparent, black 20%, black 80%, transparent);
}

.dept-deco {
  position: absolute;
  pointer-events: none;
}

.dept-deco--plus {
  width: 1.5rem;
  height: 1.5rem;
  opacity: 0.25;
}

.dept-deco--plus::before,
.dept-deco--plus::after {
  content: "";
  position: absolute;
  background: var(--medical-blue);
  border-radius: 1px;
}

.dept-deco--plus::before {
  width: 2px;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.dept-deco--plus::after {
  width: 100%;
  height: 2px;
  top: 50%;
  transform: translateY(-50%);
}

.dept-deco--1 {
  top: 12%;
  left: 8%;
  animation: deptFloat 7s ease-in-out infinite;
}

.dept-deco--2 {
  bottom: 22%;
  right: 10%;
  animation: deptFloat 9s ease-in-out infinite 1s;
}

.dept-deco--ring {
  top: 18%;
  right: 18%;
  width: 5rem;
  height: 5rem;
  border: 1.5px solid rgba(45, 139, 78, 0.12);
  border-radius: 50%;
}

.dept-deco--line {
  bottom: 35%;
  left: 5%;
  width: 6rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(45, 139, 78, 0.2), transparent);
}

.dept-particles::before,
.dept-particles::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(45, 139, 78, 0.2);
}

.dept-particles::before {
  top: 30%;
  left: 25%;
  animation: deptParticle 10s ease-in-out infinite;
}

.dept-particles::after {
  top: 60%;
  right: 30%;
  animation: deptParticle 12s ease-in-out infinite 2s;
}

@keyframes deptFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes deptParticle {
  0%,
  100% {
    opacity: 0.3;
    transform: translate(0, 0);
  }
  50% {
    opacity: 0.8;
    transform: translate(8px, -12px);
  }
}

.dept-header {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
}

.dept-label {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--medical-blue);
}

.dept-header h2 {
  margin: 0.75rem 0 0;
  font-size: clamp(1.9rem, 3.8vw, 2.85rem);
  line-height: 1.1;
  color: var(--deep-navy);
}

.dept-intro {
  margin: 1.15rem auto 0;
  max-width: 58ch;
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.dept-header-cta {
  margin-top: 1.5rem;
}

.dept-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
  max-width: 1200px;
  margin: 0 auto;
}

.dept-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s ease,
    border-color 0.45s ease;
  transform-style: preserve-3d;
  will-change: transform;
}

a.dept-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.dept-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(45, 139, 78, 0.15), rgba(74, 159, 212, 0.08));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
  z-index: 3;
}

.dept-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(0, 42, 69, 0.14);
  border-color: rgba(45, 139, 78, 0.2);
}

.dept-card:hover::before {
  opacity: 1;
}

.dept-card-media {
  position: relative;
  height: 168px;
  overflow: hidden;
}

.dept-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.dept-card-media .dept-logo {
  object-fit: contain;
  object-position: center;
  padding: 1.35rem 1.5rem;
  background: linear-gradient(145deg, #F7F9FB, #f0f3f6);
}

.dept-card:hover .dept-card-media img {
  transform: scale(1.08);
}

.dept-card-overlay {
  position: absolute;
  inset: 0;
  transition: opacity 0.45s ease;
}

.dept-card-media--cardiology .dept-card-overlay {
  background: linear-gradient(180deg, rgba(45, 139, 78, 0.15), rgba(0, 42, 69, 0.55));
}
.dept-card-media--cardiology img {
  object-position: center 35%;
}

.dept-card-media--orthopedics .dept-card-overlay {
  background: linear-gradient(180deg, rgba(74, 159, 212, 0.12), rgba(0, 42, 69, 0.5));
}
.dept-card-media--orthopedics img {
  object-position: center 50%;
}

.dept-card-media--pediatrics .dept-card-overlay {
  background: linear-gradient(180deg, rgba(45, 139, 78, 0.12), rgba(0, 42, 69, 0.5));
}
.dept-card-media--pediatrics img {
  object-position: 60% 40%;
}

.dept-card-media--neurology .dept-card-overlay {
  background: linear-gradient(180deg, rgba(74, 159, 212, 0.12), rgba(0, 42, 69, 0.52));
}
.dept-card-media--neurology img {
  object-position: 40% 45%;
}

.dept-card-media--general .dept-card-overlay {
  background: linear-gradient(180deg, rgba(16, 185, 129, 0.1), rgba(0, 42, 69, 0.5));
}
.dept-card-media--general img {
  object-position: center 55%;
}

.dept-card-media--gynecology .dept-card-overlay {
  background: linear-gradient(180deg, rgba(236, 72, 153, 0.1), rgba(0, 42, 69, 0.5));
}
.dept-card-media--gynecology img {
  object-position: 55% 38%;
}

.dept-card:hover .dept-card-overlay {
  opacity: 0.85;
}

.dept-card-icon {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  box-shadow: 0 4px 12px rgba(0, 42, 69, 0.1);
}

.dept-card-icon svg {
  width: 1.2rem;
  height: 1.2rem;
  stroke: var(--medical-blue);
  stroke-width: 1.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dept-card-body {
  padding: 1.25rem 1.35rem 1.35rem;
}

.dept-card-body h3 {
  margin: 0;
  font-size: 1.5rem;
  color: var(--deep-navy);
}

.dept-card-body > p {
  margin: 0.4rem 0 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.dept-card-link {
  margin-top: 1rem;
  padding: 0;
  border: 0;
  background: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--medical-blue);
  cursor: pointer;
  transition: gap 0.3s ease, color 0.3s ease;
}

button.dept-card-link {
  cursor: pointer;
}

.dept-card-link svg {
  width: 1rem;
  height: 1rem;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.dept-card:hover .dept-card-link {
  gap: 0.65rem;
}

.dept-card:hover .dept-card-link svg {
  transform: translateX(4px);
}

/* Featured department highlight */
.dept-featured {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(300px, 1.05fr) minmax(300px, 0.95fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  max-width: 1200px;
  margin: clamp(3rem, 6vw, 4.5rem) auto 0;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.dept-featured-visual {
  position: relative;
  min-height: 340px;
}

.dept-featured-glow {
  position: absolute;
  inset: 8%;
  background: radial-gradient(ellipse 80% 70% at 50% 50%, rgba(45, 139, 78, 0.16), transparent 65%);
  filter: blur(20px);
  pointer-events: none;
  animation: deptGlowDrift 10s ease-in-out infinite alternate;
}

.dept-featured-image-wrap {
  position: relative;
  z-index: 2;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: transform 0.4s ease;
  will-change: transform;
}

.dept-featured-image-wrap img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 40%;
}

.dept-badge {
  position: absolute;
  z-index: 3;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--deep-navy);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 6px 24px rgba(0, 42, 69, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  white-space: nowrap;
}

.dept-badge span {
  margin-right: 0.25rem;
  color: var(--medical-blue);
}

.dept-badge--1 {
  top: 6%;
  left: -2%;
  animation: deptBadgeFloat 5s ease-in-out infinite;
}

.dept-badge--2 {
  top: 22%;
  right: -4%;
  animation: deptBadgeFloat 6s ease-in-out infinite 0.5s;
}

.dept-badge--3 {
  bottom: 22%;
  left: -6%;
  animation: deptBadgeFloat 5.5s ease-in-out infinite 1s;
}

.dept-badge--4 {
  bottom: 8%;
  right: 4%;
  animation: deptBadgeFloat 6.5s ease-in-out infinite 0.3s;
}

@keyframes deptBadgeFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

.dept-featured-label {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--medical-blue);
}

.dept-featured-content h3 {
  margin: 0.5rem 0 0;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--deep-navy);
}

.dept-featured-desc {
  margin: 1rem 0 0;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 48ch;
}

.dept-featured-list {
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.dept-featured-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-dark);
}

.dept-list-icon {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 999px;
  background: rgba(45, 139, 78, 0.08);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.dept-list-icon svg {
  width: 0.75rem;
  height: 0.75rem;
  stroke: var(--medical-blue);
  stroke-width: 2.2;
  fill: none;
}

.dept-featured-content .btn-primary {
  margin-top: 1.5rem;
}


/* --- Specialists Section --- */
.specialists-section {
  position: relative;
  margin-top: clamp(3rem, 6vw, 5rem);
  padding: clamp(3.5rem, 7vw, 5.5rem) clamp(1.25rem, 3vw, 2rem);
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(175deg, #ffffff 0%, #f7f9fb 45%, #f0f3f6 100%);
  border: 1px solid rgba(45, 139, 78, 0.06);
}

.spec-cursor-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 139, 78, 0.08), transparent 65%);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s ease;
  transform: translate(-50%, -50%);
}

.specialists-section:hover .spec-cursor-glow {
  opacity: 1;
}

.spec-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.spec-bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(55px);
}

.spec-bg-glow--1 {
  width: 45%;
  height: 40%;
  top: -8%;
  left: -5%;
  background: rgba(45, 139, 78, 0.09);
  animation: specGlowDrift 15s ease-in-out infinite alternate;
}

.spec-bg-glow--2 {
  width: 38%;
  height: 38%;
  bottom: -6%;
  right: -4%;
  background: rgba(74, 159, 212, 0.07);
  animation: specGlowDrift 18s ease-in-out infinite alternate-reverse;
}

@keyframes specGlowDrift {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(2%, 3%);
  }
}

.spec-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background-image: radial-gradient(rgba(45, 139, 78, 0.06) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(180deg, transparent, black 15%, black 85%, transparent);
}

.spec-deco {
  position: absolute;
  pointer-events: none;
}

.spec-deco--cross {
  width: 1.25rem;
  height: 1.25rem;
  opacity: 0.22;
}

.spec-deco--cross::before,
.spec-deco--cross::after {
  content: "";
  position: absolute;
  background: var(--medical-blue);
  border-radius: 1px;
}

.spec-deco--cross::before {
  width: 2px;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.spec-deco--cross::after {
  width: 100%;
  height: 2px;
  top: 50%;
  transform: translateY(-50%);
}

.spec-deco--1 {
  top: 14%;
  right: 12%;
  animation: specFloat 8s ease-in-out infinite;
}

.spec-deco--2 {
  bottom: 28%;
  left: 6%;
  animation: specFloat 10s ease-in-out infinite 1.2s;
}

.spec-deco--ring {
  top: 20%;
  left: 10%;
  width: 4.5rem;
  height: 4.5rem;
  border: 1.5px solid rgba(45, 139, 78, 0.1);
  border-radius: 50%;
}

.spec-deco--line {
  bottom: 40%;
  right: 8%;
  width: 5rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(45, 139, 78, 0.18), transparent);
}

@keyframes specFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.spec-header {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
}

.spec-label {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--medical-blue);
}

.spec-header h2 {
  margin: 0.75rem 0 0;
  font-size: clamp(1.9rem, 3.8vw, 2.85rem);
  line-height: 1.1;
  color: var(--deep-navy);
}

.spec-intro {
  margin: 1.15rem auto 0;
  max-width: 58ch;
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.spec-header-cta {
  margin-top: 1.5rem;
}

.spec-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
  max-width: 1200px;
  margin: 0 auto;
}

.spec-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s ease,
    border-color 0.45s ease;
  transform-style: preserve-3d;
  will-change: transform;
}

.spec-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(45, 139, 78, 0.18), rgba(74, 159, 212, 0.08));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
  z-index: 3;
}

.spec-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(0, 42, 69, 0.13);
  border-color: rgba(45, 139, 78, 0.18);
}

.spec-card:hover::before {
  opacity: 1;
}

.spec-portrait {
  position: relative;
  height: 200px;
  display: grid;
  place-items: center;
  overflow: hidden;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.spec-card:hover .spec-portrait {
  transform: scale(1.04);
}

.spec-portrait--1 {
  background: linear-gradient(145deg, #E8EBEE 0%, #9BB5A8 50%, #2D8B4E 100%);
}
.spec-portrait--2 {
  background: linear-gradient(145deg, #ccfbf1 0%, #5eead4 50%, #0d9488 100%);
}
.spec-portrait--3 {
  background: linear-gradient(145deg, #E8F4F8 0%, #4A9FD4 50%, #2D8B4E 100%);
}
.spec-portrait--4 {
  background: linear-gradient(145deg, #E8F4F8 0%, #4A9FD4 50%, #4A9FD4 100%);
}
.spec-portrait--5 {
  background: linear-gradient(145deg, #fce7f3 0%, #f9a8d4 50%, #db2777 100%);
}
.spec-portrait--6 {
  background: linear-gradient(145deg, #f0f3f6 0%, #C5DFF0 50%, #4A9FD4 100%);
}

.spec-initials {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 2px 12px rgba(0, 42, 69, 0.15);
}

.spec-initials--lg {
  font-size: 4rem;
}

.spec-card-panel {
  padding: 1.25rem 1.35rem 1.4rem;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.spec-card-panel h3 {
  margin: 0;
  font-size: 1.5rem;
  color: var(--deep-navy);
}

.spec-specialty {
  margin: 0.3rem 0 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--medical-blue);
}

.spec-meta {
  margin: 0.45rem 0 0;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--label);
}

.spec-desc {
  margin: 0.55rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.spec-book-btn {
  margin-top: 1rem;
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(45, 139, 78, 0.2);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.9);
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--medical-blue);
  cursor: pointer;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.spec-card:hover .spec-book-btn {
  background: linear-gradient(135deg, #003E62, #2D8B4E);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(45, 139, 78, 0.25);
  transform: translateY(-1px);
}

/* Featured specialist */
.spec-featured {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 1.1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  max-width: 1200px;
  margin: clamp(3rem, 6vw, 4.5rem) auto 0;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.spec-featured-visual {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spec-featured-glow {
  position: absolute;
  inset: 5%;
  background: radial-gradient(ellipse 75% 65% at 50% 50%, rgba(45, 139, 78, 0.14), transparent 65%);
  filter: blur(22px);
  pointer-events: none;
  animation: specGlowDrift 11s ease-in-out infinite alternate;
}

.spec-featured-portrait {
  position: relative;
  z-index: 2;
  width: min(100%, 320px);
  aspect-ratio: 3 / 4;
  border-radius: 24px;
  box-shadow: var(--shadow-elevated);
  border: 3px solid rgba(255, 255, 255, 0.9);
  transition: transform 0.4s ease;
  will-change: transform;
}

.spec-badge {
  position: absolute;
  z-index: 3;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--deep-navy);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 6px 20px rgba(0, 42, 69, 0.09);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  white-space: nowrap;
}

.spec-badge--1 {
  top: 8%;
  left: -2%;
  animation: specBadgeFloat 5.5s ease-in-out infinite;
}

.spec-badge--2 {
  top: 20%;
  right: -6%;
  animation: specBadgeFloat 6s ease-in-out infinite 0.4s;
}

.spec-badge--3 {
  bottom: 24%;
  left: -8%;
  animation: specBadgeFloat 5s ease-in-out infinite 0.8s;
}

.spec-badge--4 {
  bottom: 10%;
  right: 0;
  animation: specBadgeFloat 6.5s ease-in-out infinite 0.2s;
}

@keyframes specBadgeFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.spec-featured-label {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--medical-blue);
}

.spec-featured-content h3 {
  margin: 0.5rem 0 0;
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  color: var(--deep-navy);
}

.spec-featured-role {
  margin: 0.35rem 0 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--medical-blue);
}

.spec-featured-exp,
.spec-featured-qual {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.spec-featured-exp strong,
.spec-featured-qual strong {
  color: var(--text-dark);
  font-weight: 600;
}

.spec-expertise {
  margin-top: 1.15rem;
}

.spec-expertise-title {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--label);
}

.spec-expertise ul {
  margin: 0.5rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.4rem 1rem;
}

.spec-expertise li {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark);
  padding-left: 1rem;
  position: relative;
}

.spec-expertise li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--medical-blue);
}

.spec-featured-bio {
  margin: 1.15rem 0 0;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 50ch;
}

.spec-featured-content .btn-primary {
  margin-top: 1.5rem;
}


/* --- Why Choose Us Section --- */
.why-section {
  position: relative;
  margin-top: clamp(3rem, 6vw, 5rem);
  padding: clamp(3.5rem, 7vw, 5.5rem) clamp(1.25rem, 3vw, 2rem);
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(168deg, #ffffff 0%, #f7f9fb 40%, #f0f3f6 100%);
  border: 1px solid rgba(45, 139, 78, 0.06);
}

.why-cursor-glow {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 139, 78, 0.07), transparent 65%);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s ease;
  transform: translate(-50%, -50%);
}

.why-section:hover .why-cursor-glow {
  opacity: 1;
}

.why-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.why-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 40% at 20% 30%, rgba(45, 139, 78, 0.06), transparent 55%),
    radial-gradient(ellipse 50% 45% at 85% 75%, rgba(74, 159, 212, 0.05), transparent 50%);
  animation: whyBgShift 16s ease-in-out infinite alternate;
}

@keyframes whyBgShift {
  0% {
    opacity: 0.85;
    transform: scale(1);
  }
  100% {
    opacity: 1;
    transform: scale(1.04);
  }
}

.why-bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
}

.why-bg-glow--1 {
  width: 42%;
  height: 38%;
  top: -6%;
  right: 5%;
  background: rgba(45, 139, 78, 0.08);
}

.why-bg-glow--2 {
  width: 35%;
  height: 35%;
  bottom: -4%;
  left: 8%;
  background: rgba(74, 159, 212, 0.06);
}

.why-bg-curve {
  position: absolute;
  top: 15%;
  left: 0;
  width: 100%;
  height: 200px;
  border-top: 1px solid transparent;
  border-image: linear-gradient(90deg, transparent, rgba(45, 139, 78, 0.12), transparent) 1;
  opacity: 0.6;
}

.why-deco {
  position: absolute;
  pointer-events: none;
}

.why-deco--plus {
  width: 1.2rem;
  height: 1.2rem;
  opacity: 0.2;
}

.why-deco--plus::before,
.why-deco--plus::after {
  content: "";
  position: absolute;
  background: var(--medical-blue);
  border-radius: 1px;
}

.why-deco--plus::before {
  width: 2px;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.why-deco--plus::after {
  width: 100%;
  height: 2px;
  top: 50%;
  transform: translateY(-50%);
}

.why-deco--1 {
  top: 18%;
  right: 15%;
  animation: whyFloat 9s ease-in-out infinite;
}

.why-deco--2 {
  bottom: 20%;
  left: 12%;
  animation: whyFloat 11s ease-in-out infinite 1s;
}

.why-deco--ring {
  top: 25%;
  left: 6%;
  width: 5rem;
  height: 5rem;
  border: 1.5px solid rgba(45, 139, 78, 0.1);
  border-radius: 50%;
}

.why-deco--shape {
  bottom: 30%;
  right: 8%;
  width: 3rem;
  height: 3rem;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(45, 139, 78, 0.06), rgba(74, 159, 212, 0.04));
  transform: rotate(15deg);
}

.why-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(45, 139, 78, 0.25);
}

.why-particle--1 {
  top: 35%;
  left: 30%;
  animation: whyParticle 12s ease-in-out infinite;
}

.why-particle--2 {
  top: 55%;
  right: 25%;
  animation: whyParticle 14s ease-in-out infinite 2s;
}

.why-particle--3 {
  bottom: 25%;
  left: 45%;
  animation: whyParticle 10s ease-in-out infinite 1s;
}

@keyframes whyFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

@keyframes whyParticle {
  0%,
  100% {
    opacity: 0.3;
    transform: translate(0, 0);
  }
  50% {
    opacity: 0.9;
    transform: translate(6px, -10px);
  }
}

.why-header {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
}

.why-label {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--medical-blue);
}

.why-header h2 {
  margin: 0.75rem 0 0;
  font-size: clamp(1.9rem, 3.8vw, 2.75rem);
  line-height: 1.1;
  color: var(--deep-navy);
}

.why-intro {
  margin: 1.15rem auto 0;
  max-width: 60ch;
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.why-main {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(360px, 1.05fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.why-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.why-card {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1.15rem 1.2rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease,
    border-color 0.4s ease;
  transform-style: preserve-3d;
  will-change: transform;
}

.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(45, 139, 78, 0.2), rgba(74, 159, 212, 0.1));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.why-card {
  position: relative;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 42, 69, 0.12);
  border-color: rgba(45, 139, 78, 0.15);
}

.why-card:hover::before {
  opacity: 1;
}

.why-card--offset-1 {
  transform: translateY(0.75rem);
}

.why-card--offset-2 {
  transform: translateY(1.5rem);
}

.why-card--offset-1:hover,
.why-card--offset-2:hover {
  transform: translateY(calc(-6px + 0.75rem));
}

.why-card--offset-2:hover {
  transform: translateY(calc(-6px + 1.5rem));
}

.why-card-icon {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 14px;
  background: rgba(45, 139, 78, 0.08);
  display: grid;
  place-items: center;
}

.why-card-icon svg {
  width: 1.3rem;
  height: 1.3rem;
  stroke: var(--medical-blue);
  stroke-width: 1.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-card-icon--rose {
  background: rgba(244, 63, 94, 0.08);
}

.why-card-icon--rose svg {
  stroke: #A9553A;
}

.why-card-icon--red {
  background: rgba(169, 85, 58, 0.08);
}

.why-card-icon--red svg {
  stroke: #A9553A;
}

.why-card-icon--purple {
  background: rgba(45, 139, 78, 0.08);
}

.why-card-icon--purple svg {
  stroke: #2D8B4E;
}

.why-card-icon--teal {
  background: rgba(74, 159, 212, 0.08);
}

.why-card-icon--teal svg {
  stroke: var(--teal);
}

.why-card h3 {
  margin: 0;
  font-size: 1.5rem;
  color: var(--deep-navy);
}

.why-card p {
  margin: 0.3rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--text-muted);
}

/* Healthcare illustration */
.why-visual {
  position: relative;
  min-height: 480px;
}

.why-visual-glow {
  position: absolute;
  inset: 8%;
  background: radial-gradient(ellipse 70% 60% at 50% 45%, rgba(45, 139, 78, 0.12), transparent 65%);
  filter: blur(24px);
  pointer-events: none;
  animation: whyBgShift 10s ease-in-out infinite alternate;
}

.why-illustration {
  position: relative;
  z-index: 2;
  height: 420px;
  border-radius: 28px;
  background: linear-gradient(165deg, #f0f3f6 0%, #E8EBEE 40%, #E8EBEE 100%);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-elevated);
  overflow: hidden;
  transition: transform 0.4s ease;
  will-change: transform;
}

.why-illus-floor {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 35%;
  background: linear-gradient(180deg, transparent, rgba(45, 139, 78, 0.06));
  border-top: 1px solid rgba(45, 139, 78, 0.08);
}

.why-illus-screen {
  position: absolute;
  top: 12%;
  right: 10%;
  width: 38%;
  height: 32%;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(45, 139, 78, 0.12);
  box-shadow: 0 8px 24px rgba(0, 42, 69, 0.08);
  padding: 0.75rem;
}

.why-illus-screen-bar {
  width: 40%;
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--medical-blue), var(--teal));
  margin-bottom: 0.5rem;
}

.why-illus-screen-line {
  height: 4px;
  border-radius: 2px;
  background: rgba(45, 139, 78, 0.15);
  margin-bottom: 0.35rem;
}

.why-illus-screen-line--short {
  width: 65%;
}

.why-illus-figure {
  position: absolute;
  bottom: 22%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.why-illus-head {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: linear-gradient(145deg, #fde8d8, #f5c4a8);
  box-shadow: 0 2px 8px rgba(0, 42, 69, 0.1);
}

.why-illus-body {
  width: 3.5rem;
  height: 4.5rem;
  margin-top: 0.25rem;
  border-radius: 12px 12px 4px 4px;
}

.why-illus-figure--doctor {
  left: 18%;
}

.why-illus-figure--doctor .why-illus-body {
  background: linear-gradient(180deg, #ffffff, #E8EBEE);
  border: 1px solid rgba(45, 139, 78, 0.15);
}

.why-illus-figure--patient {
  left: 38%;
}

.why-illus-figure--patient .why-illus-body {
  background: linear-gradient(180deg, #E8EBEE, #dfd5b8);
  border: 1px solid rgba(45, 139, 78, 0.1);
}

.why-illus-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
}

.why-illus-shape--1 {
  width: 5rem;
  height: 5rem;
  top: 8%;
  left: 8%;
  background: radial-gradient(circle, rgba(45, 139, 78, 0.15), transparent 70%);
}

.why-illus-shape--2 {
  width: 3.5rem;
  height: 3.5rem;
  bottom: 30%;
  right: 25%;
  background: radial-gradient(circle, rgba(74, 159, 212, 0.2), transparent 70%);
  animation: whyFloat 8s ease-in-out infinite;
}

.why-illus-shape--3 {
  width: 2rem;
  height: 2rem;
  top: 45%;
  left: 15%;
  border: 2px solid rgba(45, 139, 78, 0.2);
  background: transparent;
  animation: whyFloat 7s ease-in-out infinite 0.5s;
}

.why-badge {
  position: absolute;
  z-index: 3;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--deep-navy);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 6px 20px rgba(0, 42, 69, 0.09);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  white-space: nowrap;
}

.why-badge span {
  color: var(--medical-blue);
  margin-right: 0.2rem;
}

.why-badge--1 {
  top: 4%;
  right: -2%;
  animation: whyBadgeFloat 5.5s ease-in-out infinite;
}

.why-badge--2 {
  top: 18%;
  left: -8%;
  animation: whyBadgeFloat 6s ease-in-out infinite 0.3s;
}

.why-badge--3 {
  top: 42%;
  right: -10%;
  animation: whyBadgeFloat 5s ease-in-out infinite 0.6s;
}

.why-badge--4 {
  bottom: 28%;
  left: -6%;
  animation: whyBadgeFloat 6.5s ease-in-out infinite 0.2s;
}

.why-badge--5 {
  bottom: 8%;
  right: 5%;
  animation: whyBadgeFloat 5.8s ease-in-out infinite 0.8s;
}

@keyframes whyBadgeFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}


/* --- Impact Section --- */
.impact-section {
  position: relative;
  margin-top: clamp(3rem, 6vw, 5rem);
  padding: clamp(3.5rem, 7vw, 5.5rem) clamp(1.25rem, 3vw, 2rem);
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(170deg, #ffffff 0%, #f7f9fb 45%, #f0f3f6 100%);
  border: 1px solid rgba(45, 139, 78, 0.06);
}

.impact-cursor-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 139, 78, 0.08), transparent 65%);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s ease;
  transform: translate(-50%, -50%);
}

.impact-section:hover .impact-cursor-glow {
  opacity: 1;
}

.impact-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.impact-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 45% at 75% 25%, rgba(45, 139, 78, 0.07), transparent 55%),
    radial-gradient(ellipse 45% 40% at 15% 80%, rgba(74, 159, 212, 0.05), transparent 50%);
  animation: impactBgShift 18s ease-in-out infinite alternate;
}

@keyframes impactBgShift {
  0% {
    opacity: 0.9;
  }
  100% {
    opacity: 1;
  }
}

.impact-bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(55px);
}

.impact-bg-glow--1 {
  width: 40%;
  height: 38%;
  top: -5%;
  left: 10%;
  background: rgba(45, 139, 78, 0.09);
}

.impact-bg-glow--2 {
  width: 35%;
  height: 35%;
  bottom: -3%;
  right: 12%;
  background: rgba(74, 159, 212, 0.07);
}

.impact-bg-grid {
  position: absolute;
  inset: 0;
  opacity: 0.25;
  background-image:
    linear-gradient(rgba(45, 139, 78, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 139, 78, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black, transparent);
}

.impact-deco {
  position: absolute;
  pointer-events: none;
}

.impact-deco--plus {
  width: 1.15rem;
  height: 1.15rem;
  opacity: 0.2;
}

.impact-deco--plus::before,
.impact-deco--plus::after {
  content: "";
  position: absolute;
  background: var(--medical-blue);
  border-radius: 1px;
}

.impact-deco--plus::before {
  width: 2px;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.impact-deco--plus::after {
  width: 100%;
  height: 2px;
  top: 50%;
  transform: translateY(-50%);
}

.impact-deco--1 {
  top: 16%;
  right: 18%;
  animation: impactFloat 9s ease-in-out infinite;
}

.impact-deco--2 {
  bottom: 22%;
  left: 8%;
  animation: impactFloat 11s ease-in-out infinite 1s;
}

.impact-deco--ring {
  top: 28%;
  right: 6%;
  width: 4.5rem;
  height: 4.5rem;
  border: 1.5px solid rgba(45, 139, 78, 0.1);
  border-radius: 50%;
}

.impact-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(45, 139, 78, 0.22);
}

.impact-particle--1 {
  top: 40%;
  left: 25%;
  animation: impactParticle 13s ease-in-out infinite;
}

.impact-particle--2 {
  bottom: 35%;
  right: 30%;
  animation: impactParticle 11s ease-in-out infinite 1.5s;
}

@keyframes impactFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes impactParticle {
  0%,
  100% {
    opacity: 0.3;
    transform: translate(0, 0);
  }
  50% {
    opacity: 0.85;
    transform: translate(5px, -8px);
  }
}

.impact-header {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
}

.impact-label {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--medical-blue);
}

.impact-header h2 {
  margin: 0.75rem 0 0;
  font-size: clamp(1.9rem, 3.8vw, 2.75rem);
  line-height: 1.1;
  color: var(--deep-navy);
}

.impact-intro {
  margin: 1.15rem auto 0;
  max-width: 38rem;
  width: 100%;
  text-align: center;
  text-wrap: balance;
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.impact-main {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(340px, 1.1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.impact-dashboard-wrap {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.impact-dashboard-glow {
  position: absolute;
  width: 85%;
  height: 85%;
  background: radial-gradient(circle, rgba(45, 139, 78, 0.14), transparent 65%);
  filter: blur(30px);
  pointer-events: none;
  animation: impactPulse 4s ease-in-out infinite;
}

@keyframes impactPulse {
  0%,
  100% {
    opacity: 0.7;
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

.impact-dashboard {
  position: relative;
  width: min(100%, 380px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  transition: transform 0.4s ease;
  will-change: transform;
}

.impact-rings {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: impactRingRotate 40s linear infinite;
}

@keyframes impactRingRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.impact-ring {
  fill: none;
  stroke-width: 1.5;
}

.impact-ring--1 {
  stroke: rgba(45, 139, 78, 0.12);
  stroke-dasharray: 8 12;
}

.impact-ring--2 {
  stroke: rgba(74, 159, 212, 0.15);
  stroke-dasharray: 6 10;
  animation: impactRingRotate 30s linear infinite reverse;
}

.impact-ring--3 {
  stroke: rgba(45, 139, 78, 0.1);
  stroke-dasharray: 4 8;
}

.impact-ring--pulse {
  stroke: rgba(45, 139, 78, 0.2);
  stroke-width: 2;
  animation: impactRingPulse 3s ease-in-out infinite;
}

@keyframes impactRingPulse {
  0%,
  100% {
    stroke-opacity: 0.35;
  }
  50% {
    stroke-opacity: 0.85;
  }
}

.impact-dashboard-center {
  position: relative;
  z-index: 2;
  width: 52%;
  aspect-ratio: 1;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow:
    0 16px 48px rgba(0, 42, 69, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.impact-center-value {
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--deep-navy);
  line-height: 1;
}

.impact-center-label {
  margin: 0.35rem 0 0;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--label);
  text-align: center;
  padding: 0 0.5rem;
}

.impact-orbit-badge {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  font-size: 0.625rem;
  font-weight: 600;
  color: var(--deep-navy);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 6px 20px rgba(0, 42, 69, 0.09);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  white-space: nowrap;
  max-width: 11rem;
}

.impact-orbit-icon {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 6px;
  background: rgba(45, 139, 78, 0.08);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.impact-orbit-icon svg {
  width: 0.7rem;
  height: 0.7rem;
  stroke: var(--medical-blue);
  stroke-width: 1.6;
  fill: none;
}

.impact-orbit-badge--1 {
  top: 2%;
  left: 50%;
  transform: translateX(-50%);
  animation: impactOrbitFloat 5s ease-in-out infinite;
}

.impact-orbit-badge--2 {
  top: 18%;
  right: -2%;
  animation: impactOrbitFloat 5.5s ease-in-out infinite 0.3s;
}

.impact-orbit-badge--3 {
  bottom: 18%;
  right: -4%;
  animation: impactOrbitFloat 6s ease-in-out infinite 0.6s;
}

.impact-orbit-badge--4 {
  bottom: 2%;
  left: 50%;
  transform: translateX(-50%);
  animation: impactOrbitFloat 5.2s ease-in-out infinite 0.2s;
}

.impact-orbit-badge--5 {
  bottom: 18%;
  left: -6%;
  animation: impactOrbitFloat 5.8s ease-in-out infinite 0.5s;
}

.impact-orbit-badge--6 {
  top: 18%;
  left: -4%;
  animation: impactOrbitFloat 6.2s ease-in-out infinite 0.8s;
}

@keyframes impactOrbitFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.impact-orbit-badge--1,
.impact-orbit-badge--4 {
  animation-name: impactOrbitFloatCenter;
}

@keyframes impactOrbitFloatCenter {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-5px);
  }
}

.impact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.impact-card {
  position: relative;
  padding: 1.25rem 1.3rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}

.impact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(45, 139, 78, 0.22), rgba(74, 159, 212, 0.1));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.impact-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow:
    0 20px 48px rgba(0, 42, 69, 0.12),
    0 0 40px rgba(45, 139, 78, 0.06);
  border-color: rgba(45, 139, 78, 0.15);
}

.impact-card:hover::before {
  opacity: 1;
}

.impact-card-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 10px;
  background: rgba(45, 139, 78, 0.08);
  display: grid;
  place-items: center;
  margin-bottom: 0.65rem;
}

.impact-card-icon svg {
  width: 1.15rem;
  height: 1.15rem;
  stroke: var(--medical-blue);
  stroke-width: 1.6;
  fill: none;
  stroke-linecap: round;
}

.impact-card-icon--gold {
  background: rgba(74, 159, 212, 0.1);
}

.impact-card-icon--gold svg {
  stroke: #4A9FD4;
}

.impact-card-icon--red {
  background: rgba(169, 85, 58, 0.1);
}

.impact-card-icon--red svg {
  stroke: #A9553A;
}

.impact-card-value {
  margin: 0;
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--deep-navy);
  line-height: 1.1;
}

.impact-card-value--static {
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
}

.impact-card h3 {
  margin: 0.4rem 0 0;
  font-size: 1.5rem;
  color: var(--deep-navy);
}

.impact-card > p:last-child {
  margin: 0.3rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--text-muted);
}


/* --- Testimonials Section --- */
.testi-section {
  position: relative;
  margin-top: clamp(3rem, 6vw, 5rem);
  padding: clamp(3.5rem, 7vw, 5.5rem) clamp(1.25rem, 3vw, 2rem);
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(168deg, #ffffff 0%, #F7F9FB 40%, #f0f3f6 100%);
  border: 1px solid rgba(45, 139, 78, 0.06);
}

.testi-cursor-glow {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 139, 78, 0.07), transparent 65%);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s ease;
  transform: translate(-50%, -50%);
}

.testi-section:hover .testi-cursor-glow {
  opacity: 1;
}

.testi-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.testi-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 80% 20%, rgba(45, 139, 78, 0.06), transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 85%, rgba(74, 159, 212, 0.05), transparent 50%);
  animation: testiBgShift 20s ease-in-out infinite alternate;
}

@keyframes testiBgShift {
  0% {
    opacity: 0.9;
  }
  100% {
    opacity: 1;
  }
}

.testi-bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
}

.testi-bg-glow--1 {
  width: 45%;
  height: 40%;
  top: 5%;
  right: 0;
  background: rgba(45, 139, 78, 0.08);
}

.testi-bg-glow--2 {
  width: 35%;
  height: 35%;
  bottom: 10%;
  left: 5%;
  background: rgba(74, 159, 212, 0.06);
}

.testi-bg-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(180deg, transparent, rgba(45, 139, 78, 0.03));
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  transform: scaleX(1.2);
}

.testi-deco-quote {
  position: absolute;
  top: 12%;
  right: 8%;
  font-size: clamp(8rem, 15vw, 12rem);
  font-weight: 700;
  line-height: 1;
  color: rgba(45, 139, 78, 0.04);
  font-family: var(--font-serif);
  animation: testiQuoteRotate 30s linear infinite;
  pointer-events: none;
}

@keyframes testiQuoteRotate {
  0%,
  100% {
    transform: rotate(-6deg);
  }
  50% {
    transform: rotate(6deg);
  }
}

.testi-particle {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(45, 139, 78, 0.2);
}

.testi-particle--1 {
  top: 35%;
  left: 20%;
  animation: testiParticle 12s ease-in-out infinite;
}

.testi-particle--2 {
  bottom: 30%;
  right: 25%;
  animation: testiParticle 14s ease-in-out infinite 2s;
}

@keyframes testiParticle {
  0%,
  100% {
    opacity: 0.3;
    transform: translate(0, 0);
  }
  50% {
    opacity: 0.8;
    transform: translate(6px, -10px);
  }
}

.testi-glow-line {
  position: absolute;
  top: 45%;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(45, 139, 78, 0.1), transparent);
}

.testi-top-header {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
  text-align: center;
}

.testi-label {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--medical-blue);
  white-space: nowrap;
}

.testi-top-header h2 {
  margin: 0.75rem 0 0;
  font-size: clamp(1.9rem, 3.8vw, 2.75rem);
  line-height: 1.1;
  color: var(--deep-navy);
}

.testi-top-intro {
  margin: 1rem auto 0;
  max-width: 58ch;
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.testi-main {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(380px, 1.1fr);
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.testi-intro-title {
  margin: 0;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--deep-navy);
}

.testi-intro-desc {
  margin: 0.75rem 0 0;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 38ch;
}

.testi-rating-block {
  margin-top: 1.5rem;
  padding: 1.25rem 1.35rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.testi-stars {
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  color: #f59e0b;
  line-height: 1;
}

.testi-stars--sm {
  font-size: 0.8rem;
  margin: 0.5rem 0;
}

.testi-rating-value {
  margin: 0.5rem 0 0;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--deep-navy);
}

.testi-rating-sub {
  margin: 0.2rem 0 0;
  font-size: 0.8125rem;
  color: var(--label);
}

.testi-cta-row {
  margin-top: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-start;
}

.testi-trust-list {
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.testi-trust-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark);
}

.testi-trust-list span {
  color: var(--medical-blue);
  font-weight: 700;
}

.testi-carousel-wrap {
  position: relative;
  min-height: 380px;
}

.testi-carousel {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: auto;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 1.5rem 0 2rem;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.testi-carousel::-webkit-scrollbar {
  display: none;
}

.testi-carousel.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.testi-carousel-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  padding: 0 1rem;
}

.testi-carousel-nav {
  display: none;
}

.testi-carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.testi-dot {
  width: 0.5rem;
  height: 0.5rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 62, 98, 0.2);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.testi-dot.is-active {
  width: 1.35rem;
  background: #003e62;
}

/* Mobile: native swipe — CSS marquee + overflow:hidden blocks touch scrolling */
@media (max-width: 768px) {
  .testi-intro {
    display: none;
  }

  .testi-carousel-wrap {
    min-height: 0;
    overflow: hidden;
  }

  .testi-carousel,
  .testi-carousel.is-auto-marquee,
  .testi-carousel.is-mobile-snap {
    overflow-x: auto;
    overflow-y: hidden;
    cursor: grab;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    scroll-snap-type: x mandatory;
    overscroll-behavior-x: contain;
    padding: 0.85rem 0 0.65rem;
    -webkit-mask-image: none;
    mask-image: none;
    scrollbar-width: none;
  }

  .testi-carousel.is-auto-marquee .testi-carousel-track,
  .testi-carousel .testi-carousel-track {
    gap: 0.95rem;
    padding-left: 1rem;
    padding-right: 1rem;
    animation: none;
    will-change: auto;
  }

  .testi-carousel .testi-card,
  .testi-carousel.is-auto-marquee .testi-card,
  .testi-carousel.is-mobile-snap .testi-card {
    flex: 0 0 min(320px, 86vw);
    scroll-snap-align: center;
    scroll-snap-stop: always;
    animation: none;
    background: #fff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    opacity: 1;
  }

  .testi-carousel .testi-card.is-active,
  .testi-carousel.is-auto-marquee .testi-card.is-active {
    transform: none;
    box-shadow: var(--shadow-medium);
  }

  .testi-carousel-nav {
    display: flex;
    justify-content: center;
    margin-top: 0.35rem;
  }
}

@keyframes testiMarquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .testi-carousel.is-auto-marquee .testi-carousel-track {
    animation: none;
  }
}

.testi-card {
  position: relative;
  flex: 0 0 min(320px, 85vw);
  padding: 1.5rem 1.4rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-medium);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s ease,
    opacity 0.45s ease;
  animation: testiCardFloat 6s ease-in-out infinite;
}

.testi-card:nth-child(2) {
  animation-delay: 0.5s;
}
.testi-card:nth-child(3) {
  animation-delay: 1s;
}
.testi-card:nth-child(4) {
  animation-delay: 1.5s;
}
.testi-card:nth-child(5) {
  animation-delay: 2s;
}

@keyframes testiCardFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

.testi-card.is-active {
  transform: scale(1.04) translateY(-4px);
  box-shadow: 0 24px 56px rgba(0, 42, 69, 0.14);
  z-index: 2;
  animation: none;
}

.testi-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 48px rgba(0, 42, 69, 0.12);
}

.testi-card.is-active:hover {
  transform: scale(1.06) translateY(-6px);
}

.testi-quote-icon {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(45, 139, 78, 0.12);
  font-family: var(--font-serif);
}

.testi-card-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.testi-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  transition: transform 0.35s ease;
  box-shadow: 0 4px 12px rgba(0, 42, 69, 0.12);
}

.testi-card:hover .testi-avatar {
  transform: scale(1.06);
}

.testi-avatar--1 {
  background: linear-gradient(145deg, #7EB8D9, #003e62);
}
.testi-avatar--2 {
  background: linear-gradient(145deg, #2dd4bf, #0d9488);
}
.testi-avatar--3 {
  background: linear-gradient(145deg, #4A9FD4, #2E6FA8);
}
.testi-avatar--4 {
  background: linear-gradient(145deg, #4A9FD4, #2D8B4E);
}
.testi-avatar--5 {
  background: linear-gradient(145deg, #f472b6, #db2777);
}

.testi-card h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--deep-navy);
}

.testi-meta {
  margin: 0.15rem 0 0;
  font-size: 0.75rem;
  color: var(--label);
}

.testi-card blockquote {
  margin: 0.65rem 0 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-muted);
  font-style: normal;
}

.testi-verified {
  display: inline-block;
  margin-top: 0.85rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--medical-blue);
  background: rgba(45, 139, 78, 0.08);
  border: 1px solid rgba(45, 139, 78, 0.12);
}

.testi-banner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: clamp(2.5rem, 5vw, 3.5rem) auto 0;
  padding: clamp(1.5rem, 3vw, 2rem) clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-medium);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.testi-banner-rating {
  margin: 0;
  font-size: 1rem;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.testi-banner-rating strong {
  font-size: 1.25rem;
  color: var(--deep-navy);
}

.testi-banner-trust {
  margin: 0.35rem 0 0;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--medical-blue);
}

.testi-banner-quote {
  margin: 0.5rem 0 0;
  font-size: 1.0625rem;
  font-style: italic;
  color: var(--text-muted);
}


/* --- Book Appointment Section --- */
.book-section {
  position: relative;
  margin-top: clamp(3rem, 6vw, 5rem);
  padding: clamp(3.5rem, 7vw, 5.5rem) clamp(1.25rem, 3vw, 2rem);
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(170deg, #ffffff 0%, #f7f9fb 45%, #f0f3f6 100%);
  border: 1px solid rgba(45, 139, 78, 0.06);
}

.book-cursor-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 139, 78, 0.08), transparent 65%);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s ease;
  transform: translate(-50%, -50%);
}

.book-section:hover .book-cursor-glow {
  opacity: 1;
}

.book-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.book-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 25% 30%, rgba(45, 139, 78, 0.06), transparent 55%),
    radial-gradient(ellipse 50% 40% at 90% 70%, rgba(74, 159, 212, 0.05), transparent 50%);
  animation: bookBgShift 18s ease-in-out infinite alternate;
}

@keyframes bookBgShift {
  0% {
    opacity: 0.9;
  }
  100% {
    opacity: 1;
  }
}

.book-bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(55px);
}

.book-bg-glow--1 {
  width: 42%;
  height: 38%;
  top: -5%;
  right: 10%;
  background: rgba(45, 139, 78, 0.09);
}

.book-bg-glow--2 {
  width: 35%;
  height: 35%;
  bottom: 0;
  left: 5%;
  background: rgba(74, 159, 212, 0.07);
}

.book-deco {
  position: absolute;
  pointer-events: none;
}

.book-deco--plus {
  width: 1.2rem;
  height: 1.2rem;
  opacity: 0.2;
}

.book-deco--plus::before,
.book-deco--plus::after {
  content: "";
  position: absolute;
  background: var(--medical-blue);
  border-radius: 1px;
}

.book-deco--plus::before {
  width: 2px;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.book-deco--plus::after {
  width: 100%;
  height: 2px;
  top: 50%;
  transform: translateY(-50%);
}

.book-deco--1 {
  top: 14%;
  left: 8%;
  animation: bookFloat 9s ease-in-out infinite;
}

.book-deco--2 {
  bottom: 18%;
  right: 12%;
  animation: bookFloat 11s ease-in-out infinite 1s;
}

.book-deco--curve {
  top: 40%;
  right: 0;
  width: 8rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(45, 139, 78, 0.15));
}

.book-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(45, 139, 78, 0.22);
}

.book-particle--1 {
  top: 30%;
  right: 30%;
  animation: bookParticle 12s ease-in-out infinite;
}

.book-particle--2 {
  bottom: 35%;
  left: 20%;
  animation: bookParticle 14s ease-in-out infinite 1.5s;
}

@keyframes bookFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes bookParticle {
  0%,
  100% {
    opacity: 0.3;
    transform: translate(0, 0);
  }
  50% {
    opacity: 0.85;
    transform: translate(5px, -8px);
  }
}

.book-header {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
}

.book-label {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--medical-blue);
}

.book-header h2 {
  margin: 0.75rem 0 0;
  font-size: clamp(1.9rem, 3.8vw, 2.85rem);
  line-height: 1.1;
  color: var(--deep-navy);
}

.book-intro {
  margin: 1.15rem auto 0;
  max-width: 60ch;
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.book-main {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(340px, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.book-panel {
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-medium);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.book-panel-title {
  margin: 0;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--deep-navy);
}

.book-panel-desc {
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.book-form {
  margin-top: 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.book-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.book-field[hidden] {
  display: none !important;
}

.book-field-row.is-split-specialty .book-field:last-child {
  grid-column: 1 / -1;
}

.book-field label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-dark);
}

.book-field label span {
  font-weight: 400;
  color: var(--label);
}

.book-field input,
.book-field select,
.book-field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(0, 42, 69, 0.1);
  background: rgba(255, 255, 255, 0.9);
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--text-dark);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.book-field input:focus,
.book-field select:focus,
.book-field textarea:focus {
  outline: none;
  border-color: rgba(45, 139, 78, 0.4);
  box-shadow: 0 0 0 3px rgba(45, 139, 78, 0.1);
  background: #fff;
}

.book-field textarea {
  resize: vertical;
  min-height: 4.5rem;
}

.book-submit,
.book-form .btn-primary.book-submit,
.contact-form .btn-primary.contact-submit {
  width: 100%;
  margin-top: 0.35rem;
  min-height: 3.15rem;
  padding: 0.95rem 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 0;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #fff;
  background: linear-gradient(135deg, #003e62 0%, #00568a 100%);
  box-shadow: 0 10px 28px rgba(0, 62, 98, 0.28);
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.3s ease,
    background 0.3s ease,
    filter 0.3s ease;
}

/* Full-width submit buttons: kill the liquid-wave orb (looks broken when stretched) */
.book-submit::before,
.book-form .btn-primary.book-submit::before,
.contact-form .btn-primary.contact-submit::before {
  content: none;
  display: none;
}

.book-submit:hover,
.book-form .btn-primary.book-submit:hover,
.contact-form .btn-primary.contact-submit:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #002a45 0%, #003e62 100%);
  box-shadow:
    0 14px 34px rgba(0, 62, 98, 0.36),
    0 0 20px rgba(0, 62, 98, 0.12);
  filter: brightness(1.02);
}

.book-submit:active,
.book-form .btn-primary.book-submit:active,
.contact-form .btn-primary.contact-submit:active {
  transform: translateY(0);
  box-shadow: 0 8px 20px rgba(0, 62, 98, 0.28);
}

.book-submit:disabled,
.book-form .btn-primary.book-submit:disabled,
.contact-form .btn-primary.contact-submit:disabled {
  opacity: 0.72;
  cursor: wait;
  transform: none;
  filter: none;
}

.book-assurance {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
}

.book-assurance li {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
}

.book-assurance span {
  color: var(--medical-blue);
  font-weight: 700;
}

.book-visual-wrap {
  position: relative;
}

.book-visual-glow {
  position: absolute;
  inset: 5% 0 25%;
  background: radial-gradient(ellipse 70% 60% at 50% 40%, rgba(45, 139, 78, 0.12), transparent 65%);
  filter: blur(24px);
  pointer-events: none;
}

.book-illustration {
  position: relative;
  height: 280px;
  border-radius: 28px;
  background: linear-gradient(165deg, #f0f3f6, #E8EBEE);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-elevated);
  overflow: hidden;
  transition: transform 0.4s ease;
  will-change: transform;
}

.book-illus-reception {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, transparent 40%);
}

.book-illus-desk {
  position: absolute;
  bottom: 18%;
  left: 15%;
  right: 15%;
  height: 12%;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(45, 139, 78, 0.1);
  box-shadow: 0 4px 16px rgba(0, 42, 69, 0.08);
}

.book-illus-figure {
  position: absolute;
  bottom: 28%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.book-illus-head {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: linear-gradient(145deg, #fde8d8, #f0c9a8);
  box-shadow: 0 2px 8px rgba(0, 42, 69, 0.1);
}

.book-illus-coat {
  width: 3rem;
  height: 3.5rem;
  margin-top: 0.2rem;
  border-radius: 10px 10px 4px 4px;
  background: linear-gradient(180deg, #fff, #E8EBEE);
  border: 1px solid rgba(45, 139, 78, 0.12);
}

.book-illus-body {
  width: 2.75rem;
  height: 3.25rem;
  margin-top: 0.2rem;
  border-radius: 10px 10px 4px 4px;
  background: linear-gradient(180deg, #E8EBEE, #9BB5A8);
}

.book-illus-figure--doctor {
  left: 22%;
}

.book-illus-figure--patient {
  left: 48%;
}

.book-illus-screen {
  position: absolute;
  top: 15%;
  right: 12%;
  width: 35%;
  height: 28%;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(45, 139, 78, 0.12);
  padding: 0.6rem;
  box-shadow: 0 6px 20px rgba(0, 42, 69, 0.08);
}

.book-illus-screen-line {
  height: 4px;
  border-radius: 2px;
  background: rgba(45, 139, 78, 0.15);
  margin-bottom: 0.35rem;
}

.book-illus-screen-line--short {
  width: 60%;
}

.book-float {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  font-size: 0.625rem;
  font-weight: 600;
  color: var(--deep-navy);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 6px 20px rgba(0, 42, 69, 0.09);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  white-space: nowrap;
}

.book-float-icon {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 6px;
  background: rgba(45, 139, 78, 0.08);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.book-float-icon svg {
  width: 0.7rem;
  height: 0.7rem;
  stroke: var(--medical-blue);
  stroke-width: 1.6;
  fill: none;
}

.book-float--1 {
  top: 0;
  right: 0;
  animation: bookFloatBadge 5.5s ease-in-out infinite;
}

.book-float--2 {
  top: 22%;
  left: -4%;
  animation: bookFloatBadge 6s ease-in-out infinite 0.4s;
}

.book-float--3 {
  top: 38%;
  right: -6%;
  animation: bookFloatBadge 5s ease-in-out infinite 0.8s;
}

.book-float--4 {
  bottom: 42%;
  left: 0;
  animation: bookFloatBadge 6.5s ease-in-out infinite 0.2s;
}

@keyframes bookFloatBadge {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.book-contact-bar {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.book-contact-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.book-contact-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.book-contact-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 10px;
  background: rgba(45, 139, 78, 0.08);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.book-contact-icon svg {
  width: 1rem;
  height: 1rem;
  stroke: var(--medical-blue);
  stroke-width: 1.6;
  fill: none;
}

.book-contact-icon--red {
  background: rgba(169, 85, 58, 0.1);
}

.book-contact-icon--red svg {
  stroke: #A9553A;
}

.book-contact-icon--green {
  background: rgba(34, 197, 94, 0.1);
}

.book-contact-icon--green svg {
  stroke: #16a34a;
}

.book-contact-label {
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--label);
}

.book-contact-value {
  margin: 0.15rem 0 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--deep-navy);
}

.book-trust-strip {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: clamp(2.5rem, 5vw, 3.5rem) auto 0;
  padding: 1.25rem 1.5rem;
  border-radius: 24px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.book-trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: center;
}

.book-trust-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 8px;
  background: rgba(45, 139, 78, 0.08);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.book-trust-icon svg {
  width: 1rem;
  height: 1rem;
  stroke: var(--medical-blue);
  stroke-width: 1.6;
  fill: none;
}

.book-trust-icon--gold {
  background: rgba(74, 159, 212, 0.1);
}

.book-trust-icon--gold svg {
  stroke: #4A9FD4;
}

.book-trust-icon--red {
  background: rgba(169, 85, 58, 0.1);
}

.book-trust-icon--red svg {
  stroke: #A9553A;
}

.home-section {
  margin-top: clamp(2rem, 5vw, 4.2rem);
}

.section-head {
  margin-bottom: 1rem;
}

.section-kicker {
  margin: 0 0 0.45rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  text-transform: uppercase;
  color: #003E62;
}

.home-section h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  line-height: 1.1;
  color: var(--deep-navy);
}

.home-section p {
  color: #5A6D7D;
  line-height: 1.75;
}

.hospital-intro {
  background: linear-gradient(180deg, #ffffff, #f7f9fb);
  border: 1px solid rgba(0, 42, 69, 0.08);
  border-radius: 20px;
  padding: clamp(1rem, 2.6vw, 1.9rem);
  box-shadow: 0 10px 28px rgba(20, 52, 110, 0.08);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.about-card {
  border: 1px solid rgba(45, 139, 78, 0.12);
  background: #ffffff;
  border-radius: 18px;
  padding: 1.2rem 1.3rem;
}

.about-card h3,
.feature-card h3 {
  margin: 0;
  color: #002A45;
}

.about-card p {
  margin-bottom: 0;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card {
  border-radius: 18px;
  border: 1px solid rgba(0, 42, 69, 0.09);
  background: #ffffff;
  padding: 1.1rem 1rem;
  box-shadow: 0 8px 22px rgba(24, 54, 104, 0.06);
}

.feature-card p {
  margin-bottom: 0;
}

.doctors-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 2.5vw, 2rem);
}

.doctor-card .role {
  margin: 0.35rem 0 0;
  color: #003E62;
  font-weight: 700;
  font-size: 0.86rem;
}

.doctor-card .role + p {
  margin-top: 0.35rem;
}

.appointment-cta {
  border-radius: 22px;
  padding: clamp(1.2rem, 2.8vw, 2rem);
  border: 1px solid rgba(45, 139, 78, 0.16);
  background:
    radial-gradient(circle at 5% 20%, rgba(45, 139, 78, 0.08), transparent 40%),
    linear-gradient(135deg, #ffffff, #f0f3f6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.appointment-cta h2 {
  max-width: 20ch;
}

.appointment-cta p {
  margin: 0.6rem 0 0;
  max-width: 56ch;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}


/* --- Premium Footer --- */
.back-to-top {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 100;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    0 8px 28px rgba(0, 42, 69, 0.12),
    0 0 20px rgba(45, 139, 78, 0.08);
  color: var(--medical-blue);
  cursor: pointer;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px) scale(0.9);
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.back-to-top:hover {
  transform: translateY(-3px) scale(1.08);
  box-shadow:
    0 12px 36px rgba(45, 139, 78, 0.22),
    0 0 28px rgba(45, 139, 78, 0.12);
}

.back-to-top svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer {
  position: relative;
  margin-top: clamp(3rem, 6vw, 5rem);
  padding: clamp(3rem, 6vw, 4.5rem) clamp(1.25rem, 4vw, 2.5rem) clamp(1.5rem, 3vw, 2rem);
  background: linear-gradient(175deg, #f7f9fb 0%, #f0f3f6 50%, #E8EBEE 100%);
  border-top: 1px solid rgba(45, 139, 78, 0.08);
  overflow: hidden;
}

.foot-cursor-glow {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 139, 78, 0.06), transparent 65%);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s ease;
  transform: translate(-50%, -50%);
}

.site-footer:hover .foot-cursor-glow {
  opacity: 1;
}

.foot-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.foot-leaf-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.foot-leaf {
  position: absolute;
  user-select: none;
  animation: leafDrift 18s ease-in-out infinite;
}

.foot-leaf--tl {
  --leaf-base: rotate(142deg) scaleX(-1);
  width: clamp(8rem, 14vw, 13rem);
  top: 0;
  left: 0;
  transform-origin: top left;
  transform: var(--leaf-base);
  filter: blur(2px) saturate(0.75);
  opacity: 0.34;
  animation-duration: 20s;
  animation-delay: -5s;
}

.foot-leaf--tr {
  --leaf-base: rotate(148deg);
  width: clamp(10rem, 17vw, 16rem);
  top: -9%;
  right: -5%;
  transform: var(--leaf-base);
  filter: blur(3px) brightness(0.9) saturate(1.05);
  opacity: 0.38;
  animation-duration: 22s;
  animation-delay: -8s;
}

.foot-leaf--bl {
  --leaf-base: rotate(28deg);
  width: clamp(7rem, 12vw, 11rem);
  bottom: -6%;
  left: 1%;
  transform: var(--leaf-base);
  filter: blur(4px) saturate(0.68);
  opacity: 0.26;
  animation-duration: 21s;
  animation-delay: -11s;
}

.foot-leaf--br {
  --leaf-base: rotate(212deg) scaleX(-1);
  width: clamp(9rem, 15vw, 14rem);
  bottom: -8%;
  right: -3%;
  transform: var(--leaf-base);
  filter: blur(2px) brightness(0.88) saturate(0.95);
  opacity: 0.3;
  animation-duration: 19s;
  animation-delay: -3s;
}

@media (max-width: 768px) {
  .foot-leaf--tl,
  .foot-leaf--bl {
    width: clamp(6rem, 22vw, 9rem);
    opacity: 0.22;
  }

  .foot-leaf--tr,
  .foot-leaf--br {
    width: clamp(7rem, 24vw, 11rem);
    opacity: 0.24;
  }
}

@media (prefers-reduced-motion: reduce) {
  .foot-leaf {
    animation: none;
  }
}

.foot-bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.foot-bg-glow--1 {
  width: 45%;
  height: 40%;
  top: -10%;
  left: 10%;
  background: rgba(45, 139, 78, 0.08);
}

.foot-bg-glow--2 {
  width: 38%;
  height: 35%;
  bottom: -5%;
  right: 8%;
  background: rgba(74, 159, 212, 0.06);
}

.foot-bg-wave {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), transparent);
}

.foot-deco {
  position: absolute;
  pointer-events: none;
}

.foot-deco--plus {
  width: 1.1rem;
  height: 1.1rem;
  opacity: 0.18;
}

.foot-deco--plus::before,
.foot-deco--plus::after {
  content: "";
  position: absolute;
  background: var(--medical-blue);
  border-radius: 1px;
}

.foot-deco--plus::before {
  width: 2px;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.foot-deco--plus::after {
  width: 100%;
  height: 2px;
  top: 50%;
  transform: translateY(-50%);
}

.foot-deco--1 {
  top: 20%;
  right: 15%;
  animation: footFloat 10s ease-in-out infinite;
}

.foot-deco--2 {
  bottom: 30%;
  left: 8%;
  animation: footFloat 12s ease-in-out infinite 1s;
}

.foot-deco--line {
  top: 50%;
  right: 5%;
  width: 6rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(45, 139, 78, 0.15));
}

.foot-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(45, 139, 78, 0.2);
}

.foot-particle--1 {
  top: 35%;
  left: 40%;
  animation: footParticle 14s ease-in-out infinite;
}

.foot-particle--2 {
  bottom: 40%;
  right: 35%;
  animation: footParticle 16s ease-in-out infinite 2s;
}

.foot-glass-shape {
  display: none;
}

@keyframes footFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes footParticle {
  0%,
  100% {
    opacity: 0.25;
    transform: translate(0, 0);
  }
  50% {
    opacity: 0.7;
    transform: translate(4px, -8px);
  }
}

.footer-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1.2fr;
  gap: clamp(2rem, 4vw, 3rem);
}

.footer-heading {
  margin: 0 0 1.15rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--deep-navy);
}

.footer-brand {
  display: block;
  text-decoration: none;
  color: inherit;
}

.footer-brand-logo {
  display: block;
  width: auto;
  height: clamp(2.85rem, 5.5vw, 3.5rem);
  max-width: min(100%, 16rem);
  object-fit: contain;
  object-position: left center;
  background: transparent;
}

.footer-brand-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(45, 139, 78, 0.12);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-soft);
}

.footer-brand-icon svg {
  width: 1.2rem;
  height: 1.2rem;
  stroke: var(--medical-blue);
  stroke-width: 1.8;
  fill: none;
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.footer-brand-text strong {
  font-size: 1.5rem;
  color: var(--medical-blue);
}

.footer-brand-text small {
  margin-top: 0.2rem;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--label);
}

.footer-desc {
  margin: 1rem 0 0;
  max-width: 32ch;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.footer-desc-short {
  display: none;
}

.footer-social {
  margin-top: 1.35rem;
  display: flex;
  gap: 0.65rem;
}

.footer-social-link {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--medical-blue);
  text-decoration: none;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.footer-social-link svg {
  width: 1rem;
  height: 1rem;
  stroke: currentColor;
  stroke-width: 1.6;
  fill: none;
}

.footer-social-link:hover {
  transform: translateY(-4px) scale(1.08);
  background: #fff;
  box-shadow:
    0 10px 28px rgba(45, 139, 78, 0.18),
    0 0 16px rgba(45, 139, 78, 0.1);
}

.footer-links,
.footer-dept-list,
.footer-contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li + li,
.footer-dept-list li + li {
  margin-top: 0.55rem;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  position: relative;
  transition: color 0.25s ease, gap 0.25s ease;
}

.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1.5px;
  background: var(--medical-blue);
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: var(--medical-blue);
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-dept-list a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer-dept-list a:hover {
  color: var(--medical-blue);
  transform: translateX(4px);
}

.footer-dept-icon {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(45, 139, 78, 0.08);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: background 0.25s ease;
}

.footer-dept-icon svg {
  width: 0.85rem;
  height: 0.85rem;
  stroke: var(--medical-blue);
  stroke-width: 1.6;
  fill: none;
}

.footer-dept-list a:hover .footer-dept-icon {
  background: rgba(45, 139, 78, 0.08);
}

.footer-contact-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 0.75rem;
  row-gap: 0.15rem;
  align-items: start;
  margin-bottom: 0.85rem;
}

.footer-contact-top {
  display: contents;
}

.footer-contact-icon {
  grid-column: 1;
  grid-row: 1 / span 2;
  width: 2rem;
  height: 2rem;
  border-radius: 10px;
  background: none;
  border: none;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.footer-contact-label {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--label);
}

.footer-contact-value {
  grid-column: 2;
  grid-row: 2;
  margin: 0.15rem 0 0;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.45;
}

.footer-contact-icon svg {
  width: 0.95rem;
  height: 0.95rem;
  stroke: var(--medical-blue);
  stroke-width: 1.6;
  fill: none;
}

.footer-contact-icon--red svg {
  stroke: #A9553A;
}

.footer-contact-icon--green svg {
  stroke: #16a34a;
}

.footer-bottom {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: clamp(1.25rem, 2.5vw, 1.75rem);
  border-top: 1px solid rgba(45, 139, 78, 0.1);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-copy {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.footer-legal {
  margin-top: 0.65rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
}

.footer-legal a {
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-legal a:hover {
  color: var(--medical-blue);
}

.footer-tagline {
  margin: 0;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.footer-tagline span {
  color: #A9553A;
}

/* ==========================================================================
   Legal info modal (footer links only)
   ========================================================================== */

.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.legal-modal.is-open {
  display: flex;
}

.legal-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(36, 47, 32, 0.48);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.legal-modal-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 640px);
  max-height: min(88vh, 900px);
  overflow: auto;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-xl);
  background: linear-gradient(155deg, #F7F9FB 0%, #F0F3F6 52%, #F0F3F6 100%);
  border: 1px solid rgba(45, 139, 78, 0.12);
  box-shadow: 0 28px 64px rgba(36, 47, 32, 0.22);
}

.legal-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(45, 139, 78, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--forest-green);
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.legal-modal-close:hover {
  background: #fff;
  transform: scale(1.04);
}

.legal-modal-close svg {
  width: 1.1rem;
  height: 1.1rem;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}

.legal-info-header {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding-right: 2rem;
}

.legal-info-header .abt-kicker {
  justify-content: center;
}

.legal-info-header h2 {
  margin: 0.9rem 0 0;
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  font-weight: 600;
  line-height: 1.12;
  color: var(--forest-green);
}

.legal-info-intro {
  margin: 1rem auto 0;
  max-width: 42rem;
  font-size: 0.96rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.legal-info-grid {
  display: block;
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
}

.legal-card {
  display: none;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
}

.legal-card.is-active {
  display: block;
  border-color: rgba(197, 160, 78, 0.35);
  box-shadow:
    0 16px 36px rgba(0, 62, 98, 0.08),
    0 0 0 1px rgba(197, 160, 78, 0.14);
}

.legal-card h3 {
  display: none;
}

.legal-card p {
  margin: 0.85rem 0 0;
  font-size: 0.93rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.legal-card p:first-of-type {
  margin-top: 0;
}

.legal-sitemap-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 1rem;
  margin-top: 1rem;
}

.legal-sitemap-links a {
  color: var(--forest-green);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.25s ease, transform 0.25s ease;
}

.legal-sitemap-links a:hover {
  color: var(--medical-blue);
  transform: translateX(2px);
}

body.legal-modal-open {
  overflow: hidden;
}

@media (max-width: 760px) {
  .legal-info-grid,
  .legal-sitemap-links {
    grid-template-columns: 1fr;
  }
}


/* --- About Page --- */
.abt-hero {
  position: relative;
  margin-top: 1rem;
  padding: clamp(2.75rem, 6vw, 4.5rem) clamp(1.25rem, 3vw, 2rem);
  border-radius: var(--radius-xl);
  overflow: hidden;
  text-align: center;
  background: linear-gradient(165deg, #f7f9fb 0%, #ffffff 50%, #f0f3f6 100%);
  border: 1px solid rgba(45, 139, 78, 0.08);
}

.abt-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.abt-hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
}

.abt-hero-glow--1 {
  width: 50%;
  height: 45%;
  top: -15%;
  left: 10%;
  background: rgba(45, 139, 78, 0.07);
}

.abt-hero-glow--2 {
  width: 40%;
  height: 40%;
  bottom: -10%;
  right: 8%;
  background: rgba(74, 159, 212, 0.06);
}

.abt-hero-label {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--medical-blue);
}

.abt-hero h1 {
  position: relative;
  z-index: 1;
  margin: 0.85rem auto 0;
  max-width: 16ch;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--deep-navy);
}

.abt-hero h1 span {
  display: block;
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(105deg, #003E62 0%, #2D8B4E 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.abt-hero-lead {
  position: relative;
  z-index: 1;
  margin: 1.15rem auto 0;
  max-width: 52ch;
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.abt-intro-section {
  margin-top: clamp(2rem, 4vw, 3rem);
}

.abt-section-header {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto clamp(1.5rem, 3vw, 2.25rem);
  text-align: center;
}

.abt-section-header h2.about-label {
  margin: 0;
}

.abt-section-header h2:not(.about-label) {
  margin: 0.75rem 0 0;
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3.8vw, 2.75rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--deep-navy);
}

.abt-section-intro {
  margin: 1.15rem auto 0;
  max-width: 60ch;
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.abt-vm-section {
  position: relative;
  margin-top: clamp(2rem, 4vw, 3rem);
  padding: clamp(3rem, 6vw, 4.5rem) clamp(1.25rem, 3vw, 2rem);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fb 55%, #f0f3f6 100%);
  border: 1px solid rgba(45, 139, 78, 0.06);
}

.abt-vm-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.abt-vm-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.abt-vm-glow--1 {
  width: 35%;
  height: 35%;
  top: 5%;
  right: 5%;
  background: rgba(45, 139, 78, 0.06);
}

.abt-vm-glow--2 {
  width: 30%;
  height: 30%;
  bottom: 10%;
  left: 8%;
  background: rgba(74, 159, 212, 0.05);
}

.abt-vm-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.25rem, 2.5vw, 2rem);
  max-width: 1100px;
  margin: 0 auto;
}

.abt-vm-card {
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease;
}

.abt-vm-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-medium);
}

.abt-vm-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 14px;
  background: rgba(45, 139, 78, 0.08);
  display: grid;
  place-items: center;
  margin-bottom: 1.15rem;
}

.abt-vm-icon svg {
  width: 1.35rem;
  height: 1.35rem;
  stroke: var(--medical-blue);
  stroke-width: 1.6;
  fill: none;
}

.abt-vm-icon--teal {
  background: rgba(74, 159, 212, 0.1);
}

.abt-vm-icon--teal svg {
  stroke: var(--teal);
}

.abt-vm-card h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.025em;
  color: var(--deep-navy);
}

.abt-vm-card > p {
  margin: 0.85rem 0 0;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.abt-vm-list {
  margin: 1.15rem 0 0;
  padding: 0;
  list-style: none;
}

.abt-vm-list li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.6;
}

.abt-vm-list li + li {
  margin-top: 0.55rem;
}

.abt-vm-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--medical-blue);
}

.abt-history-section {
  position: relative;
  margin-top: clamp(2rem, 4vw, 3rem);
  padding: clamp(3rem, 6vw, 4.5rem) clamp(1.25rem, 3vw, 2rem);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(165deg, #f7f9fb 0%, #ffffff 45%, #f0f3f6 100%);
  border: 1px solid rgba(45, 139, 78, 0.08);
}

.abt-history-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.abt-history-glow {
  position: absolute;
  width: 45%;
  height: 40%;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(45, 139, 78, 0.05);
  filter: blur(70px);
}

.abt-timeline {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.abt-timeline::before {
  content: "";
  position: absolute;
  left: 4.5rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 2px;
  background: linear-gradient(180deg, rgba(45, 139, 78, 0.15), rgba(74, 159, 212, 0.15));
  border-radius: 2px;
}

.abt-timeline-item {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 1.25rem;
  align-items: start;
}

.abt-timeline-item + .abt-timeline-item {
  margin-top: 1.5rem;
}

.abt-timeline-year {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--medical-blue);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(45, 139, 78, 0.12);
  box-shadow: var(--shadow-soft);
}

.abt-timeline-card {
  padding: 1.25rem 1.35rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.abt-timeline-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-medium);
}

.abt-timeline-card h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: -0.025em;
  color: var(--deep-navy);
}

.abt-timeline-card p {
  margin: 0.55rem 0 0;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--text-muted);
}


/* --- Departments Page & Detail --- */
.departments-page-section {
  margin-top: clamp(2rem, 4vw, 3rem);
}

.dept-breadcrumb {
  margin: 1rem 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.dept-breadcrumb a {
  color: var(--medical-blue);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.dept-breadcrumb a:hover {
  opacity: 0.75;
}

.dept-detail-banner {
  position: relative;
  margin-top: 1.25rem;
  padding: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #1a2418;
  border: 1px solid rgba(45, 139, 78, 0.08);
}

.dept-detail-banner--hero {
  min-height: clamp(22rem, 48vw, 32rem);
  display: flex;
  align-items: flex-end;
}

.dept-detail-banner-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.dept-detail-banner-glow {
  display: none;
}

.dept-detail-banner--hero .dept-detail-banner-media {
  position: absolute;
  inset: 0;
  border-radius: 0;
  aspect-ratio: auto;
  box-shadow: none;
  max-width: none;
  margin: 0;
  overflow: hidden;
  background: none;
  border: 0;
}

.dept-detail-banner--hero .dept-detail-banner-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  padding: 0;
  transform: none;
}

.dept-detail-banner-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(26, 36, 24, 0.82) 0%, rgba(26, 36, 24, 0.55) 42%, rgba(26, 36, 24, 0.28) 100%),
    linear-gradient(180deg, rgba(26, 36, 24, 0.25) 0%, rgba(26, 36, 24, 0.55) 100%);
  pointer-events: none;
}

.dept-detail-banner-inner {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.35rem, 4vw, 2.5rem);
}

.dept-detail-banner--hero .dept-detail-banner-content {
  max-width: 36rem;
  text-align: left;
}

.dept-detail-banner--hero .dept-label {
  color: rgba(239, 230, 215, 0.92);
}

.dept-detail-banner--hero .dept-label::before,
.dept-detail-banner--hero .dept-label::after {
  background: linear-gradient(90deg, transparent, rgba(239, 230, 215, 0.55));
}

.dept-detail-banner--hero .dept-label::after {
  background: linear-gradient(90deg, rgba(239, 230, 215, 0.55), transparent);
}

.dept-detail-banner-content h1 {
  margin: 0.65rem 0 0;
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.5vw, 3.35rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: #F7F9FB;
}

.dept-detail-banner-lead {
  margin: 1rem 0 0;
  max-width: 42ch;
  font-size: 1.02rem;
  line-height: 1.75;
  color: rgba(253, 251, 247, 0.86);
}

.dept-detail-banner-content .btn-primary {
  margin-top: 1.5rem;
}

.dept-detail-banner-media {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-medium);
}

.dept-detail-banner-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dept-detail-banner-media--logo {
  aspect-ratio: 1 / 1;
  max-width: 280px;
  margin-left: auto;
  background: linear-gradient(145deg, #F7F9FB, #f0f3f6);
  box-shadow: 0 12px 32px rgba(0, 62, 98, 0.08);
  border: 1px solid rgba(45, 139, 78, 0.1);
}

.dept-detail-banner-media--logo img,
.dept-detail-banner-media .dept-logo {
  object-fit: contain;
  object-position: center;
  padding: 1.5rem;
  background: transparent;
}

.dept-detail-banner-media .dept-card-overlay {
  position: absolute;
  inset: 0;
}

.dept-detail-section {
  margin-top: clamp(0.85rem, 1.8vw, 1.25rem);
  padding: clamp(1.35rem, 2.8vw, 2rem) clamp(1.25rem, 3vw, 2rem);
  border-radius: var(--radius-xl);
  background: #fff;
  border: 1px solid rgba(45, 139, 78, 0.06);
}

.dept-detail-section--alt {
  background: linear-gradient(180deg, #f7f9fb 0%, #ffffff 100%);
}

.dept-detail-section--book {
  background: linear-gradient(165deg, #f7f9fb 0%, #ffffff 45%, #f0f3f6 100%);
}

.dept-detail-section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.dept-detail-section-header {
  margin-bottom: 1rem;
}

.dept-detail-section-header--center {
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.dept-detail-section-header--center .abt-kicker {
  width: 100%;
  justify-content: center;
}

.dept-detail-section-header--center .abt-kicker-label {
  justify-content: center;
}

.dept-detail-section-header--center .abt-kicker-line:first-child {
  background: linear-gradient(90deg, transparent, rgba(45, 139, 78, 0.45));
}

.dept-detail-section-header--center .abt-kicker-line:last-child {
  background: linear-gradient(90deg, rgba(45, 139, 78, 0.45), transparent);
}

.dept-detail-section-header--center .dept-detail-section-intro {
  margin-left: auto;
  margin-right: auto;
}

.dept-detail-section-header h2 {
  margin: 0.65rem 0 0;
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--deep-navy);
}

.dept-detail-section-intro {
  margin: 0.85rem 0 0;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.dept-detail-section-intro--follow {
  margin-top: 0.75rem;
}

.dept-detail-phone-list {
  list-style: none;
  margin: 0.65rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}

.dept-detail-phone-list a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--deep-navy);
  text-decoration: none;
  transition: color 0.2s ease;
}

.dept-detail-phone-list a::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-accent);
  opacity: 0.7;
  flex-shrink: 0;
}

.dept-detail-phone-list a:hover {
  color: var(--gold-accent);
}

.dept-detail-description {
  margin: 0;
  max-width: 72ch;
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.dept-detail-services {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem 1.5rem;
}

.dept-detail-service-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(45, 139, 78, 0.08);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.5;
}

.dept-detail-service-icon {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 8px;
  background: rgba(45, 139, 78, 0.08);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.dept-detail-service-icon svg {
  width: 0.9rem;
  height: 0.9rem;
  stroke: var(--medical-blue);
  stroke-width: 2;
  fill: none;
}

.dept-detail-doctors {
  margin-top: 0.5rem;
}

.dept-detail-appointment-wrap {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(340px, 1.1fr);
  gap: clamp(1.75rem, 3.5vw, 2.75rem);
  align-items: center;
}

.dept-detail-appointment-wrap .dept-detail-section-header {
  margin-bottom: 0;
  max-width: 28rem;
}

.dept-detail-appointment-wrap .book-label {
  justify-content: flex-start;
  width: auto;
}

.dept-detail-appointment-wrap .dept-detail-section-header h2 {
  margin-top: 0.85rem;
}

.dept-detail-appointment-wrap .dept-detail-phone-list {
  margin-top: 0.85rem;
}

.dept-detail-book-panel {
  border-radius: 22px;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(45, 139, 78, 0.12);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  width: 100%;
}

.dept-detail-empty {
  margin-top: 3rem;
  text-align: center;
  padding: 3rem 1.5rem;
}

.dept-detail-empty h1 {
  font-family: var(--font-serif);
  color: var(--deep-navy);
}

.dept-detail-empty p {
  color: var(--text-muted);
  margin: 0.75rem 0 1.5rem;
}

a.spec-book-btn {
  text-decoration: none;
  text-align: center;
  justify-content: center;
}

.footer-tagline a {
  color: var(--medical-blue);
  text-decoration: none;
}

.footer-tagline a:hover {
  text-decoration: underline;
}

/* --- Doctors / Specialists Pages --- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.doc-hero {
  position: relative;
  margin-top: 1rem;
  padding: clamp(2.75rem, 6vw, 4.5rem) clamp(1.25rem, 3vw, 2rem);
  border-radius: var(--radius-xl);
  overflow: hidden;
  text-align: center;
  background: linear-gradient(165deg, #f7f9fb 0%, #ffffff 50%, #f0f3f6 100%);
  border: 1px solid rgba(45, 139, 78, 0.08);
}

.doc-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.doc-hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
}

.doc-hero-glow--1 {
  width: 45%;
  height: 40%;
  top: -10%;
  left: 15%;
  background: rgba(45, 139, 78, 0.07);
}

.doc-hero-glow--2 {
  width: 38%;
  height: 35%;
  bottom: -5%;
  right: 10%;
  background: rgba(74, 159, 212, 0.06);
}

.doc-hero h1 {
  position: relative;
  z-index: 1;
  margin: 0.85rem auto 0;
  max-width: 14ch;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--deep-navy);
}

.doc-hero h1 span {
  display: block;
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(105deg, #003E62 0%, #2D8B4E 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.doc-hero-lead {
  position: relative;
  z-index: 1;
  margin: 1.15rem auto 0;
  max-width: 52ch;
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.doctors-page-section {
  margin-top: clamp(2rem, 4vw, 3rem);
}

.doc-toolbar {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  max-width: 900px;
  margin: 0 auto 1.25rem;
  padding: 1rem 1.15rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(45, 139, 78, 0.1);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.doc-search-wrap {
  flex: 1 1 280px;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.85rem;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(0, 42, 69, 0.08);
}

.doc-search-wrap svg {
  width: 1.1rem;
  height: 1.1rem;
  stroke: var(--label);
  stroke-width: 1.8;
  fill: none;
  flex-shrink: 0;
}

.doc-search-wrap input {
  width: 100%;
  border: 0;
  background: transparent;
  font-family: inherit;
  font-size: 0.875rem;
  color: var(--text-dark);
  outline: none;
}

.doc-filter-wrap select {
  min-width: 200px;
  padding: 0.65rem 0.85rem;
  border-radius: 12px;
  border: 1px solid rgba(0, 42, 69, 0.08);
  background: #fff;
  font-family: inherit;
  font-size: 0.875rem;
  color: var(--text-dark);
  cursor: pointer;
}

.doc-results-count {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto 1.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--label);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.doc-empty {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  color: var(--text-muted);
}

.doc-featured {
  margin-bottom: 2rem;
}

.spec-card-actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.spec-card-actions--featured {
  margin-top: 1.5rem;
}

.spec-view-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.9rem;
  border-radius: 10px;
  border: 1px solid rgba(45, 139, 78, 0.2);
  background: rgba(45, 139, 78, 0.04);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--medical-blue);
  text-decoration: none;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.spec-view-btn:hover {
  background: rgba(45, 139, 78, 0.1);
  border-color: rgba(45, 139, 78, 0.35);
}

.spec-card-actions .spec-book-btn {
  opacity: 1;
  transform: none;
  flex: 1 1 auto;
  min-width: 0;
}

.doc-cta-banner {
  position: relative;
  z-index: 2;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(45, 139, 78, 0.08), rgba(74, 159, 212, 0.06));
  border: 1px solid rgba(45, 139, 78, 0.12);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.doc-cta-banner h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 400;
  color: var(--deep-navy);
}

.doc-cta-banner p {
  margin: 0.4rem 0 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.doc-breadcrumb {
  margin: 1rem 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.doc-breadcrumb a {
  color: var(--medical-blue);
  text-decoration: none;
}

.doc-profile-banner {
  margin-top: 1.25rem;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-xl);
  background: linear-gradient(165deg, #f7f9fb 0%, #ffffff 50%, #f0f3f6 100%);
  border: 1px solid rgba(45, 139, 78, 0.08);
}

.doc-profile-banner-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.doc-profile-portrait {
  width: clamp(140px, 18vw, 180px);
  height: clamp(140px, 18vw, 180px);
  border-radius: 24px;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-medium);
}

.doc-profile-info h1 {
  margin: 0.5rem 0 0;
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--deep-navy);
}

.doc-profile-role {
  margin: 0.5rem 0 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--medical-blue);
}

.doc-profile-dept {
  margin: 0.65rem 0 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.doc-profile-dept strong {
  color: var(--text-dark);
}

.doc-profile-actions {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.doc-profile-section {
  margin-top: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border-radius: var(--radius-xl);
  background: #fff;
  border: 1px solid rgba(45, 139, 78, 0.06);
}

.doc-profile-section--alt {
  background: linear-gradient(180deg, #f7f9fb 0%, #ffffff 100%);
}

.doc-profile-section--book {
  background: linear-gradient(165deg, #f7f9fb 0%, #ffffff 45%, #f0f3f6 100%);
}

.doc-profile-section-inner {
  max-width: 900px;
  margin: 0 auto;
}

.doc-profile-section h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  color: var(--deep-navy);
}

.doc-profile-bio {
  margin: 1rem 0 0;
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.doc-profile-details {
  margin: 1.5rem 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.doc-profile-details dt {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--label);
}

.doc-profile-details dd {
  margin: 0.25rem 0 0;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-dark);
}

.doc-profile-expertise {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.doc-profile-expertise li {
  padding: 0.75rem 1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(45, 139, 78, 0.08);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark);
}

.doc-profile-section-intro {
  margin: 0.65rem 0 0;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.doc-profile-appointment-wrap {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(340px, 1.1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
}

.doc-detail-book-panel {
  border-radius: 20px;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-soft);
}

.doc-detail-empty {
  margin-top: 3rem;
  text-align: center;
  padding: 3rem 1.5rem;
}

/* --- Contact Page --- */

.contact-hero {
  position: relative;
  margin-top: 1rem;
  padding: clamp(2.75rem, 6vw, 4.5rem) clamp(1.25rem, 3vw, 2rem);
  border-radius: var(--radius-xl);
  overflow: hidden;
  text-align: center;
  background: linear-gradient(165deg, #f7f9fb 0%, #ffffff 50%, #f0f3f6 100%);
  border: 1px solid rgba(45, 139, 78, 0.08);
}

.contact-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.contact-hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
}

.contact-hero-glow--1 {
  width: 45%;
  height: 40%;
  top: -10%;
  left: 15%;
  background: rgba(45, 139, 78, 0.07);
}

.contact-hero-glow--2 {
  width: 38%;
  height: 35%;
  bottom: -5%;
  right: 10%;
  background: rgba(74, 159, 212, 0.06);
}

.contact-hero h1 {
  position: relative;
  z-index: 1;
  margin: 0.85rem auto 0;
  max-width: 14ch;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--deep-navy);
}

.contact-hero h1 span {
  display: block;
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(105deg, #003E62 0%, #2D8B4E 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.contact-hero-lead {
  position: relative;
  z-index: 1;
  margin: 1.15rem auto 0;
  max-width: 52ch;
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.contact-emergency {
  margin-top: clamp(1.25rem, 2.5vw, 1.75rem);
}

.contact-emergency-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  padding: clamp(1rem, 2.5vw, 1.35rem) clamp(1.25rem, 3vw, 1.75rem);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.08), rgba(169, 85, 58, 0.05));
  border: 1px solid rgba(220, 38, 38, 0.18);
}

.contact-emergency-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(220, 38, 38, 0.12);
  color: #8F4630;
  flex-shrink: 0;
}

.contact-emergency-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.75;
}

.contact-emergency-label {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8F4630;
}

.contact-emergency-text {
  margin: 0.2rem 0 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.contact-emergency-inner > div {
  flex: 1;
  min-width: 180px;
}

.contact-emergency-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  background: #8F4630;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease;
}

.contact-emergency-btn:hover {
  background: #b91c1c;
  transform: translateY(-1px);
}

.contact-main-section {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}

.contact-section-header {
  text-align: center;
  max-width: 52ch;
  margin: 0 auto clamp(2rem, 4vw, 2.75rem);
}

.contact-section-header h2 {
  margin: 0.65rem 0 0;
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 400;
  color: var(--deep-navy);
}

.contact-section-intro {
  margin: 0.85rem 0 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.contact-main-grid {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(340px, 1.1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
}

.contact-info-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1rem;
}

.contact-info-card {
  display: flex;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(45, 139, 78, 0.08);
  box-shadow: var(--shadow-soft);
}

.contact-info-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(45, 139, 78, 0.08);
  color: var(--medical-blue);
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 1.75;
}

.contact-info-card h3 {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--deep-navy);
}

.contact-info-card p {
  margin: 0.35rem 0 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.contact-info-card a {
  color: var(--medical-blue);
  text-decoration: none;
  font-weight: 500;
}

.contact-info-card a:hover {
  text-decoration: underline;
}

.contact-info-sub {
  font-size: 0.8125rem !important;
  color: var(--text-muted);
  opacity: 0.85;
}

.contact-map-wrap {
  margin-top: 1.5rem;
}

.contact-map-title {
  margin: 0 0 0.85rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--deep-navy);
}

.contact-map {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(45, 139, 78, 0.1);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 16 / 10;
  background: #E8EBEE;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.contact-form-panel {
  border-radius: 22px;
  padding: clamp(1.35rem, 3vw, 1.85rem);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-soft);
}

.contact-form-title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 400;
  color: var(--deep-navy);
}

.contact-form-desc {
  margin: 0.5rem 0 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.contact-optional {
  font-weight: 400;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.contact-form {
  margin-top: 0.25rem;
}

.contact-cta {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}

.contact-cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(45, 139, 78, 0.08), rgba(74, 159, 212, 0.06));
  border: 1px solid rgba(45, 139, 78, 0.12);
}

.contact-cta-inner h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 400;
  color: var(--deep-navy);
}

.contact-cta-inner p {
  margin: 0.4rem 0 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.contact-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.contact-cta-actions .btn-primary svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.75;
}

@media (max-width: 1180px) {
  .hero-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-left {
    order: 1;
  }

  .hero-right {
    order: 2;
    justify-content: center;
  }

  .hero-bg-accent {
    inset: 26% -15% 18% 20%;
  }

  .about-main {
    grid-template-columns: 1fr;
  }

  .about-visual {
    order: -1;
    min-height: 360px;
    max-width: 520px;
    margin: 0 auto;
  }

  .about-float-card--1 {
    left: 0;
  }

  .about-float-card--2 {
    right: 0;
  }

  .about-float-card--3 {
    left: 0;
  }

  .about-stats-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }

  .about-stat-divider {
    display: none;
  }

  .about-stat {
    flex: 0 1 calc(50% - 1rem);
  }

  .dept-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dept-featured {
    grid-template-columns: 1fr;
  }

  .dept-featured-visual {
    max-width: 520px;
    margin: 0 auto;
  }

  .spec-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .spec-featured {
    grid-template-columns: 1fr;
  }

  .spec-featured-visual {
    max-width: 400px;
    margin: 0 auto;
  }

  .why-main {
    grid-template-columns: 1fr;
  }

  .why-visual {
    order: -1;
    max-width: 520px;
    margin: 0 auto;
    min-height: 420px;
  }

  .why-card--offset-1,
  .why-card--offset-2 {
    transform: none;
  }

  .why-card--offset-1:hover,
  .why-card--offset-2:hover {
    transform: translateY(-6px);
  }

  .impact-main {
    grid-template-columns: 1fr;
  }

  .impact-dashboard-wrap {
    max-width: 420px;
    margin: 0 auto;
  }

  .testi-main {
    grid-template-columns: 1fr;
  }

  .testi-carousel-wrap {
    order: -1;
  }

  .book-main {
    grid-template-columns: 1fr;
  }

  .book-trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-col--brand,
  .footer-col:last-child {
    grid-column: 1 / -1;
  }

  .abt-vm-grid {
    grid-template-columns: 1fr;
  }

  .dept-detail-banner--hero {
    min-height: clamp(20rem, 70vw, 28rem);
  }

  .dept-detail-banner--hero .dept-detail-banner-media {
    max-width: none;
    margin: 0;
    order: 0;
  }

  .dept-detail-banner--hero .dept-detail-banner-content {
    text-align: left;
    max-width: 34rem;
  }

  .dept-detail-banner--hero .dept-detail-banner-content .dept-label {
    justify-content: flex-start;
  }

  .dept-detail-banner--hero .dept-detail-banner-lead {
    margin-left: 0;
    margin-right: 0;
  }

  .dept-detail-banner--hero .btn-primary {
    margin-left: 0;
  }

  .dept-detail-banner-inner:not(:has(+ *)) {
    grid-template-columns: 1fr;
  }

  .dept-detail-appointment-wrap {
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 1.5rem;
  }

  .dept-detail-appointment-wrap .dept-detail-section-header {
    max-width: none;
    text-align: center;
  }

  .dept-detail-appointment-wrap .book-label {
    justify-content: center;
    width: 100%;
  }

  .dept-detail-appointment-wrap .dept-detail-phone-list {
    justify-items: center;
  }

  .dept-detail-appointment-wrap .dept-detail-phone-list a {
    justify-content: center;
  }

  .dept-detail-services {
    grid-template-columns: 1fr;
  }

  .doc-profile-banner-inner,
  .doc-profile-appointment-wrap {
    grid-template-columns: 1fr;
  }

  .doc-profile-expertise,
  .doc-profile-details {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }

  .page-shell {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .top-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    flex-wrap: nowrap;
    gap: 0.5rem;
    margin-left: -1.25rem;
    margin-right: -1.25rem;
    width: calc(100% + 2.5rem);
    padding: 0 1.25rem;
    min-height: 4rem;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }

  .nav-menu-btn {
    display: grid;
  }

  .nav-links {
    display: none;
  }

  .nav-mode-btn {
    display: none;
  }

  .brand-text small {
    display: none;
  }

  .brand-text strong {
    font-size: 1.25rem;
  }

  .book-btn {
    padding: 0.5rem 0.75rem;
    font-size: 0.8125rem;
    white-space: nowrap;
  }

  .book-btn svg {
    display: none;
  }

  /* Keep nav book button icon-only on mobile (override above) */
  .top-nav .book-btn {
    width: 2.55rem !important;
    height: 2.55rem !important;
    padding: 0 !important;
    font-size: 0 !important;
    gap: 0 !important;
  }

  .top-nav .book-btn svg {
    display: block !important;
    width: 1.15rem !important;
    height: 1.15rem !important;
    margin: 0 !important;
  }

  .hero-section {
    padding-top: 1.5rem;
    text-align: center;
  }

  .hero-left {
    align-items: center;
    max-width: none;
    margin: 0 auto;
  }

  .hero-left h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    letter-spacing: -0.01em;
    max-width: none;
  }

  .hero-copy {
    max-width: none;
    font-size: 1rem;
  }

  .eyebrow {
    margin-left: auto;
    margin-right: auto;
  }

  .feature-row {
    justify-content: center;
  }

  .hero-cta-row {
    flex-direction: column;
    width: 100%;
    max-width: 24rem;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta-row .btn-primary,
  .hero-cta-row .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .hero-trust-row {
    justify-content: center;
  }

  .hero-right {
    width: 100%;
  }

  .stats-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-content,
  .dept-header,
  .spec-header,
  .why-content,
  .impact-content,
  .testi-content,
  .book-content,
  .home-section-header {
    text-align: center;
  }

  .about-cta,
  .dept-header-cta,
  .spec-header-cta {
    justify-content: center;
  }

  .spec-card-actions,
  .spec-card-actions--featured {
    flex-direction: column;
    width: 100%;
  }

  .spec-view-btn,
  .spec-card-actions .spec-book-btn {
    width: 100%;
    justify-content: center;
  }

  .book-submit,
  .contact-submit {
    width: 100%;
  }

  .contact-emergency-inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .contact-emergency-btn {
    width: 100%;
  }

  .contact-cta-actions {
    width: 100%;
    flex-direction: column;
  }

  .contact-cta-actions .btn-primary,
  .contact-cta-actions .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 760px) {
  .page-shell {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .hero-copy {
    font-size: 0.92rem;
    line-height: 1.65;
  }

  .hero-cta-row {
    flex-direction: column;
  }

  .hero-trust-row {
    flex-wrap: wrap;
    gap: var(--space-sm);
  }

  .trust-divider {
    display: none;
  }

  .hero-dot-grid {
    display: none;
  }

  .hero-visual-shell {
    padding-bottom: 5rem;
  }

  .stats-panel {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-card:nth-child(2)::after {
    display: none;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .about-content h2 {
    max-width: none;
  }

  .about-float-card {
    padding: 0.55rem 0.75rem;
    font-size: 0.85rem;
  }

  .about-float-card--1,
  .about-float-card--3 {
    left: 2%;
  }

  .about-float-card--2 {
    right: 2%;
  }

  .about-stat {
    flex: 1 1 100%;
  }

  .dept-grid {
    grid-template-columns: 1fr;
  }

  .dept-badge {
    font-size: 0.6875rem;
    padding: 0.4rem 0.65rem;
  }

  .dept-badge--1,
  .dept-badge--3 {
    left: 2%;
  }

  .dept-badge--2 {
    right: 2%;
  }

  .dept-cursor-glow {
    display: none;
  }

  .spec-grid {
    grid-template-columns: 1fr;
  }

  .spec-expertise ul {
    grid-template-columns: 1fr;
  }

  .spec-badge {
    font-size: 0.625rem;
    padding: 0.35rem 0.6rem;
  }

  .spec-badge--1,
  .spec-badge--3 {
    left: 2%;
  }

  .spec-badge--2 {
    right: 2%;
  }

  .spec-cursor-glow {
    display: none;
  }

  .why-features {
    grid-template-columns: 1fr;
  }

  .why-badge {
    font-size: 0.625rem;
    padding: 0.35rem 0.6rem;
  }

  .why-badge--1,
  .why-badge--3 {
    right: 2%;
  }

  .why-badge--2,
  .why-badge--4 {
    left: 2%;
  }

  .why-cursor-glow {
    display: none;
  }

  .impact-cards {
    grid-template-columns: 1fr;
  }

  .impact-orbit-badge {
    font-size: 0.5625rem;
    padding: 0.35rem 0.55rem;
    max-width: 9rem;
  }

  .impact-orbit-badge--2,
  .impact-orbit-badge--3 {
    right: 0;
  }

  .impact-orbit-badge--5,
  .impact-orbit-badge--6 {
    left: 0;
  }

  .impact-cursor-glow {
    display: none;
  }

  .testi-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .book-field-row {
    grid-template-columns: 1fr;
  }

  .book-trust-strip {
    grid-template-columns: 1fr;
  }

  .book-float {
    font-size: 0.5625rem;
    padding: 0.35rem 0.55rem;
  }

  .book-cursor-glow {
    display: none;
  }

  .foot-cursor-glow {
    display: none;
  }

  .testi-cursor-glow {
    display: none;
  }

  .book-main {
    grid-template-columns: 1fr;
  }

  .book-contact-bar {
    grid-template-columns: 1fr;
  }

  .about-grid,
  .feature-cards,
  .doctors-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .appointment-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .abt-timeline::before {
    left: 0.65rem;
  }

  .abt-timeline-item {
    grid-template-columns: 1fr;
    gap: 0.65rem;
    padding-left: 2rem;
  }

  .abt-timeline-year {
    justify-self: start;
  }

  .doc-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .doc-search-wrap,
  .doc-filter-wrap select {
    width: 100%;
  }

  .doc-cta-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .doc-profile-banner-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .doc-profile-portrait {
    margin: 0 auto;
  }

  .doc-profile-actions {
    justify-content: center;
  }

  .doc-profile-appointment-wrap {
    grid-template-columns: 1fr;
  }

  .contact-main-grid {
    grid-template-columns: 1fr;
  }

  .contact-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ==========================================================================
   Premium Ayurveda Hospital Theme Styles (Aman & Six Senses Inspired)
   ========================================================================== */

/* Global Reset Overrides & Page Shell */
.page-shell {
  background-color: var(--bg-ivory);
  position: relative;
  overflow: clip;
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
}

/* Sunlight Overlay ? viewport-bound only (must not size to full page height) */
.sunlight-overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 20%, rgba(250, 240, 215, 0.55) 0%, rgba(255, 255, 255, 0) 55%);
  mix-blend-mode: overlay;
  opacity: 0.08;
  pointer-events: none;
  z-index: 8;
  animation: movingSunlight 38s infinite alternate ease-in-out;
}

@keyframes movingSunlight {
  0% {
    transform: translate(4%, -3%) scale(1);
    opacity: 0.07;
  }
  50% {
    opacity: 0.09;
  }
  100% {
    transform: translate(-4%, 3%) scale(1.06);
    opacity: 0.08;
  }
}

/* Botanical Pattern Overlay */

/* Sticky Header with Glassmorphism */
.top-nav {
  position: fixed;
  top: 1.5rem;
  left: 5%;
  right: 5%;
  width: 90%;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 2rem;
  border-radius: var(--radius-lg);
  background: rgba(249, 247, 242, 0.85);
  border: 1px solid rgba(45, 139, 78, 0.12);
  box-shadow: 0 4px 30px rgba(0, 62, 98, 0.02);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.top-nav.scrolled {
  top: 0.75rem;
  background: rgba(249, 247, 242, 0.95);
  padding: 0.65rem 2rem;
  backdrop-filter: blur(25px) saturate(1.2);
  -webkit-backdrop-filter: blur(25px) saturate(1.2);
  border-color: rgba(45, 139, 78, 0.2);
  box-shadow: 0 10px 40px rgba(0, 62, 98, 0.05);
}

/* Brand Customization */
.brand {
  gap: 0.85rem;
}

.brand-logo-img {
  height: 3.4rem;
  width: auto;
  display: block;
  /* Blend the logo's white background into the light navbar */
  mix-blend-mode: multiply;
}

.nav-drawer-logo-img {
  height: 2.9rem;
  width: auto;
  display: block;
  mix-blend-mode: multiply;
}

@media (max-width: 768px) {
  .brand-logo-img {
    height: 2.35rem;
    max-width: min(46vw, 10.5rem);
  }
}
.brand-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: rgba(0, 62, 98, 0.08);
  color: var(--forest-green);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.brand:hover .brand-icon {
  transform: rotate(15deg) scale(1.05);
}
.brand-icon svg {
  width: 1.6rem;
  height: 1.6rem;
  stroke: none;
  fill: currentColor;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 0.95;
  justify-content: center;
  gap: 0.02rem;
}
.brand-text .brand-sub {
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--sage-green);
  text-transform: uppercase;
}
.brand-text .brand-main {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--forest-green);
  margin: 0.05rem 0;
}
.brand-text .brand-desc {
  font-family: var(--font-sans);
  font-size: 0.525rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: var(--gold-accent);
  text-transform: uppercase;
  border-top: 1.2px solid rgba(45, 139, 78, 0.25);
  padding-top: 0.15rem;
  margin-top: 0.05rem;
  display: inline-block;
  width: 100%;
  text-align: center;
}

/* Nav Links Customization */
.nav-links {
  gap: 2.2rem;
}
.nav-links a {
  font-family: var(--font-sans);
  color: var(--forest-green);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  transition: color 0.3s ease;
}
.nav-links a:hover {
  color: var(--gold-accent);
}
.nav-links a.active {
  color: var(--forest-green);
  font-weight: 600;
}
.nav-links a.active::after {
  height: 2px;
  background: var(--gold-accent);
  bottom: -0.4rem;
}

/* Nav Actions & Buttons */
.nav-actions {
  gap: 1rem;
}
.phone-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid rgba(0, 62, 98, 0.15);
  color: var(--forest-green);
  display: grid;
  place-items: center;
  text-decoration: none;
  transition: all 0.3s ease;
}
.phone-btn:hover {
  border-color: var(--gold-accent);
  background: rgba(74, 159, 212, 0.08);
  color: var(--gold-accent);
  transform: translateY(-2px);
}
.phone-btn svg {
  width: 1.15rem;
  height: 1.15rem;
}

/* Hero Section Layout */
.hero-section {
  min-height: 100vh;
  padding: 10rem 5% 4rem;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-xl);
  align-items: center;
  background-color: transparent;
  z-index: 2;
}

.hero-left {
  max-width: 48rem;
}

/* Premium Badge */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--sage-green);
  background: rgba(45, 139, 78, 0.08);
  border: 1px solid rgba(45, 139, 78, 0.15);
  padding: 0.5rem 1.1rem;
  margin-bottom: var(--space-md);
  font-weight: 700;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.eyebrow-leaf-icon {
  width: 0.85rem;
  height: 0.85rem;
  color: var(--sage-green);
}

/* Heading Line Reveals */
.reveal-heading {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin: var(--space-xs) 0 var(--space-xs);
}
.heading-line {
  display: block;
  overflow: hidden;
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5.2vw, 4.8rem);
  line-height: 1.08;
  color: var(--forest-green);
  font-weight: 400;
  opacity: 0;
  transform: translateY(40px);
  animation: revealLine 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.heading-line.text-accent {
  color: var(--sage-green);
}
.heading-line:nth-child(1) { animation-delay: 0.15s; }
.heading-line:nth-child(2) { animation-delay: 0.3s; }

@keyframes revealLine {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero Tagline */
.hero-tagline {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--sage-green);
  margin: 0.75rem 0;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.5s;
}

/* Hero Subtitle */
.hero-subtitle {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 44ch;
  line-height: 1.6;
  margin: 0 0 var(--space-sm);
  font-weight: 400;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.6s;
}

/* Leaf Divider */
.leaf-divider {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  width: 100%;
  max-width: 320px;
  margin: var(--space-sm) 0 var(--space-md);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.7s;
}
.leaf-divider .line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(45, 139, 78, 0.3), transparent);
}
.leaf-divider .leaf-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--sage-green);
  opacity: 0.85;
}

/* Animations for Staggered Fades */
.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.fade-in-up-delay {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.5s;
}
.fade-in-up-delay-2 {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.8s;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Premium Buttons with Liquid Wave Effect */
.btn-primary {
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: var(--btn-primary-bg);
  color: var(--white);
  padding: 1rem 2.2rem;
  border-radius: 999px;
  border: none;
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: 0.95rem;
  box-shadow: var(--btn-shadow);
  transition: background 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-primary .btn-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(74, 159, 212, 0.25) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 320px;
  height: 320px;
  background: #002A45;
  border-radius: 42%;
  transform: translate(-50%, -50%) scale(0) rotate(0deg);
  transition: transform 0.75s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: -1;
}
.btn-primary:hover::before {
  transform: translate(-50%, -50%) scale(1) rotate(135deg);
}
.btn-primary:hover {
  transform: translateY(-4px);
  background: var(--btn-primary-hover-bg);
  box-shadow: var(--btn-shadow-hover);
  color: var(--white);
}
.btn-primary:hover .btn-glow {
  opacity: 1;
}
.btn-leaf-icon {
  width: 1.15rem;
  height: 1.15rem;
}

.btn-secondary {
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: var(--white);
  color: var(--forest-green);
  padding: 1rem 2.2rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 62, 98, 0.22);
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: 0.95rem;
  transition: all 0.4s ease;
  display: inline-flex;
  align-items: center;
}
.btn-secondary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 320px;
  height: 320px;
  background: rgba(0, 62, 98, 0.08);
  border-radius: 42%;
  transform: translate(-50%, -50%) scale(0) rotate(0deg);
  transition: transform 0.75s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: -1;
}
.btn-secondary:hover::before {
  transform: translate(-50%, -50%) scale(1) rotate(135deg);
}
.btn-secondary:hover {
  border-color: rgba(0, 62, 98, 0.35);
  color: var(--forest-green);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 62, 98, 0.08);
}
.btn-secondary .chevron {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}
.btn-secondary:hover .chevron {
  transform: translateX(3px);
}

/* Glass Features Capsule */
.hero-glass-features {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(239, 230, 215, 0.75);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 1.1rem 0 1.1rem 2.2rem;
  margin-top: 5.5rem;
  width: 100%;
  max-width: 680px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.9s;
  box-shadow: 0 8px 32px rgba(0, 62, 98, 0.03);
}

.glass-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.glass-feature-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(45, 139, 78, 0.25);
  color: var(--sage-green);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.glass-feature-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}
.glass-feature-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.glass-feature-text strong {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--forest-green);
}
.glass-feature-text span {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Hero Right Column (Premium Visual) */
.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-visual-shell {
  width: 100%;
  max-width: 580px;
  position: relative;
  z-index: 10;
}
.hero-glow-1 {
  position: absolute;
  width: 80%;
  height: 80%;
  top: -10%;
  left: -10%;
  background: radial-gradient(circle, rgba(74, 159, 212, 0.15) 0%, transparent 70%);
  filter: blur(40px);
  z-index: -1;
  pointer-events: none;
}
.hero-glow-2 {
  position: absolute;
  width: 80%;
  height: 80%;
  bottom: -10%;
  right: -10%;
  background: radial-gradient(circle, rgba(45, 139, 78, 0.12) 0%, transparent 70%);
  filter: blur(40px);
  z-index: -1;
  pointer-events: none;
}

/* Organic Arch Dome Shape */
.hero-image-frame-ayur {
  width: 100%;
  aspect-ratio: 0.9 / 1;
  position: relative;
  border-radius: 350px 350px 40px 40px; /* beautiful premium arch/dome */
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 62, 98, 0.1);
  background: var(--soft-beige);
  border: 12px solid rgba(255, 255, 255, 0.8);
  isolation: isolate;
  transform: translateZ(0);
}
.hero-image-frame-ayur::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 62, 98, 0.1) 0%, transparent 40%);
  pointer-events: none;
  z-index: 2;
}
.hero-image-ayur {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
  animation: kenBurns 18s infinite alternate ease-in-out;
}

/* Floating care badge */
.care-badge-floating {
  position: absolute;
  top: 15%;
  right: -5%;
  z-index: 25;
  animation: floatBadge 6s infinite ease-in-out;
}

@keyframes floatBadge {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

.badge-inner {
  position: relative;
  width: 9.5rem;
  height: 9.5rem;
  background: var(--sage-green);
  border: 6px solid var(--white);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 15px 35px rgba(0, 62, 98, 0.2);
  color: var(--white);
  text-align: center;
  padding: 0.5rem;
  overflow: hidden;
}
.badge-text-wrap {
  display: flex;
  flex-direction: column;
  z-index: 2;
  margin-top: 0.5rem;
}
.badge-title {
  font-family: var(--font-sans);
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--white);
}
.badge-subtitle {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.3;
  margin-top: 0.2rem;
  color: rgba(255, 255, 255, 0.95);
}
.badge-icon-leaf {
  margin-top: 0.4rem;
  color: rgba(255, 255, 255, 0.9);
  z-index: 2;
}
.badge-icon-leaf svg {
  width: 1.4rem;
  height: 1.4rem;
}

/* Bottom Highlight Green Bar */
.ayur-highlight-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  background: var(--forest-green);
  padding: 1.75rem 5%;
  border-radius: var(--radius-lg);
  margin: 2rem 5% 4rem;
  box-shadow: 0 20px 45px rgba(0, 62, 98, 0.18);
  position: relative;
  z-index: 10;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.hl-icon-wrap {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold-accent);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.hl-icon-wrap svg {
  width: 1.25rem;
  height: 1.25rem;
}
.hl-text h3 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
}
.hl-text p {
  margin: 0.1rem 0 0;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

.highlight-cta-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: var(--bg-ivory);
  padding: 0.85rem 1.35rem;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}
.phone-circle {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(45, 139, 78, 0.1);
  color: var(--forest-green);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.phone-circle svg {
  width: 1.05rem;
  height: 1.05rem;
}
.hl-cta-text {
  display: flex;
  flex-direction: column;
}
.hl-cta-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hl-phone-num {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  color: var(--forest-green);
  text-decoration: none;
  transition: color 0.3s ease;
}
.hl-phone-num:hover {
  color: var(--gold-accent);
}

/* Adjust layout on section titles to match serif typography */
.about-content h2,
.dept-header h2,
.spec-header h2,
.why-header h2,
.book-header h2,
.impact-header h2 {
  font-family: var(--font-serif);
  color: var(--forest-green);
}

.about-section {
  background: linear-gradient(165deg, #F7F9FB 0%, #ffffff 45%, #F0F3F6 100%);
  border: 1px solid rgba(45, 139, 78, 0.08);
}

/* ==========================================================================
   About - split layout (image left, content right) per mockup
   ========================================================================== */

.abt-split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: stretch;
  gap: 0;
  padding: 0;
  margin: clamp(2rem, 4vw, 3.5rem) 0 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #F7F9FB;
  border: 1px solid rgba(45, 139, 78, 0.1);
  box-shadow: 0 24px 60px rgba(0, 62, 98, 0.07);
}

.abt-split-media {
  position: relative;
  align-self: stretch;
  min-height: 100%;
  padding: 0;
  background: #F7F9FB;
  overflow: hidden;
}

.abt-split-image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 0;
  box-shadow: none;
  -webkit-mask-image: linear-gradient(to right, #000 82%, transparent 100%);
  mask-image: linear-gradient(to right, #000 82%, transparent 100%);
}

.abt-split-content {
  padding: clamp(2.5rem, 4vw, 3.5rem) clamp(2rem, 4.5vw, 4.25rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
}

.abt-kicker {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.abt-kicker-leaf {
  color: var(--gold-accent);
  display: inline-flex;
}

.abt-kicker-leaf svg {
  width: 1.3rem;
  height: 1.3rem;
}

.abt-kicker-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--sage-green);
}

h2.abt-kicker-label {
  line-height: 1.35;
}

.abt-kicker-line {
  width: 4.5rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(45, 139, 78, 0.45), transparent);
}

.abt-split-heading {
  margin: 1.5rem 0 0;
  font-family: var(--font-serif);
  font-size: clamp(2.9rem, 4.8vw, 4.5rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #003e62;
}

.abt-heading-accent {
  color: var(--sage-green);
  font-style: italic;
}

.abt-split-tagline {
  margin: 1.5rem 0 0;
  font-family: var(--font-serif);
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  font-weight: 600;
  line-height: 1.35;
  color: var(--forest-green);
}

.abt-split .about-description {
  max-width: 620px;
  margin: 1.5rem 0 0;
  font-size: clamp(1.05rem, 1.35vw, 1.22rem);
  line-height: 1.9;
  color: var(--text-muted);
}

.abt-split .about-cta {
  margin-top: 3rem;
  min-height: 3.7rem;
  padding: 0 2.5rem;
  border-radius: 999px;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.abt-split .about-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0, 62, 98, 0.22);
}

.abt-split-features {
  width: 100%;
  max-width: 640px;
  margin: 3rem 0 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(45, 139, 78, 0.16);
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 1.5rem;
}

.abt-split-feature {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-dark);
}

.abt-split-feature-icon {
  color: var(--sage-green);
}

.abt-split-feature-icon svg {
  width: 2.4rem;
  height: 2.4rem;
}

.abt-split-feature-divider {
  width: 1px;
  align-self: stretch;
  background: rgba(45, 139, 78, 0.18);
}

@media (max-width: 991px) {
  .abt-split-features,
  .abt-split .abt-split-features,
  .about-section.abt-split .abt-split-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1.25rem;
    margin-top: 1.5rem;
    padding-top: 0;
    border-top: 0;
    max-width: 22rem;
    margin-left: auto;
    margin-right: auto;
  }

  .abt-split-feature,
  .abt-split .abt-split-feature {
    flex: none;
    flex-basis: auto;
    width: auto;
  }

  .abt-split-feature-divider,
  .abt-split .abt-split-feature-divider {
    display: none !important;
  }
}

/* ==========================================================================
   Responsive Overrides
   ========================================================================== */
@media (max-width: 1200px) {
  .hero-section {
    padding: 9rem 5% 3rem;
    gap: var(--space-lg);
  }
  .heading-line {
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  }
}

@media (max-width: 991px) {
  .hero-section {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 8rem 5% 4rem;
    gap: 2rem;
  }
  .hero-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
  }
  .hero-subtitle {
    margin: 0 auto var(--space-md);
  }
  .leaf-divider {
    margin: var(--space-sm) auto var(--space-md);
  }
  .hero-features-grid {
    margin: 2.5rem auto 0;
  }
  .hero-right,
  .hero-image-ayur,
  .hero-image-frame-ayur,
  .care-badge-floating {
    display: none;
  }
  .ayur-highlight-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
    padding: 2rem;
  }
  .highlight-item {
    justify-content: flex-start;
  }
  .highlight-cta-card {
    justify-content: center;
    margin-top: 0.5rem;
  }
}

@media (max-width: 768px) {
  .top-nav {
    padding: 1rem 5%;
  }
  .top-nav.scrolled {
    padding: 0.75rem 5%;
  }
  .nav-menu-btn {
    display: grid;
  }
  .nav-links {
    display: none;
  }
  .nav-actions .book-btn {
    padding: 0.6rem 1.1rem;
    font-size: 0.8rem;
  }
  .heading-line {
    font-size: 2.3rem;
  }
  .hero-cta-row {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    gap: 0.75rem;
  }
  .leaf-divider,
  .hero-viewport .leaf-divider {
    display: none;
  }
  .btn-primary, .btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 0.95rem 1.5rem;
  }
  .hero-features-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
  }
  .hero-image-frame-ayur {
    border-radius: 180px 180px 30px 30px;
  }
  .badge-inner {
    width: 6.5rem;
    height: 6.5rem;
  }
  .badge-title {
    font-size: 1.6rem;
  }
  .badge-subtitle {
    font-size: 0.5rem;
  }
}

/* Specific logo, navbar actions and glass features tweaks to match mockup exactly */
.top-nav .book-btn {
  border-radius: 999px !important;
  background: var(--btn-primary-bg) !important;
  color: var(--white) !important;
  font-family: var(--font-sans) !important;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.02em !important;
  padding: 0.75rem 1.4rem !important;
  box-shadow: 0 4px 15px rgba(0, 62, 98, 0.22) !important;
  border: none !important;
  transition: all 0.3s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.4rem !important;
  text-decoration: none !important;
}

.top-nav .book-btn:hover {
  background: var(--btn-primary-hover-bg) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(0, 62, 98, 0.3) !important;
}

.top-nav .phone-btn {
  width: 2.75rem !important;
  height: 2.75rem !important;
  border-radius: 50% !important;
  border: 1px solid rgba(45, 139, 78, 0.3) !important;
  color: var(--sage-green) !important;
  background: transparent !important;
}

.top-nav .phone-btn:hover {
  background: rgba(45, 139, 78, 0.05) !important;
  border-color: var(--sage-green) !important;
  color: var(--forest-green) !important;
}

/* ==========================================================================
   Hero - exact match to target mockup, locked to 100vh
   ========================================================================== */

.hero-viewport {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100svh;
  padding-bottom: 1.25rem;
  position: relative;
  overflow: hidden;
}

/* Decorative foliage around the hero --- like the mockup corners */
.hero-leaf-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.hero-leaf {
  position: absolute;
  user-select: none;
  animation: leafDrift 16s ease-in-out infinite;
}

.hero-leaf--tr {
  --leaf-base: rotate(148deg) scaleX(-1);
  width: clamp(18rem, 30vw, 30rem);
  top: -11%;
  right: -9%;
  transform: var(--leaf-base);
  filter: blur(5px) brightness(0.82) saturate(1.1);
  opacity: 0.95;
}

.hero-leaf--tr2 {
  --leaf-base: rotate(115deg);
  width: clamp(11rem, 17vw, 17rem);
  top: -8%;
  right: 24%;
  transform: var(--leaf-base);
  filter: blur(9px) brightness(0.85) saturate(1.05);
  opacity: 0.5;
  animation-duration: 21s;
  animation-delay: -6s;
}

.hero-leaf--left {
  --leaf-base: rotate(38deg);
  width: clamp(9rem, 14vw, 14rem);
  top: 34%;
  left: -5%;
  transform: var(--leaf-base);
  filter: blur(2px) saturate(0.7);
  opacity: 0.22;
  animation-duration: 19s;
  animation-delay: -11s;
}

/* Leaves behind the right-side hero image */
.hero-leaf--r2 {
  --leaf-base: rotate(210deg) scaleX(-1);
  width: clamp(13rem, 22vw, 22rem);
  top: 40%;
  right: -7%;
  transform: var(--leaf-base);
  filter: blur(6px) brightness(0.85) saturate(1.1);
  opacity: 0.6;
  animation-duration: 22s;
  animation-delay: -9s;
}

.hero-leaf--r3 {
  --leaf-base: rotate(320deg);
  width: clamp(8rem, 13vw, 13rem);
  top: auto;
  bottom: 4%;
  right: 31%;
  transform: var(--leaf-base);
  filter: blur(3px) brightness(0.9) saturate(0.95);
  opacity: 0.35;
  animation-duration: 20s;
  animation-delay: -13s;
}

@keyframes leafDrift {
  0%,
  100% {
    transform: var(--leaf-base) translate3d(0, 0, 0) rotate(0deg);
  }
  33% {
    transform: var(--leaf-base) translate3d(9px, 12px, 0) rotate(3.5deg);
  }
  66% {
    transform: var(--leaf-base) translate3d(-7px, 5px, 0) rotate(-2.5deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-leaf {
    animation: none;
  }
}

@media (max-width: 768px) {
  .hero-leaf--tr {
    width: 13rem;
    top: -5%;
    right: -14%;
  }

  .hero-leaf--tr2 {
    display: none;
  }

  .hero-leaf--left {
    width: 8rem;
    top: 45%;
  }

  .hero-leaf--r3 {
    display: none;
  }

  .hero-leaf--r2 {
    width: 11rem;
    right: -16%;
  }
}

.hero-viewport .hero-section {
  flex: 1 1 auto;
  min-height: 0;
  padding: 6.75rem 5% 1.5rem;
  align-items: center;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.5rem, 5vw, 5rem);
}

/* Headline: bold serif, deep green --- like mockup */
.hero-viewport .reveal-heading {
  margin: 0.75rem 0 0.4rem;
  gap: 0.15rem;
}

.hero-viewport .heading-line {
  font-family: "Playfair Display", var(--font-serif);
  font-weight: 700;
  font-style: normal;
  font-size: clamp(2.3rem, 3.9vw, 3.55rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: #003e62;
  padding-bottom: 0.08em;
}

.hero-viewport .heading-line.text-accent {
  color: #003e62;
}

.hero-viewport .hero-tagline {
  font-size: 1.05rem;
  font-weight: 700;
  color: #003e62;
  margin: 0.8rem 0 0.65rem;
}

.hero-viewport .hero-subtitle {
  font-size: 0.95rem;
  max-width: 40ch;
  margin: 0 0 0.6rem;
  line-height: 1.7;
}

.hero-viewport .leaf-divider {
  margin: 0.75rem 0 1.2rem;
}

.hero-viewport .btn-primary,
.hero-viewport .btn-secondary {
  padding: 0.85rem 1.8rem;
  font-size: 0.9rem;
}

.hero-viewport .btn-primary {
  background: #003e62;
}

.hero-viewport .hero-cta-row {
  gap: 1rem;
}

.hero-viewport .hero-glass-features {
  margin-top: 3.25rem;
  padding: 1rem 1.85rem;
  gap: 1.5rem;
  max-width: 700px;
}

.hero-viewport .glass-feature-icon {
  width: 2.25rem;
  height: 2.25rem;
}

/* Hero image: frameless, blends into the ivory background like mockup */
.hero-viewport .hero-visual-shell {
  max-width: 640px;
}

.hero-viewport .hero-image-frame-ayur {
  aspect-ratio: 1 / 0.92;
  max-height: min(560px, calc(100svh - 16rem));
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  overflow: visible;
}

/* Thin gold ring accent around the arrangement */
.hero-viewport .hero-image-frame-ayur::after {
  display: none;
}

.hero-viewport .hero-image-ayur {
  object-fit: cover;
  transform: none;
  transform-origin: 50% 50%;
  animation: none;
  filter: none;
  border-radius: 20px;
  -webkit-mask-image: none;
  mask-image: none;
}

/* Soft circular halo behind the arrangement */
.hero-viewport .hero-image-frame-ayur::before {
  display: none;
}

/* Grounding shadow beneath the arrangement instead of a boxy drop shadow */
.hero-viewport .hero-visual-shell::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4%;
  width: 62%;
  height: 7%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(0, 62, 98, 0.16) 0%, transparent 68%);
  filter: blur(6px);
  z-index: -1;
  pointer-events: none;
}

.hero-viewport .care-badge-floating {
  top: 8%;
  right: 0;
}

.hero-viewport .badge-inner {
  width: 8.25rem;
  height: 8.25rem;
  background: #003e62;
}

.hero-viewport .badge-title {
  font-size: 2rem;
}

/* Green highlight bar pinned to the bottom of the first screen */
.hero-viewport .ayur-highlight-bar {
  flex-shrink: 0;
  margin: 0 5% 0;
  padding: 1.2rem 2.5rem;
  border-radius: 999px;
  background: #55693c;
  gap: 1.75rem;
}

.hero-viewport .hl-icon-wrap {
  width: 2.35rem;
  height: 2.35rem;
  background: rgba(255, 255, 255, 0.12);
  color: #f2eddc;
}

.hero-viewport .hl-text h3 {
  font-size: 0.9rem;
}

.hero-viewport .hl-text p {
  font-size: 0.72rem;
}

.hero-viewport .highlight-cta-card {
  border-radius: 999px;
  padding: 0.7rem 1.25rem;
  background: var(--bg-ivory);
}

.hero-viewport .hl-phone-num {
  font-size: 0.95rem;
}

@media (max-width: 1200px) {
  .hero-viewport .hero-section {
    padding-top: 6.25rem;
  }

  .hero-viewport .heading-line {
    font-size: clamp(2.1rem, 3.6vw, 3rem);
  }

  .hero-viewport .hero-glass-features {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

/* Shorter laptop screens: compress vertical rhythm so 100vh still holds */
@media (min-width: 992px) and (max-height: 780px) {
  .hero-viewport .hero-section {
    padding-top: 6rem;
  }

  .hero-viewport .heading-line {
    font-size: clamp(2rem, 3.4vw, 2.9rem);
  }

  .hero-viewport .hero-tagline {
    font-size: 0.95rem;
    margin: 0.4rem 0 0.3rem;
  }

  .hero-viewport .hero-subtitle {
    font-size: 0.88rem;
  }

  .hero-viewport .eyebrow {
    padding: 0.35rem 0.9rem;
    margin-bottom: 0.6rem;
  }

  .hero-viewport .leaf-divider {
    margin: 0.35rem 0 0.65rem;
  }

  .hero-viewport .btn-primary,
  .hero-viewport .btn-secondary {
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
  }

  .hero-viewport .hero-glass-features {
    margin-top: 1.1rem;
    padding: 0.75rem 1.35rem;
  }

  .hero-viewport .badge-inner {
    width: 7rem;
    height: 7rem;
  }

  .hero-viewport .badge-title {
    font-size: 1.7rem;
  }

  .hero-viewport .ayur-highlight-bar {
    padding: 0.85rem 1.75rem;
  }
}

@media (max-width: 991px) {
  .hero-viewport {
    min-height: 0;
    padding-bottom: 2rem;
  }

  .hero-viewport .hero-section {
    grid-template-columns: 1fr;
    padding: 7.5rem 5% 2.5rem;
    gap: 2rem;
  }

  .hero-viewport .hero-right,
  .hero-viewport .hero-image-ayur,
  .hero-viewport .hero-image-frame-ayur,
  .hero-viewport .hero-visual-shell,
  .hero-viewport .care-badge-floating {
    display: none;
  }

  .hero-viewport .ayur-highlight-bar {
    flex-direction: column;
    align-items: stretch;
    border-radius: var(--radius-lg);
    padding: 1.75rem;
  }
}

/* ==========================================================================
   A Tradition of Wellness - two divisions (hospital & pharmaceuticals)
   ========================================================================== */

.tow-section {
  position: relative;
  margin-top: clamp(3rem, 6vw, 5rem);
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 4vw, 3.5rem);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(165deg, #f7f9fb 0%, #ffffff 48%, #f0f3f6 100%);
  border: 1px solid rgba(45, 139, 78, 0.08);
}

.tow-header {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.tow-header .abt-kicker {
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
}

.tow-header .abt-kicker-label {
  display: block;
  max-width: 10rem;
  text-align: center;
  line-height: 1.35;
  letter-spacing: 0.28em;
}

.tow-header .abt-kicker-line {
  width: 2.75rem;
  flex-shrink: 0;
  align-self: center;
  background: linear-gradient(90deg, transparent, rgba(45, 139, 78, 0.45));
}

.tow-header .abt-kicker-line--end {
  background: linear-gradient(90deg, rgba(45, 139, 78, 0.45), transparent);
}

.tow-heading {
  margin: 1.35rem 0 0;
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 3.6vw, 3rem);
  font-weight: 600;
  line-height: 1.12;
  color: #003e62;
}

.tow-intro {
  margin: 1.1rem 0 0;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.tow-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.25rem, 2.5vw, 2rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}

.tow-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  background: #F7F9FB;
  border: 1px solid rgba(45, 139, 78, 0.12);
  box-shadow: 0 18px 44px rgba(0, 62, 98, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.tow-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 56px rgba(0, 62, 98, 0.1);
}

.tow-card-icon {
  display: inline-grid;
  place-items: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  color: var(--forest-green);
  background: rgba(45, 139, 78, 0.12);
  border: 1px solid rgba(var(--gold-accent-rgb), 0.35);
}

.tow-card-icon svg {
  width: 1.6rem;
  height: 1.6rem;
}

.tow-card-img {
  align-self: stretch;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center center;
  border: 0;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(0, 42, 69, 0.06);
}

.tow-card-title {
  margin: 1.15rem 0 0;
  align-self: center;
  text-align: center;
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--forest-green);
}

.tow-card-desc {
  margin: 0.85rem 0 0;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.tow-card-desc:last-of-type {
  margin-bottom: 1.75rem;
}

.tow-card .tow-card-cta {
  margin-top: auto;
  align-self: center;
}

@media (max-width: 991px) {
  .tow-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Heritage - The Origin of Padiyath & Legacy and Expertise
   ========================================================================== */

.heritage-section {
  position: relative;
  margin-top: clamp(3rem, 6vw, 5rem);
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 4vw, 3.5rem);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(150deg, #f0f3f6 0%, #F7F9FB 55%, #F0F3F6 100%);
  border: 1px solid rgba(45, 139, 78, 0.1);
}

.heritage-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1.75rem, 3.5vw, 3rem);
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
}

.heritage-media {
  position: relative;
  min-height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #F7F9FB;
  border: 0;
}

/* Avoid the 1px dark clip fringe Chrome draws on transformed rounded photos */
.heritage-media.reveal,
.heritage-media.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.heritage-image {
  position: absolute;
  inset: -2px;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  object-fit: cover;
  object-position: center 55%;
}

.heritage-content {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-areas:
    "kicker . ."
    "origin divider legacy";
  column-gap: clamp(1.25rem, 2.5vw, 2rem);
  row-gap: 0.45rem;
  align-items: start;
}

.heritage-kicker {
  grid-area: kicker;
  align-items: flex-start;
  margin: 0;
}

.heritage-kicker .abt-kicker-label {
  justify-content: flex-start;
}

.heritage-col--origin {
  grid-area: origin;
}

.heritage-divider {
  grid-area: divider;
}

.heritage-col--legacy {
  grid-area: legacy;
}

.heritage-heading {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(2.3rem, 4vw, 3.4rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.05;
  color: #003e62;
}

.heritage-subheading {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--forest-green);
}

.heritage-desc {
  margin: 1.05rem 0 0;
  font-size: 0.93rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.heritage-note {
  margin: 1.1rem 0 0;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  color: #003e62;
}

.heritage-divider {
  width: 1px;
  align-self: stretch;
  background: linear-gradient(180deg, transparent, rgba(45, 139, 78, 0.3), transparent);
}

.heritage-stats {
  display: flex;
  align-items: stretch;
  gap: 1rem;
  margin-top: 1.6rem;
}

.heritage-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  text-align: center;
  padding: 1rem 0.9rem 1.05rem;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(249, 247, 242, 0.92) 100%);
  border: 1px solid rgba(45, 139, 78, 0.1);
  box-shadow: 0 10px 24px rgba(0, 62, 98, 0.04);
}

.heritage-stat strong {
  font-family: "Playfair Display", var(--font-serif);
  font-size: clamp(1.75rem, 2.6vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  font-variant-numeric: lining-nums tabular-nums;
  color: #c5a04e;
  line-height: 0.95;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

.heritage-stat span {
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5f7059;
  line-height: 1.45;
}

.heritage-stat-divider {
  width: 1px;
  align-self: stretch;
  background: linear-gradient(180deg, transparent, rgba(45, 139, 78, 0.18), transparent);
}

.heritage-quote {
  max-width: 860px;
  margin: clamp(2.25rem, 4.5vw, 3.5rem) auto 0;
  padding: clamp(1.5rem, 3vw, 2.25rem) clamp(1.5rem, 3.5vw, 2.75rem);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(var(--gold-accent-rgb), 0.35);
  border-left: 4px solid var(--gold-accent);
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.6;
  text-align: center;
  color: var(--text-dark);
}

.heritage-quote em {
  color: var(--forest-green);
}

@media (max-width: 991px) {
  .heritage-inner {
    grid-template-columns: 1fr;
  }

  .heritage-media {
    min-height: 280px;
  }

  .heritage-content {
    grid-template-columns: 1fr;
    grid-template-areas:
      "kicker"
      "origin"
      "divider"
      "legacy";
  }

  .heritage-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(45, 139, 78, 0.3), transparent);
  }

  .heritage-kicker {
    align-items: center;
  }

  .heritage-kicker .abt-kicker-label {
    justify-content: center;
  }

  .heritage-col {
    text-align: left;
  }

  .heritage-heading,
  .heritage-subheading {
    text-align: center;
  }

  .heritage-desc {
    text-align: left;
  }

  .heritage-note {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .heritage-stats,
  .heritage-quote {
    display: none;
  }
}

@media (max-width: 600px) {
  .heritage-stat-divider {
    display: none;
  }
}

/* ==========================================================================
   Section harmonization ? align every section with hero/about styling
   ========================================================================== */

.dept-label,
.spec-label,
.why-label,
.impact-label,
.testi-label,
.book-label,
.section-kicker {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-green);
}

/* Kicker lines on centered section labels, matching the about kicker */
.dept-label,
.spec-label,
.why-label,
.impact-label,
.testi-label,
.book-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  white-space: nowrap;
}

.dept-label::before,
.dept-label::after,
.spec-label::before,
.spec-label::after,
.why-label::before,
.why-label::after,
.impact-label::before,
.impact-label::after,
.testi-label::before,
.testi-label::after,
.book-label::before,
.book-label::after {
  content: "";
  display: block;
  width: 3.5rem;
  height: 1px;
  flex-shrink: 0;
  margin: 0;
}

.dept-label::before,
.spec-label::before,
.why-label::before,
.impact-label::before,
.testi-label::before,
.book-label::before {
  background: linear-gradient(90deg, transparent, rgba(45, 139, 78, 0.4));
}

.dept-label::after,
.spec-label::after,
.why-label::after,
.impact-label::after,
.testi-label::after,
.book-label::after {
  background: linear-gradient(90deg, rgba(45, 139, 78, 0.4), transparent);
}

.dept-header h2,
.spec-header h2,
.why-header h2,
.impact-header h2,
.testi-top-header h2,
.book-header h2,
.home-section .section-head h2 {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #003e62;
}

.dept-intro,
.spec-intro,
.why-intro,
.impact-intro,
.testi-top-intro,
.book-intro {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-muted);
}

/* Card headings in serif forest green, like about */
.dept-card-body h3,
.dept-featured-content h3,
.spec-card-panel h3,
.spec-featured-content h3,
.why-card h3,
.impact-card h3,
.testi-card h4,
.book-panel-title,
.feature-card h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--forest-green);
}

/* Card surfaces on the warm ivory of the about split panel */
.dept-card,
.spec-card,
.why-card,
.impact-card,
.testi-card,
.book-panel,
.feature-card {
  background: #F7F9FB;
  border: 1px solid rgba(45, 139, 78, 0.12);
  box-shadow: 0 18px 44px rgba(0, 62, 98, 0.06);
}

.dept-card:hover,
.spec-card:hover,
.why-card:hover,
.impact-card:hover {
  border-color: rgba(var(--gold-accent-rgb), 0.45);
  box-shadow: 0 26px 56px rgba(0, 62, 98, 0.1);
}

/* Icon chips: sage wash with a gold ring, like the tradition cards */
.dept-card-icon,
.why-card-icon,
.impact-card-icon,
.impact-orbit-icon,
.book-float-icon,
.book-contact-icon,
.book-trust-icon,
.footer-dept-icon {
  color: var(--forest-green);
  background: rgba(45, 139, 78, 0.12);
  border: 1px solid rgba(var(--gold-accent-rgb), 0.35);
}

/* Featured panels share the about split surface */
.dept-featured,
.spec-featured {
  background: #F7F9FB;
  border: 1px solid rgba(45, 139, 78, 0.1);
  box-shadow: 0 24px 60px rgba(0, 62, 98, 0.07);
}

/* Gold accents for numbers, stars and ratings, like heritage stats */
.impact-card-value,
.impact-center-value,
.testi-stars,
.testi-banner-rating strong {
  color: var(--gold-accent);
}

/* Keep primary navigation attached to the hero only. */
.top-nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  margin: 0;
  z-index: 1000;
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  padding: 0.8rem 5%;
}

.top-nav.scrolled {
  top: 0;
  padding: 0.65rem 5%;
}

/* Inner pages: clear absolute top-nav with no extra cream gap below it */
.page-shell:not(:has(> .hero-viewport)) {
  padding-top: 5.15rem !important;
}

#about-page > section:first-of-type,
#departments-page > section:first-of-type,
#contact-page > section:first-of-type,
#pharma-page > section:first-of-type,
#hospital-page > section:first-of-type,
#ayurveda-page > section:first-of-type,
#department-detail > section:first-of-type {
  margin-top: 0;
}

.page-shell > .division-hero:first-of-type,
.page-shell > .dept-intro-page:first-of-type,
.page-shell > .abt-intro-section:first-of-type,
.page-shell > .contact-hero:first-of-type {
  margin-top: 0;
}

@media (max-width: 768px) {
  .top-nav {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    width: 100% !important;
    margin: 0;
    padding: 0.75rem 1.25rem;
    z-index: 50;
  }

  .top-nav.scrolled {
    top: auto !important;
    padding: 0.75rem 1.25rem;
    box-shadow: none;
  }

  .page-shell:not(:has(> .hero-viewport)) {
    padding-top: 0 !important;
  }

  .hero-viewport .hero-section {
    padding-top: 1.5rem;
  }
}

/* About section ? reference layout */
.about-section.abt-split {
  grid-template-columns: 36% 64%;
  min-height: 0;
  align-items: stretch;
}

.about-section.abt-split .abt-split-media {
  min-height: 100%;
}

@media (max-width: 991px) {
  .about-section.abt-split {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 0;
  }

  .about-section.abt-split .abt-split-media {
    position: relative;
    min-height: clamp(220px, 58vw, 320px);
    height: clamp(220px, 58vw, 320px);
    overflow: hidden;
  }

  .about-section.abt-split .abt-split-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    -webkit-mask-image: linear-gradient(to bottom, #000 72%, transparent 100%);
    mask-image: linear-gradient(to bottom, #000 72%, transparent 100%);
  }

  .about-section.abt-split .abt-split-content {
    margin-top: -1.25rem;
    position: relative;
    z-index: 2;
    padding: 0.85rem clamp(1.35rem, 5vw, 2rem) clamp(2rem, 5vw, 2.75rem);
    align-items: center;
    text-align: center;
    background: transparent;
  }

  .about-section.abt-split .abt-kicker {
    justify-content: center;
    margin-bottom: 0.35rem;
  }

  .about-section.abt-split .abt-kicker-label {
    justify-content: center;
  }

  .about-section.abt-split .abt-split-heading {
    text-align: center;
    font-size: clamp(2rem, 8vw, 2.75rem);
    line-height: 1.05;
  }

  .about-section.abt-split .abt-split-divisions {
    justify-content: center;
  }

  .about-section.abt-split .abt-split-divisions::after {
    left: 50%;
    right: auto;
    width: min(100%, 16rem);
    transform: translateX(-50%);
  }

  .about-section.abt-split .abt-split-tagline,
  .about-section.abt-split .about-description {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .about-section.abt-split .abt-split-features {
    justify-content: center;
  }

  .about-section.abt-split .about-cta {
    align-self: center;
  }
}

@media (max-width: 600px) {
  .about-section.abt-split .abt-split-media {
    min-height: clamp(200px, 62vw, 280px);
    height: clamp(200px, 62vw, 280px);
  }

  .about-section.abt-split .abt-split-content {
    margin-top: -0.85rem;
    padding: 1rem 1.15rem 2.25rem;
  }

  .about-section.abt-split .abt-split-heading {
    font-size: clamp(2.15rem, 10vw, 2.85rem);
  }
}

.abt-split .abt-split-content {
  justify-content: center;
  align-items: flex-start;
  padding: clamp(2rem, 3.5vw, 3.25rem) clamp(2.25rem, 5vw, 5rem);
}

.abt-split .abt-kicker {
  width: 100%;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 0.6rem;
}

.abt-split .abt-kicker-label {
  justify-content: flex-start;
  gap: 1rem;
  font-size: clamp(0.72rem, 1vw, 0.88rem);
  letter-spacing: 0.3em;
}

.abt-split .abt-kicker-line {
  width: clamp(2.5rem, 5vw, 5rem);
}

.abt-split .abt-kicker-line:first-child {
  display: none;
}

.abt-split .abt-kicker-line:last-child {
  background: linear-gradient(90deg, rgba(45, 139, 78, 0.45), transparent);
}

.abt-split .abt-split-heading {
  width: 100%;
  margin: 0.65rem 0 0;
  text-align: left;
  font-family: "Cormorant Garamond", var(--font-serif);
  font-size: clamp(2.6rem, 4.2vw, 3.75rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.025em;
  color: #003e62;
}

.abt-split-divisions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  margin: 0.85rem 0 0;
  padding-bottom: 0.85rem;
  width: 100%;
  position: relative;
}

.abt-split-divisions::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(74, 159, 212, 0.55), transparent);
}

.abt-division-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 0.9rem;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: clamp(0.72rem, 1vw, 0.82rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.2;
  border: 1px solid transparent;
}

.abt-division-pill--ayurveda {
  color: #2d8b4e;
  background: rgba(45, 139, 78, 0.1);
  border-color: rgba(45, 139, 78, 0.22);
}

.abt-division-pill--hospital {
  color: #003e62;
  background: rgba(0, 62, 98, 0.08);
  border-color: rgba(0, 62, 98, 0.18);
}

.abt-split .abt-split-tagline {
  margin: 0.85rem 0 0;
  font-family: "Cormorant Garamond", var(--font-serif);
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  font-weight: 600;
  line-height: 1.3;
  color: #786632;
}

.abt-split .about-description {
  max-width: 680px;
  margin: 0.75rem 0 0;
  font-size: clamp(0.84rem, 1.05vw, 0.98rem);
  line-height: 1.55;
  color: var(--text-dark);
}

.abt-split .abt-split-features {
  width: 100%;
  max-width: 720px;
  margin: 1.25rem 0 0;
  padding-top: 0;
  border-top: 0;
  gap: 0;
}

.abt-split .abt-split-feature {
  gap: 0.4rem;
  font-size: clamp(0.72rem, 0.9vw, 0.84rem);
  line-height: 1.25;
}

.abt-split .abt-split-feature-icon svg {
  width: 2rem;
  height: 2rem;
  stroke-width: 1.8;
}

.abt-split .about-cta {
  order: initial;
  min-height: 3.1rem;
  margin: 2rem 0 1.5rem;
  padding: 0 2.25rem;
  font-size: 0.92rem;
}

@media (max-width: 991px) {
  .about-section.abt-split {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .abt-split .abt-split-features,
  .about-section.abt-split .abt-split-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    max-width: 20rem;
    margin: 1.35rem auto 0;
    padding: 0;
    gap: 1.15rem 0.75rem;
    border-top: 0;
    justify-items: center;
  }

  .abt-split .abt-split-feature,
  .about-section.abt-split .abt-split-feature {
    width: 100%;
    max-width: 9rem;
    align-items: center;
    justify-content: flex-start;
    gap: 0.45rem;
    text-align: center;
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.3;
    color: #003e62;
  }

  .abt-split .abt-split-feature-icon {
    display: grid;
    place-items: center;
    color: #003e62;
  }

  .abt-split .abt-split-feature-icon svg {
    width: 1.85rem;
    height: 1.85rem;
  }

  .abt-split .abt-split-feature-divider {
    display: none !important;
  }
}

@media (max-width: 600px) {
  .abt-split .abt-split-features,
  .about-section.abt-split .abt-split-features {
    max-width: 17.5rem;
    gap: 1rem 0.5rem;
  }

  .abt-split .abt-split-feature,
  .about-section.abt-split .abt-split-feature {
    max-width: 8.25rem;
    font-size: 0.74rem;
  }

  .abt-split .abt-split-feature-icon svg {
    width: 1.7rem;
    height: 1.7rem;
  }

  .abt-split .about-cta {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   Why Choose Padiyath ? premium redesign
   ========================================================================== */

.why-section.why-premium {
  background: linear-gradient(165deg, #f7f9fb 0%, #ffffff 48%, #f0f3f6 100%);
  border: 1px solid rgba(45, 139, 78, 0.1);
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 4vw, 3.5rem);
}

.why-premium .why-cursor-glow,
.why-premium .why-bg {
  display: none;
}

.why-premium .why-header {
  max-width: 720px;
  margin: 0 auto clamp(1.75rem, 3.5vw, 2.5rem);
  text-align: center;
}

.why-premium .why-header .abt-kicker {
  width: 100%;
  justify-content: center;
}

.why-premium .why-intro {
  margin: 1rem auto 0;
  max-width: 58ch;
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.why-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.why-media {
  position: relative;
  min-height: 460px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #F7F9FB;
}

.why-media-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
}

.why-reasons {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.why-reason {
  display: grid;
  grid-template-columns: 3.25rem 1fr;
  gap: 1.15rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(45, 139, 78, 0.14);
}

.why-reason:first-child {
  padding-top: 0;
}

.why-reason:last-of-type {
  border-bottom: 0;
}

.why-reason-num {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1;
  color: var(--gold-accent);
  padding-top: 0.15rem;
}

.why-reason h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  color: var(--forest-green);
}

.why-reason p {
  margin: 0.55rem 0 0;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.why-pillars {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(45, 139, 78, 0.14);
}

.why-pillar {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-align: center;
  padding: 0.9rem 0.75rem;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(249, 247, 242, 0.9) 100%);
  border: 1px solid rgba(45, 139, 78, 0.08);
  box-shadow: 0 10px 22px rgba(0, 62, 98, 0.04);
}

.why-pillar strong {
  font-family: "Playfair Display", var(--font-serif);
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  font-variant-numeric: lining-nums tabular-nums;
  color: #c5a04e;
  line-height: 0.95;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

.why-pillar span {
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5f7059;
  line-height: 1.4;
}

@media (max-width: 991px) {
  .why-layout {
    grid-template-columns: 1fr;
  }

  .why-media {
    min-height: 300px;
    order: -1;
  }

  .why-pillars {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 1.35rem;
  }
}

@media (max-width: 600px) {
  .why-reason {
    grid-template-columns: 2.5rem 1fr;
    gap: 0.85rem;
  }
}

/* ==========================================================================
   Our Status in Numbers ? premium redesign
   ========================================================================== */

.impact-section.impact-premium {
  background: linear-gradient(165deg, #f7f9fb 0%, #ffffff 50%, #f0f3f6 100%);
  border: 1px solid rgba(45, 139, 78, 0.1);
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 4vw, 3.5rem);
}

.impact-premium .impact-cursor-glow,
.impact-premium .impact-bg {
  display: none;
}

.impact-premium .impact-header {
  max-width: 40rem;
  margin: 0 auto clamp(1.75rem, 3.5vw, 2.5rem);
  text-align: center;
}

.impact-premium .impact-header .abt-kicker {
  width: 100%;
  justify-content: center;
}

.impact-premium .impact-intro {
  margin: 1.15rem auto 0;
  max-width: 36rem;
  width: 100%;
  text-align: center;
  text-wrap: balance;
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.impact-premium .impact-intro br {
  display: block;
  content: "";
  margin-bottom: 0.4em;
}

.impact-featured {
  max-width: 900px;
  margin: 0 auto 2.5rem;
  padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 4vw, 3rem);
  text-align: center;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #003e62 0%, #002a45 100%);
  border: 1px solid rgba(74, 159, 212, 0.25);
  box-shadow: 0 24px 56px rgba(0, 62, 98, 0.18);
}

.impact-featured-value {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(4rem, 10vw, 6.5rem);
  font-weight: 600;
  line-height: 1;
  color: var(--gold-accent);
}

.impact-featured-label {
  margin: 0.75rem 0 0;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

.impact-featured-note {
  margin: 1rem auto 0;
  max-width: 42ch;
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
}

.impact-stats {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(45, 139, 78, 0.12);
  background: #F7F9FB;
  box-shadow: 0 18px 44px rgba(0, 62, 98, 0.06);
}

.impact-stat {
  padding: clamp(1.5rem, 2.5vw, 2rem) clamp(1rem, 2vw, 1.5rem);
  text-align: center;
  border-right: 1px solid rgba(45, 139, 78, 0.12);
}

.impact-stat:last-child {
  border-right: 0;
}

.impact-stat-value {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 600;
  line-height: 1;
  color: var(--gold-accent);
}

.impact-stat-value--static {
  color: var(--gold-accent);
}

.impact-stat h3 {
  margin: 0.65rem 0 0;
  font-family: var(--font-serif);
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  font-weight: 600;
  color: var(--forest-green);
}

.impact-stat > p:last-child {
  margin: 0.45rem 0 0;
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--text-muted);
}

@media (max-width: 991px) {
  .impact-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .impact-stat {
    border-right: 0;
    border-bottom: 1px solid rgba(45, 139, 78, 0.12);
  }

  .impact-stat:nth-child(odd) {
    border-right: 1px solid rgba(45, 139, 78, 0.12);
  }

  .impact-stat:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .impact-stat:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    border-right: 0;
  }
}

@media (max-width: 768px) {
  .impact-premium .impact-header,
  .impact-premium .impact-intro {
    max-width: none;
  }

  .impact-premium .impact-intro {
    text-align: left;
    text-wrap: pretty;
  }
}

@media (max-width: 600px) {
  .impact-stats {
    grid-template-columns: 1fr;
  }

  .impact-stat,
  .impact-stat:nth-child(odd) {
    border-right: 0;
    border-bottom: 1px solid rgba(45, 139, 78, 0.12);
  }

  .impact-stat:last-child {
    border-bottom: 0;
  }
}


/* ==========================================================================
   Book Appointment ? premium redesign
   ========================================================================== */

.book-section.book-premium {
  background: linear-gradient(165deg, #f7f9fb 0%, #ffffff 48%, #f0f3f6 100%);
  border: 1px solid rgba(45, 139, 78, 0.1);
  overflow: visible;
}

.book-premium .book-header {
  max-width: 720px;
  margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
}

.book-premium .book-header .abt-kicker {
  width: 100%;
  justify-content: center;
}

.book-premium .book-heading {
  margin: 1.15rem 0 0;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.6vw, 2.85rem);
  font-weight: 600;
  line-height: 1.15;
  color: #003e62;
}

.book-premium .book-intro {
  margin: 1.15rem auto 0;
  max-width: 58ch;
  font-size: 0.98rem;
  line-height: 1.75;
}

.book-premium .book-panel {
  background: #fff;
  border: 1px solid rgba(45, 139, 78, 0.12);
  box-shadow: 0 18px 44px rgba(0, 62, 98, 0.06);
}

.book-premium .book-panel-title {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--forest-green);
}

.book-aside {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.book-aside-media {
  position: relative;
  min-height: 240px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(45, 139, 78, 0.12);
  background: #F7F9FB;
  box-shadow: 0 18px 44px rgba(0, 62, 98, 0.06);
}

.book-aside-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  object-position: center 55%;
}

.book-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.book-highlight {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 1rem 1.05rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(45, 139, 78, 0.12);
  box-shadow: 0 8px 24px rgba(0, 62, 98, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.book-highlight:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 62, 98, 0.08);
}

.book-highlight-icon {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 10px;
  background: rgba(45, 139, 78, 0.1);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.book-highlight-icon svg {
  width: 1.05rem;
  height: 1.05rem;
  stroke: var(--forest-green);
  fill: none;
}

.book-highlight h4 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--forest-green);
  line-height: 1.3;
}

.book-highlight p {
  margin: 0.35rem 0 0;
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.book-premium .book-trust-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  background: #fff;
  border: 1px solid rgba(45, 139, 78, 0.12);
  box-shadow: 0 18px 44px rgba(0, 62, 98, 0.06);
  overflow: hidden;
}

.book-premium .book-trust-item {
  flex-direction: column;
  gap: 0.35rem;
  padding: clamp(1.25rem, 2.5vw, 1.65rem) 1rem;
  border-right: 1px solid rgba(45, 139, 78, 0.12);
}

.book-premium .book-trust-item:last-child {
  border-right: 0;
}

.book-premium .book-trust-item strong {
  font-family: var(--font-serif);
  font-size: clamp(1.65rem, 2.8vw, 2.1rem);
  font-weight: 600;
  line-height: 1;
  color: var(--gold-accent);
}

.book-premium .book-trust-item span {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.35;
}

@media (max-width: 991px) {
  .book-highlights {
    grid-template-columns: 1fr;
  }

  .book-premium .book-trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .book-premium .book-trust-item {
    border-right: 0;
    border-bottom: 1px solid rgba(45, 139, 78, 0.12);
  }

  .book-premium .book-trust-item:nth-child(odd) {
    border-right: 1px solid rgba(45, 139, 78, 0.12);
  }

  .book-premium .book-trust-item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

@media (max-width: 600px) {
  .book-section.book-premium {
    margin-top: 1.5rem;
    margin-left: -0.15rem;
    margin-right: -0.15rem;
    padding: 1.35rem 0.65rem 1.25rem;
    border-radius: 20px;
  }

  .book-premium .book-header {
    margin: 0 auto 1rem;
    padding: 0 0.35rem;
  }

  .book-premium .book-heading {
    font-size: clamp(1.4rem, 6.2vw, 1.8rem);
    margin-top: 0.55rem;
    line-height: 1.2;
  }

  .book-premium .book-intro {
    margin-top: 0.5rem;
    font-size: 0.82rem;
    line-height: 1.5;
    max-width: 36ch;
  }

  .book-main {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 100%;
  }

  /* Form-first on mobile: hide image + highlight aside */
  .book-premium .book-aside {
    display: none;
  }

  .book-premium .book-panel {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 1.35rem 1.1rem 1.25rem;
    border-radius: 16px;
    box-sizing: border-box;
    background: #fff;
    border: 1px solid rgba(45, 139, 78, 0.1);
    box-shadow: 0 10px 28px rgba(0, 62, 98, 0.06);
  }

  .book-premium .book-panel-title {
    font-family: var(--font-serif);
    font-size: clamp(1.25rem, 5.8vw, 1.45rem);
    font-weight: 600;
    line-height: 1.25;
    text-align: center;
    color: #003e62;
  }

  .book-premium .book-panel-desc {
    margin-top: 0.4rem;
    font-size: 0.8rem;
    line-height: 1.5;
    text-align: center;
    color: var(--text-muted);
  }

  .book-premium .book-form {
    margin-top: 1.05rem;
    gap: 0.85rem;
  }

  .book-premium .book-field-row {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
  }

  .book-premium .book-field {
    min-width: 0;
    width: 100%;
  }

  .book-premium .book-field label {
    display: block;
    margin-bottom: 0.32rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: #003E62;
  }

  .book-premium .book-field label span {
    font-weight: 500;
    color: #2d8b4e;
  }

  .book-premium .book-field input,
  .book-premium .book-field select,
  .book-premium .book-field textarea {
    box-sizing: border-box;
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0.78rem 0.95rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 42, 69, 0.14);
    background: #fff;
    font-size: 1rem; /* prevents iOS zoom on focus */
    line-height: 1.35;
    min-height: 2.9rem;
    color: var(--text-dark);
  }

  .book-premium .book-field input::placeholder,
  .book-premium .book-field textarea::placeholder {
    color: #9AA8B5;
    opacity: 1;
  }

  .book-premium .book-field textarea {
    min-height: 5rem;
    padding-top: 0.8rem;
    resize: vertical;
  }

  .book-premium .book-field select {
    -webkit-appearance: none;
    appearance: none;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23003E62' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.9rem center;
    background-size: 0.95rem;
    padding-right: 2.4rem;
    color: #5A6D7D;
  }

  .book-premium .book-field input[type="date"] {
    min-height: 2.9rem;
    color: #5A6D7D;
  }

  .book-premium .book-field input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0.7;
    cursor: pointer;
    margin-right: 0.15rem;
  }

  .book-premium .book-submit,
  .book-premium .btn-primary.book-submit {
    margin-top: 0.2rem;
    width: 100%;
    min-height: 3.1rem;
    padding: 0.9rem 1.25rem;
    justify-content: center;
    text-align: center;
  }

  .book-premium .book-submit:hover,
  .book-premium .btn-primary.book-submit:hover {
    transform: translateY(-1px);
  }

  .book-premium .book-assurance {
    display: none;
  }

  .book-premium .book-trust-strip {
    display: none;
  }
}


/* ==========================================================================
   Contact Information ? aligned premium layout
   ========================================================================== */

.contact-info {
  margin-top: clamp(2rem, 4vw, 3rem);
  padding: clamp(2.25rem, 4.5vw, 3.25rem) clamp(1.25rem, 3vw, 2rem) clamp(1.25rem, 2.5vw, 1.75rem);
}

.contact-info-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info-header {
  max-width: 720px;
  margin: 0 auto clamp(2rem, 4vw, 2.75rem);
  text-align: center;
}

.contact-info-header .abt-kicker {
  width: 100%;
  justify-content: center;
}

.contact-info-header .abt-kicker-leaf--mirror {
  transform: scaleX(-1);
}

.contact-info-header h2 {
  margin: 1rem 0 0;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.4vw, 2.65rem);
  font-weight: 600;
  line-height: 1.15;
  color: #003e62;
  text-align: center;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
  align-items: stretch;
}

.contact-info .contact-info-card {
  height: 100%;
  align-items: flex-start;
  padding: clamp(1.25rem, 2.5vw, 1.65rem);
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid rgba(45, 139, 78, 0.12);
  box-shadow: 0 18px 44px rgba(0, 62, 98, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info .contact-info-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(0, 62, 98, 0.1);
}

.contact-info .contact-info-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 12px;
  background: rgba(45, 139, 78, 0.1);
  color: var(--forest-green);
}

.contact-info .contact-info-icon svg {
  width: 1.2rem;
  height: 1.2rem;
  stroke: currentColor;
  stroke-width: 1.6;
  fill: none;
}

.contact-info-body {
  flex: 1;
  min-width: 0;
}

.contact-info .contact-info-card h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  font-weight: 600;
  color: var(--forest-green);
}

.contact-info .contact-info-card p {
  margin: 0.5rem 0 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.contact-info .contact-info-card a {
  color: var(--forest-green);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.contact-info .contact-info-card a:hover {
  color: var(--gold-accent);
  text-decoration: underline;
}

@media (max-width: 991px) {
  .contact-info-grid {
    grid-template-columns: 1fr;
  }
}


/* ==========================================================================
   Section stack ? flush panels, no ivory gaps between sections
   ========================================================================== */

.page-shell > section + section {
  margin-top: 0;
  border-top: none;
}

.page-shell > section:first-of-type {
  margin-top: clamp(2rem, 4vw, 3.5rem);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.page-shell > section:not(:first-of-type):not(:last-of-type) {
  border-radius: 0;
}

.page-shell > section:last-of-type {
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}

.page-shell > section:only-of-type {
  border-radius: var(--radius-xl);
}

.page-shell > section.abt-split {
  margin-top: clamp(2rem, 4vw, 3.5rem);
}

.site-footer {
  margin-top: 0;
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}

/* Keep footer visible ? reveal opacity was leaving a large blank gap after contact */
.site-footer.reveal {
  opacity: 1;
  transform: none;
}

/* ==========================================================================
   About Page ? premium styling
   ========================================================================== */

#about-page > section {
  margin-top: 0;
}

#about-page .abt-hero--premium {
  position: relative;
  min-height: clamp(280px, 42vh, 420px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(3rem, 7vw, 5rem) clamp(1.5rem, 4vw, 3rem);
  background:
    linear-gradient(165deg, rgba(249, 247, 242, 0.94) 0%, rgba(255, 255, 255, 0.88) 45%, rgba(242, 236, 220, 0.92) 100%),
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(45, 139, 78, 0.12), transparent 70%);
  border: 1px solid rgba(45, 139, 78, 0.12);
  box-shadow: 0 24px 56px rgba(0, 62, 98, 0.06);
}

#about-page .abt-hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: radial-gradient(circle at 20% 30%, rgba(74, 159, 212, 0.15) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 70%, rgba(45, 139, 78, 0.12) 0 1px, transparent 1px);
  background-size: 28px 28px, 32px 32px;
  pointer-events: none;
}

#about-page .abt-breadcrumb {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

#about-page .abt-breadcrumb a {
  color: var(--forest-green);
  text-decoration: none;
  transition: color 0.2s ease;
}

#about-page .abt-breadcrumb a:hover {
  color: var(--gold-accent);
}

#about-page .abt-breadcrumb-sep {
  color: rgba(45, 139, 78, 0.45);
}

#about-page .abt-breadcrumb [aria-current="page"] {
  color: var(--gold-accent);
}

#about-page .abt-hero h1 {
  max-width: none;
  font-size: clamp(2.4rem, 5vw, 3.75rem);
  font-weight: 600;
  color: #003e62;
}

#about-page .abt-intro-section {
  margin-top: 0;
  padding: 0 clamp(1.25rem, 4vw, 2.75rem);
  overflow: visible;
  background: transparent;
  border: none;
  box-shadow: none;
}

#about-page .abt-intro-shell {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius-xl) + 4px);
  background:
    linear-gradient(145deg, #ffffff 0%, #F7F9FB 48%, #F0F3F6 100%);
  border: 1px solid rgba(45, 139, 78, 0.12);
  box-shadow:
    0 24px 56px rgba(0, 62, 98, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

#about-page .abt-intro-shell::before {
  content: none;
}

#about-page .abt-intro-section .about-main {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(320px, 1.05fr);
  align-items: stretch;
  gap: 0;
  max-width: none;
  margin: 0;
  min-height: clamp(420px, 52vw, 560px);
}

#about-page .abt-intro-section .about-visual {
  position: relative;
  align-self: stretch;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  order: 0;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  padding-right: clamp(1rem, 2vw, 1.5rem);
  overflow: visible;
}

#about-page .abt-intro-section .about-visual::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(34vw, 320px);
  height: min(34vw, 320px);
  border-radius: 50%;
  border: 1.5px solid rgba(74, 159, 212, 0.26);
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
}

#about-page .abt-intro-section .about-visual::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 6%;
  width: min(44vw, 420px);
  height: min(14vw, 120px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 159, 212, 0.2) 0%, rgba(74, 159, 212, 0.08) 42%, transparent 72%);
  filter: blur(20px);
  transform: translateX(-50%);
  z-index: 0;
  pointer-events: none;
}

#about-page .abt-intro-section .about-image-wrap {
  position: relative;
  inset: auto;
  width: 100%;
  max-width: 520px;
  height: 100%;
  min-height: clamp(420px, 48vw, 560px);
  border-radius: calc(var(--radius-lg) + 6px);
  background: #F0F3F6;
  border: 1px solid rgba(74, 159, 212, 0.18);
  box-shadow: 0 28px 60px rgba(0, 62, 98, 0.1);
  overflow: hidden;
  z-index: 1;
}

#about-page .abt-intro-section .about-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 62%, rgba(253, 251, 247, 0.28) 88%, rgba(253, 251, 247, 0.55) 100%),
    linear-gradient(180deg, rgba(0, 42, 69, 0.05) 0%, transparent 22%, transparent 78%, rgba(0, 42, 69, 0.08) 100%);
  pointer-events: none;
  z-index: 1;
}

#about-page .abt-intro-section .about-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  padding: 0;
  filter: contrast(1.03) saturate(1.05);
  transform: scale(1.01);
  transition: transform 0.7s ease;
}

#about-page .abt-intro-section .about-visual:hover .about-image {
  transform: scale(1.045);
}

#about-page .abt-intro-section .about-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(2.75rem, 5.5vw, 4.75rem) clamp(2.5rem, 6vw, 5.5rem) clamp(2.75rem, 5.5vw, 4.75rem) clamp(2rem, 4.5vw, 3.75rem);
  background: transparent;
}

#about-page .abt-intro-section .about-content-inner {
  width: 100%;
  max-width: 34rem;
}

#about-page .abt-intro-section .about-content .abt-kicker {
  margin: 0;
}

#about-page .abt-intro-section .about-content .abt-kicker-label {
  letter-spacing: 0.24em;
  font-size: 0.72rem;
  color: var(--sage-green);
}

#about-page .abt-intro-section .about-content h1 {
  margin: 1.15rem 0 0;
  font-family: "Cormorant Garamond", var(--font-serif);
  font-size: clamp(2.35rem, 4.2vw, 3.45rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #003e62;
  max-width: 15ch;
}

#about-page .abt-intro-section .about-content h1::after {
  content: "";
  display: block;
  width: 3.25rem;
  height: 2px;
  margin-top: 1rem;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--forest-green), var(--gold-accent));
}

#about-page .abt-intro-section .about-tagline {
  margin: 1.15rem 0 0;
  font-family: "Cormorant Garamond", var(--font-serif);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.4;
  color: #786632;
}

#about-page .abt-intro-section .about-description {
  margin: 1.35rem 0 0;
  max-width: 44ch;
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--text-muted);
  text-align: left;
}

#about-page .abt-intro-section .about-cta {
  margin-top: 2rem;
  align-self: flex-start;
  width: auto;
  max-width: none;
  border-radius: 999px;
  padding: 0.95rem 1.65rem;
}

#about-page .abt-intro-section .about-cta svg {
  width: 1.05rem;
  height: 1.05rem;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#about-page .about-image-wrap {
  box-shadow: 0 28px 64px rgba(0, 62, 98, 0.12);
  border: 1px solid rgba(74, 159, 212, 0.2);
}

#about-page .impact-section.impact-premium {
  margin-top: 0;
}

#about-page .impact-stats {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

#about-page .abt-vm-section {
  margin-top: 0;
}

#about-page .abt-vm-section--founders {
  background: linear-gradient(180deg, #F7F9FB 0%, #f0f3f6 55%, #F0F3F6 100%);
  padding-top: clamp(2.75rem, 5.5vw, 4rem);
  padding-bottom: clamp(2.75rem, 5.5vw, 4rem);
}

#about-page .abt-vm-section--founders .abt-section-header {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

#about-page .abt-vm-section--founders .abt-section-header h2 {
  margin-top: 0;
}

#about-page .abt-vm-section--founders .abt-section-intro {
  margin-top: 1.15rem;
}

#about-page .abt-founder-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 880px;
  margin: 0 auto;
}

#about-page .abt-founder-card {
  padding: clamp(2rem, 4vw, 2.75rem) clamp(1.5rem, 3vw, 2rem);
  border-radius: 28px;
  text-align: center;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease;
}

#about-page .abt-founder-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-elevated);
}

#about-page .abt-founder-portrait {
  width: 5.5rem;
  height: 5.5rem;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #fff;
  background: linear-gradient(145deg, #003e62 0%, #002a45 100%);
  border: 3px solid rgba(74, 159, 212, 0.45);
  box-shadow: 0 12px 28px rgba(0, 62, 98, 0.2);
}

#about-page .abt-founder-portrait--alt {
  background: linear-gradient(145deg, #2d8b4e 0%, #003e62 100%);
}

#about-page .abt-founder-card h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.2vw, 1.65rem);
  font-weight: 600;
  color: var(--deep-navy);
}

#about-page .abt-founder-role {
  margin: 0.45rem 0 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-accent);
}

#about-page .abt-founder-bio {
  margin: 1rem 0 0;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-muted);
}

#about-page .heritage-section--story {
  margin-top: 0;
}

#about-page .heritage-section--story .heritage-inner {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

#about-page .heritage-section--story .heritage-content {
  display: flex;
  flex-direction: column;
  grid-template-columns: unset;
}

#about-page .heritage-section--story .heritage-media {
  min-height: 460px;
  box-shadow: 0 24px 56px rgba(0, 62, 98, 0.1);
  border: 0;
}

#about-page .heritage-section--story .heritage-image {
  object-position: center 35%;
}

#about-page .heritage-section--story .heritage-heading {
  line-height: 1.16;
  overflow: visible;
  padding-bottom: 0.08em;
  margin-bottom: 0.35rem;
}

#about-page .heritage-section--story .heritage-desc {
  margin-top: 0.85rem;
}

#about-page .heritage-section--story .btn-primary {
  margin-top: 1.5rem;
  align-self: flex-start;
}

#about-page .abt-vm-section--pillars {
  background: linear-gradient(165deg, #f7f9fb 0%, #ffffff 50%, #f0f3f6 100%);
}

#about-page .abt-pillar-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(1.15rem, 2vw, 1.75rem);
  max-width: 1140px;
  margin: 0 auto;
}

#about-page .abt-pillar-card {
  grid-column: span 2;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease;
}

#about-page .abt-pillar-card:nth-child(4) {
  grid-column: 2 / span 2;
}

#about-page .abt-pillar-card:nth-child(5) {
  grid-column: 4 / span 2;
}

#about-page .abt-pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-medium);
}

#about-page .abt-pillar-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  font-family: var(--font-serif);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--forest-green);
  background: rgba(45, 139, 78, 0.1);
  border: 1px solid rgba(45, 139, 78, 0.15);
}

#about-page .abt-pillar-card h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  font-weight: 600;
  color: var(--forest-green);
}

#about-page .abt-pillar-card p {
  margin: 0.75rem 0 0;
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-muted);
}

#about-page #our-specialities.why-premium {
  margin-top: 0;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 4vw, 3.5rem);
}

#about-page .abt-spec-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: 1000px;
  margin: clamp(2rem, 4vw, 3rem) auto 0;
}

#about-page .abt-spec-card {
  padding: clamp(1.75rem, 3vw, 2.25rem) clamp(1.25rem, 2vw, 1.5rem);
  border-radius: 24px;
  text-align: center;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(45, 139, 78, 0.1);
  box-shadow: 0 12px 32px rgba(0, 62, 98, 0.05);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

#about-page .abt-spec-card:hover {
  transform: translateY(-6px);
  border-color: rgba(74, 159, 212, 0.35);
  box-shadow: 0 20px 44px rgba(0, 62, 98, 0.1);
}

#about-page .abt-spec-icon {
  display: inline-grid;
  place-items: center;
  width: 3.25rem;
  height: 3.25rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(45, 139, 78, 0.12), rgba(74, 159, 212, 0.1));
  border: 1px solid rgba(45, 139, 78, 0.15);
}

#about-page .abt-spec-icon svg {
  width: 1.35rem;
  height: 1.35rem;
  stroke: var(--forest-green);
  stroke-width: 1.6;
}

#about-page .abt-spec-card h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  font-weight: 600;
  color: var(--deep-navy);
}

#about-page .abt-spec-card p {
  margin: 0.4rem 0 0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-accent);
}

#about-page .testi-section--about {
  margin-top: 0;
}

#about-page .abt-vm-section--features {
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fb 55%, #f0f3f6 100%);
}

#about-page .abt-feature-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.15rem, 2vw, 1.75rem);
  max-width: 1000px;
  margin: 0 auto;
}

#about-page .abt-feature-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.15rem;
  align-items: start;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

#about-page .abt-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

#about-page .abt-feature-icon {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 14px;
  background: rgba(45, 139, 78, 0.1);
  flex-shrink: 0;
}

#about-page .abt-feature-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke: var(--forest-green);
  stroke-width: 1.6;
  fill: none;
}

#about-page .abt-feature-card h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 1.6vw, 1.25rem);
  font-weight: 600;
  color: var(--forest-green);
}

#about-page .abt-feature-card p {
  grid-column: 2;
  margin: 0.55rem 0 0;
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-muted);
}

#about-page .book-section.book-premium {
  margin-top: 0;
}

#about-page .abt-cta-panel {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid rgba(45, 139, 78, 0.12);
  box-shadow: 0 24px 56px rgba(0, 62, 98, 0.08);
}

#about-page .abt-cta-divider {
  width: 1px;
  align-self: stretch;
  min-height: 160px;
  background: linear-gradient(180deg, transparent, rgba(45, 139, 78, 0.25), transparent);
}

#about-page .abt-cta-label {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-accent);
}

#about-page .abt-cta-title {
  margin: 0.5rem 0 0;
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.2vw, 1.65rem);
  font-weight: 600;
  color: var(--forest-green);
}

#about-page .abt-cta-phones {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

#about-page .abt-cta-phones a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--deep-navy);
  text-decoration: none;
  transition: color 0.2s ease;
}

#about-page .abt-cta-phones a:hover {
  color: var(--gold-accent);
}

#about-page .abt-cta-email {
  margin: 0.75rem 0 0;
  font-size: 0.95rem;
  font-weight: 600;
}

#about-page .abt-cta-email a {
  color: var(--forest-green);
  text-decoration: none;
}

#about-page .abt-cta-email a:hover {
  color: var(--gold-accent);
}

#about-page .abt-cta-address {
  margin: 0.75rem 0 1.25rem;
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-muted);
}

@media (max-width: 991px) {
  #about-page .abt-intro-section {
    padding: 0 clamp(1rem, 3vw, 1.5rem);
  }

  #about-page .abt-intro-section .about-main {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  #about-page .abt-intro-section .about-visual {
    min-height: 0;
    padding: clamp(1rem, 3vw, 1.35rem);
    padding-bottom: 0;
  }

  #about-page .abt-intro-section .about-image-wrap {
    min-height: clamp(280px, 62vw, 380px);
  }

  #about-page .abt-intro-section .about-image-wrap::after {
    background: linear-gradient(180deg, transparent 58%, rgba(253, 251, 247, 0.35) 84%, rgba(253, 251, 247, 0.72) 100%);
  }

  #about-page .abt-intro-section .about-content {
    padding: clamp(1.75rem, 5vw, 2.5rem) clamp(1.5rem, 5vw, 2.25rem) clamp(2.25rem, 6vw, 3rem);
  }

  #about-page .abt-intro-section .about-content h1 {
    max-width: none;
  }

  #about-page .impact-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #about-page .abt-founder-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  #about-page .heritage-section--story .heritage-inner {
    grid-template-columns: 1fr;
  }

  #about-page .heritage-section--story .heritage-media {
    min-height: 320px;
  }

  #about-page .abt-pillar-grid {
    grid-template-columns: 1fr;
  }

  #about-page .abt-pillar-card,
  #about-page .abt-pillar-card:nth-child(4),
  #about-page .abt-pillar-card:nth-child(5) {
    grid-column: auto;
  }

  #about-page .abt-spec-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #about-page .abt-feature-grid {
    grid-template-columns: 1fr;
  }

  #about-page .abt-cta-panel {
    grid-template-columns: 1fr;
    text-align: center;
  }

  #about-page .abt-cta-divider {
    width: 100%;
    height: 1px;
    min-height: 0;
    background: linear-gradient(90deg, transparent, rgba(45, 139, 78, 0.25), transparent);
  }

  #about-page .abt-cta-col .btn-primary {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 600px) {
  #about-page .impact-stats {
    grid-template-columns: 1fr;
  }

  #about-page .abt-spec-grid {
    grid-template-columns: 1fr;
  }

  #about-page .abt-feature-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  #about-page .abt-feature-icon {
    margin: 0 auto;
  }

  #about-page .abt-feature-card p {
    grid-column: 1;
  }
}

/* ==========================================================================
   Nav dropdown ? Our Departments (Pharmaceuticals + Hospital)
   ========================================================================== */

.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 0;
  background: none;
  padding: 0;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.2s ease;
}

.nav-dropdown-trigger svg {
  width: 0.85rem;
  height: 0.85rem;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  transition: transform 0.2s ease;
}

.nav-dropdown-trigger:hover,
.nav-dropdown-trigger.active {
  color: var(--medical-blue);
}

.nav-dropdown.is-open .nav-dropdown-trigger svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.85rem);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 420px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 0;
  padding: 0.35rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(45, 139, 78, 0.14);
  box-shadow: 0 24px 56px rgba(0, 62, 98, 0.14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s ease;
  z-index: 200;
}

.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-col {
  padding: 1rem 1.1rem;
}

.nav-dropdown-col + .nav-dropdown-col {
  border-left: 1px solid rgba(45, 139, 78, 0.1);
}

.nav-dropdown-heading {
  margin: 0 0 0.65rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-accent);
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.45rem 0.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--text-muted);
  transition:
    background 0.15s ease,
    color 0.15s ease;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active {
  background: rgba(45, 139, 78, 0.08);
  color: var(--forest-green);
}

.nav-drawer-group {
  border-bottom: 1px solid rgba(45, 139, 78, 0.08);
}

.nav-drawer-group-trigger {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  padding: 1rem 1.25rem;
  border: 0;
  background: none;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
  text-align: left;
}

.nav-drawer-group-trigger svg:first-child {
  width: 1.15rem;
  height: 1.15rem;
  stroke: var(--forest-green);
  stroke-width: 1.6;
  fill: none;
  flex-shrink: 0;
}

.nav-drawer-chevron {
  width: 1rem;
  height: 1rem;
  margin-left: auto;
  stroke: var(--text-muted);
  stroke-width: 2;
  fill: none;
  transition: transform 0.2s ease;
}

.nav-drawer-group.is-open .nav-drawer-chevron {
  transform: rotate(180deg);
}

.nav-drawer-submenu {
  display: none;
  padding: 0 1.25rem 1rem 2.75rem;
}

.nav-drawer-group.is-open .nav-drawer-submenu {
  display: block;
}

.nav-drawer-subheading {
  margin: 0.85rem 0 0.35rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-accent);
}

.nav-drawer-subheading:first-child {
  margin-top: 0;
}

.nav-drawer-sublink {
  display: block;
  padding: 0.45rem 0;
  text-decoration: none;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.nav-drawer-sublink:hover,
.nav-drawer-sublink.active {
  color: var(--forest-green);
}

/* ==========================================================================
   Departments page ? Pharmaceuticals + Hospital divisions
   ========================================================================== */

.dept-division-section {
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

.dept-division-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) 1.05fr;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(45, 139, 78, 0.12);
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.dept-division-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-elevated);
}

.dept-division-card .dept-card-media {
  min-height: 260px;
}

.dept-division-card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.5rem, 3vw, 2.25rem);
}

.dept-division-card-body h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  font-weight: 600;
  color: var(--forest-green);
}

.dept-division-card-body p {
  margin: 0.65rem 0 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.dept-card-media--pharma {
  background: linear-gradient(145deg, #F0F3F6, #f0f3f6);
}

/* ==========================================================================
   Pharmaceuticals page
   ========================================================================== */

#pharma-page .pharma-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pharma-clinic-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}

.pharma-clinic-card {
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(45, 139, 78, 0.1);
  box-shadow: var(--shadow-soft);
}

.pharma-clinic-card h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--deep-navy);
}

.pharma-clinic-label {
  margin: 0.35rem 0 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--medical-blue);
}

.pharma-clinic-address {
  margin: 0.65rem 0 0;
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.pharma-clinic-phone {
  margin: 0.75rem 0 0;
  font-size: 0.92rem;
  font-weight: 600;
}

.pharma-clinic-phone a {
  color: var(--forest-green);
  text-decoration: none;
}

.pharma-clinic-phone a:hover {
  color: var(--gold-accent);
}

.pharma-products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.85rem, 1.8vw, 1.15rem);
  align-items: stretch;
}

.pharma-product-card {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-height: 7.5rem;
  height: 100%;
  padding: clamp(1.1rem, 2vw, 1.35rem) clamp(1.1rem, 2vw, 1.4rem);
  border-radius: calc(var(--radius-md) + 2px);
  background: #ffffff;
  border: 1px solid rgba(45, 139, 78, 0.12);
  box-shadow: 0 8px 22px rgba(0, 62, 98, 0.04);
  text-align: left;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.pharma-product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(45, 139, 78, 0.22);
  box-shadow: 0 14px 32px rgba(0, 62, 98, 0.09);
}

.pharma-product-card h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--forest-green);
}

.pharma-product-card p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.pharma-appointment-phones {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  margin: 0 0 1.75rem;
  padding: 0;
  list-style: none;
}

.pharma-appointment-phones a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--forest-green);
  text-decoration: none;
}

.pharma-appointment-phones a:hover {
  color: var(--gold-accent);
}

@media (max-width: 991px) {
  .nav-dropdown-menu {
    display: none;
  }

  .dept-division-card {
    grid-template-columns: 1fr;
  }

  .dept-division-card--compact {
    grid-template-columns: 1fr;
  }

  .pharma-clinic-grid {
    grid-template-columns: 1fr;
  }

  #pharma-page .pharma-stats {
    grid-template-columns: 1fr;
  }

  .pharma-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .pharma-products-grid {
    grid-template-columns: 1fr;
  }
}

/* Homepage & departments page ? division blocks */

.dept-divisions {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 3.5rem);
  max-width: 1200px;
  margin: 0 auto;
}

.dept-division-block {
  position: relative;
  z-index: 2;
}

.dept-division-label {
  margin: 0 0 1.25rem;
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.2vw, 1.65rem);
  font-weight: 600;
  color: var(--forest-green);
  text-align: center;
}

.dept-division-subheading {
  margin: 0 0 0.75rem;
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-weight: 600;
  color: var(--forest-green);
  text-align: center;
}

.dept-division-content {
  max-width: 900px;
  margin: 0 auto clamp(2rem, 4vw, 2.75rem);
}

.dept-division-content .dept-detail-description + .dept-detail-description {
  margin-top: 1rem;
}

.dept-division-stats,
.dept-division-clinics {
  max-width: 1000px;
  margin: 0 auto clamp(2rem, 4vw, 2.75rem);
}

.dept-division-stats .dept-intro,
.dept-division-clinics .dept-intro {
  text-align: center;
  margin-bottom: 1.5rem;
}

.dept-division-card--compact {
  max-width: 720px;
  margin: 0 auto;
}

.dept-division-card--compact h4 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  color: var(--forest-green);
}

.dept-division-card--compact p {
  margin: 0.65rem 0 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.dept-division-card--compact .dept-card-media {
  min-height: 200px;
}

#featured-departments .dept-division-block .dept-grid {
  margin-top: 0;
}

/* Departments landing ? two intro cards */

.dept-intro-page {
  position: relative;
  padding: clamp(2rem, 5vw, 4rem) clamp(1.25rem, 4vw, 2.5rem) clamp(4rem, 8vw, 6rem);
}

.dept-intro-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 1100px;
  margin: 0 auto;
}

.dept-intro-card {
  display: flex;
  flex-direction: column;
  background: var(--surface-elevated, rgba(255, 255, 255, 0.72));
  border: 1px solid rgba(45, 90, 61, 0.12);
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(26, 58, 42, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.dept-intro-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(26, 58, 42, 0.12);
}

.dept-intro-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.dept-intro-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.dept-intro-card:hover .dept-intro-card-media img {
  transform: scale(1.04);
}

.dept-intro-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(20, 45, 32, 0.35) 100%);
  pointer-events: none;
}

.dept-intro-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: clamp(1.25rem, 3vw, 1.75rem);
}

.dept-intro-card-body .dept-label {
  margin-bottom: 0.5rem;
}

.dept-intro-card-body h2 {
  margin: 0 0 1rem;
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.2vw, 1.65rem);
  font-weight: 600;
  color: var(--forest-green);
  line-height: 1.25;
}

.dept-intro-card-desc {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.dept-intro-card-desc + .dept-intro-card-desc {
  margin-top: 0.85rem;
}

.dept-intro-card-cta {
  margin-top: auto;
  padding-top: 1.5rem;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.dept-intro-card-cta svg {
  width: 1.1rem;
  height: 1.1rem;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 767px) {
  .dept-intro-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Departments Page ? premium styling
   ========================================================================== */

#departments-page > section {
  margin-top: 0;
}

#departments-page .dept-hero {
  margin-top: 0;
}

#departments-page .abt-hero--premium {
  position: relative;
  min-height: clamp(280px, 42vh, 420px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(3rem, 7vw, 5rem) clamp(1.5rem, 4vw, 3rem);
  background:
    linear-gradient(165deg, rgba(249, 247, 242, 0.94) 0%, rgba(255, 255, 255, 0.88) 45%, rgba(242, 236, 220, 0.92) 100%),
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(45, 139, 78, 0.12), transparent 70%);
  border: 1px solid rgba(45, 139, 78, 0.12);
  box-shadow: 0 24px 56px rgba(0, 62, 98, 0.06);
  border-radius: var(--radius-xl);
}

#departments-page .abt-hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(74, 159, 212, 0.15) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 70%, rgba(45, 139, 78, 0.12) 0 1px, transparent 1px);
  background-size: 28px 28px, 32px 32px;
  pointer-events: none;
}

#departments-page .abt-breadcrumb {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

#departments-page .abt-breadcrumb a {
  color: var(--forest-green);
  text-decoration: none;
  transition: color 0.2s ease;
}

#departments-page .abt-breadcrumb a:hover {
  color: var(--gold-accent);
}

#departments-page .abt-breadcrumb-sep {
  color: rgba(45, 139, 78, 0.45);
}

#departments-page .abt-breadcrumb [aria-current="page"] {
  color: var(--gold-accent);
}

#departments-page .dept-hero .abt-kicker {
  position: relative;
  z-index: 2;
  justify-content: center;
}

#departments-page .dept-hero h1 {
  position: relative;
  z-index: 2;
  max-width: 18ch;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 600;
  color: #003e62;
}

#departments-page .dept-intro-page--premium {
  position: relative;
  margin-top: 0;
  padding: clamp(3.25rem, 7vw, 5rem) clamp(1.5rem, 4vw, 3rem) clamp(4.5rem, 9vw, 6rem);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(252, 250, 245, 0.98) 0%, rgba(255, 255, 255, 0.96) 42%, rgba(249, 247, 242, 0.94) 100%);
  border: 1px solid rgba(45, 139, 78, 0.12);
  box-shadow:
    0 24px 56px rgba(0, 62, 98, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

#departments-page .dept-intro-page-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

#departments-page .dept-intro-page-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

#departments-page .dept-intro-page-glow--1 {
  width: 45%;
  height: 40%;
  top: -10%;
  left: -5%;
  background: rgba(45, 139, 78, 0.08);
}

#departments-page .dept-intro-page-glow--2 {
  width: 40%;
  height: 35%;
  bottom: -8%;
  right: -5%;
  background: rgba(74, 159, 212, 0.07);
}

#departments-page .dept-intro-leaf {
  position: absolute;
  width: clamp(80px, 12vw, 140px);
  opacity: 0.12;
  pointer-events: none;
}

#departments-page .dept-intro-leaf--tl {
  top: 2%;
  left: 2%;
  transform: rotate(-25deg);
}

#departments-page .dept-intro-leaf--br {
  bottom: 4%;
  right: 3%;
  transform: rotate(155deg) scaleX(-1);
}

#departments-page .dept-intro-page-header {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto clamp(3rem, 6vw, 4rem);
  text-align: center;
}

#departments-page .dept-intro-page-header .abt-kicker {
  justify-content: center;
}

#departments-page .dept-intro-page-title {
  margin: 1rem 0 0;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.8vw, 2.85rem);
  font-weight: 600;
  color: #003e62;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

#departments-page .dept-intro-page-lead {
  margin: 1.15rem auto 0;
  max-width: 58ch;
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--text-muted);
}

#departments-page .dept-intro-grid {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: clamp(2.25rem, 4.5vw, 3.25rem);
  max-width: 980px;
  margin: 0 auto;
}

#departments-page .dept-intro-card--premium {
  position: relative;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(45, 139, 78, 0.14);
  border-radius: calc(var(--radius-xl) - 2px);
  box-shadow:
    0 8px 32px rgba(0, 62, 98, 0.07),
    0 1px 0 rgba(255, 255, 255, 0.95) inset;
  overflow: visible;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease;
}

#departments-page .dept-intro-card--premium:hover {
  transform: translateY(-8px);
  box-shadow:
    0 32px 72px rgba(0, 62, 98, 0.14),
    0 1px 0 rgba(255, 255, 255, 0.95) inset;
}

#departments-page .dept-intro-card-badge {
  position: absolute;
  top: -0.65rem;
  left: clamp(1.25rem, 3vw, 1.75rem);
  z-index: 3;
  padding: 0.35rem 0.85rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #003e62 0%, #2D8B4E 100%);
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0, 62, 98, 0.25);
}

#departments-page .dept-intro-card-badge--hospital {
  background: linear-gradient(135deg, #003E62 0%, #4A9FD4 100%);
  box-shadow: 0 4px 12px rgba(74, 159, 212, 0.3);
}

#departments-page .dept-intro-card-inner {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: calc(var(--radius-xl) - 4px);
}

#departments-page .dept-intro-card--premium .dept-intro-card-media {
  aspect-ratio: 16 / 10;
  background:
    linear-gradient(145deg, rgba(249, 247, 242, 0.98) 0%, rgba(255, 255, 255, 0.95) 55%, rgba(242, 236, 220, 0.4) 100%);
}

#departments-page .dept-intro-card-media--logo img {
  object-fit: contain;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  transform: none;
}

#departments-page .dept-intro-card--premium:hover .dept-intro-card-media--logo img {
  transform: scale(1.03);
}

#departments-page .dept-intro-card--premium .dept-intro-card-overlay {
  background: linear-gradient(
    180deg,
    transparent 55%,
    rgba(20, 45, 32, 0.06) 85%,
    rgba(20, 45, 32, 0.18) 100%
  );
}

#departments-page .dept-intro-card-media--logo .dept-intro-card-overlay {
  background: linear-gradient(
    135deg,
    rgba(74, 159, 212, 0.04) 0%,
    transparent 50%,
    rgba(45, 139, 78, 0.06) 100%
  );
}

#departments-page .dept-intro-card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.75rem, 3.5vw, 2.5rem);
}

#departments-page .dept-intro-card-body .dept-label {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold-accent);
}

#departments-page .dept-intro-card-body h2 {
  margin: 0 0 1rem;
  font-family: var(--font-serif);
  font-size: clamp(1.45rem, 2.5vw, 1.85rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--forest-green);
  line-height: 1.22;
}

#departments-page .dept-intro-card-desc {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.72;
  color: var(--text-muted);
}

#departments-page .dept-intro-card-desc:first-of-type {
  font-size: 0.98rem;
  color: rgba(51, 66, 31, 0.82);
}

#departments-page .dept-intro-card-desc + .dept-intro-card-desc {
  margin-top: 0.85rem;
}

#departments-page .dept-intro-card-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

#departments-page .dept-intro-card-stats li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  padding: 0.65rem 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
  color: var(--forest-green);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(249, 247, 242, 0.88));
  border: 1px solid rgba(45, 139, 78, 0.14);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 10px rgba(0, 62, 98, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

#departments-page .dept-intro-card-stats strong {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  color: var(--gold-accent);
  line-height: 1.1;
}

#departments-page .dept-intro-card-cta {
  align-self: flex-start;
  margin-top: 1.75rem;
  padding: 0.9rem 1.65rem;
  border-radius: 999px;
  font-size: 0.875rem;
  box-shadow: 0 8px 24px rgba(0, 62, 98, 0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

#departments-page .dept-page-cta {
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

#departments-page .dept-page-cta .book-header {
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
}

#departments-page .dept-page-cta .abt-cta-panel {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 2.75rem);
}

#departments-page .dept-page-cta .abt-cta-divider {
  width: 1px;
  align-self: stretch;
  min-height: 180px;
  background: linear-gradient(180deg, transparent, rgba(45, 139, 78, 0.28), transparent);
}

#departments-page .dept-page-cta .abt-cta-label {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-accent);
}

#departments-page .dept-page-cta .abt-cta-title {
  margin: 0.5rem 0 0;
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.2vw, 1.65rem);
  font-weight: 600;
  color: var(--forest-green);
}

#departments-page .dept-page-cta .abt-cta-phones {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

#departments-page .dept-page-cta .abt-cta-phones a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--deep-navy);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

#departments-page .dept-page-cta .abt-cta-phones a::before {
  content: "";
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-accent);
  opacity: 0.65;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

#departments-page .dept-page-cta .abt-cta-phones a:hover {
  color: var(--gold-accent);
}

#departments-page .dept-page-cta .abt-cta-phones a:hover::before {
  opacity: 1;
  transform: scale(1.2);
}

#departments-page .dept-page-cta .abt-cta-email {
  margin: 0.75rem 0 0;
  font-size: 0.95rem;
  font-weight: 600;
}

#departments-page .dept-page-cta .abt-cta-email a {
  color: var(--forest-green);
  text-decoration: none;
  transition: color 0.2s ease;
}

#departments-page .dept-page-cta .abt-cta-email a:hover {
  color: var(--gold-accent);
}

#departments-page .dept-page-cta .abt-cta-address {
  margin: 0.75rem 0 0;
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-muted);
}

#departments-page .dept-page-cta .abt-cta-col--action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

#departments-page .dept-page-cta .abt-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  margin-top: 1.25rem;
}

#departments-page .dept-page-cta .abt-cta-actions .btn-primary,
#departments-page .dept-page-cta .abt-cta-actions .btn-secondary {
  width: 100%;
  max-width: 240px;
  justify-content: center;
}

#departments-page .dept-page-cta .abt-cta-col--action .btn-secondary {
  border-color: rgba(45, 139, 78, 0.3);
  color: var(--forest-green);
  background: rgba(255, 255, 255, 0.85);
}

#departments-page .dept-page-cta .abt-cta-col--action .btn-secondary:hover {
  border-color: rgba(45, 139, 78, 0.45);
  background: rgba(45, 139, 78, 0.06);
  color: var(--forest-green);
}

@media (min-width: 900px) {
  #departments-page .dept-intro-card-inner {
    flex-direction: row;
    align-items: stretch;
  }

  #departments-page .dept-intro-card--premium .dept-intro-card-media {
    aspect-ratio: auto;
    min-height: 100%;
  }

  #departments-page .dept-intro-card--premium .dept-intro-card-media img {
    height: 100%;
  }

  #departments-page .dept-intro-card-body {
    flex: 1;
    justify-content: center;
  }
}

@media (max-width: 899px) {
  #departments-page .dept-intro-grid {
    grid-template-columns: 1fr;
  }

  #departments-page .dept-intro-page {
    padding-left: 1.15rem;
    padding-right: 1.15rem;
  }

  #departments-page .dept-intro-card-body {
    justify-content: flex-start;
    flex: none;
    padding: 1.4rem 1.2rem 1.35rem;
  }

  #departments-page .dept-intro-card-body::before {
    left: 1.2rem;
    right: 1.2rem;
  }

  #departments-page .dept-intro-card-body h2 {
    margin-bottom: 0.7rem;
  }

  #departments-page .dept-intro-card-desc + .dept-intro-card-desc {
    margin-top: 0.6rem;
  }

  #departments-page .dept-intro-card-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
    width: 100%;
    margin: 1rem 0 0;
  }

  #departments-page .dept-intro-card-stats li {
    display: grid;
    grid-template-columns: 5.5rem minmax(0, 1fr);
    align-items: center;
    justify-content: stretch;
    column-gap: 0.85rem;
    width: 100%;
    box-sizing: border-box;
    padding: 0.72rem 1rem;
    text-align: left;
    flex-direction: row;
  }

  #departments-page .dept-intro-card-stats strong {
    width: 100%;
    font-size: 1.12rem;
    text-align: left;
    line-height: 1;
  }

  #departments-page .dept-intro-card-cta {
    align-self: stretch;
    justify-content: center;
    width: 100%;
    margin-top: 1.05rem;
    padding: 0.9rem 1.25rem;
    box-sizing: border-box;
  }

  #departments-page .dept-intro-card-index {
    top: 0.7rem;
    right: 0.95rem;
    font-size: 2.4rem;
  }
}

@media (max-width: 640px) {
  #departments-page .dept-page-cta .abt-cta-panel {
    grid-template-columns: 1fr;
    text-align: center;
  }

  #departments-page .dept-page-cta .abt-cta-divider {
    width: 60%;
    height: 1px;
    min-height: 0;
    margin: 0 auto;
    background: linear-gradient(90deg, transparent, rgba(45, 139, 78, 0.28), transparent);
  }

  #departments-page .dept-page-cta .abt-cta-col--action {
    align-items: center;
  }

  #departments-page .dept-page-cta .abt-cta-actions {
    align-items: center;
  }

  #departments-page .dept-page-cta .abt-cta-phones a {
    justify-content: center;
  }
}

/* ==========================================================================
   Pharmaceuticals Page ? premium styling
   ========================================================================== */

#pharma-page > section {
  margin-top: 0;
}

#pharma-page .pharma-hero {
  position: relative;
  margin-top: 0;
  padding: clamp(1.75rem, 3.5vw, 2.5rem) clamp(1.25rem, 3vw, 2rem) clamp(2.5rem, 5vw, 3.5rem);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #F7F9FB;
  border: 1px solid rgba(45, 139, 78, 0.1);
  box-shadow: 0 20px 48px rgba(0, 62, 98, 0.06);
}

#pharma-page .pharma-hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image: radial-gradient(circle at 12% 80%, rgba(45, 139, 78, 0.07) 0 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

#pharma-page .pharma-breadcrumb {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto 1.5rem;
  padding: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

#pharma-page .pharma-breadcrumb a {
  color: var(--forest-green);
  text-decoration: none;
  transition: color 0.2s ease;
}

#pharma-page .pharma-breadcrumb a:hover {
  color: var(--gold-accent);
}

#pharma-page .pharma-breadcrumb [aria-current="page"] {
  color: var(--gold-accent);
}

#pharma-page .pharma-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.85fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

#pharma-page .pharma-hero .abt-kicker {
  margin-bottom: 0.85rem;
}

#pharma-page .pharma-hero-badge {
  display: inline-block;
  margin-bottom: 0.85rem;
  padding: 0.35rem 0.9rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: #003e62;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(0, 62, 98, 0.18);
}

#pharma-page .pharma-hero h1 {
  margin: 0;
  font-family: "Cormorant Garamond", var(--font-serif);
  font-size: clamp(2.35rem, 4.8vw, 3.6rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #003e62;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
}

#pharma-page .pharma-hero .dept-detail-banner-lead {
  margin: 1.15rem 0 0;
  max-width: 42ch;
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--text-muted);
}

#pharma-page .pharma-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

#pharma-page .pharma-hero-actions .btn-primary,
#pharma-page .pharma-hero-actions .btn-secondary {
  border-radius: 999px;
  padding: 0.9rem 1.65rem;
}

#pharma-page .pharma-hero-actions .btn-secondary {
  border-color: rgba(45, 139, 78, 0.28);
  color: var(--forest-green);
  background: rgba(255, 255, 255, 0.7);
}

#pharma-page .pharma-hero-media {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 420px;
  margin-left: auto;
  border-radius: calc(var(--radius-xl) - 4px);
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.98) 0%, rgba(249, 247, 242, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow:
    0 28px 64px rgba(0, 62, 98, 0.12),
    0 0 0 1px rgba(45, 139, 78, 0.08);
  outline: none;
}

#pharma-page .pharma-hero-media::before {
  display: none;
}

#pharma-page .pharma-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: clamp(1.5rem, 4vw, 2.75rem);
  filter: none;
}

#pharma-page .pharma-hero-orb {
  position: absolute;
  width: clamp(220px, 28vw, 340px);
  height: clamp(220px, 28vw, 340px);
  top: 18%;
  left: 8%;
  border-radius: 50%;
  border: 1px solid rgba(45, 139, 78, 0.14);
  background: radial-gradient(circle at 65% 35%, rgba(45, 139, 78, 0.07), transparent 68%);
  pointer-events: none;
  z-index: 1;
}

#pharma-page .pharma-about {
  position: relative;
  margin-top: clamp(2rem, 4vw, 3rem);
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: linear-gradient(165deg, #ffffff 0%, #F7F9FB 100%);
  border: 1px solid rgba(45, 139, 78, 0.1);
  box-shadow: 0 16px 40px rgba(0, 62, 98, 0.05);
}

#pharma-page .pharma-section-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

#pharma-page .pharma-section-leaf {
  position: absolute;
  top: -8%;
  right: -2%;
  width: clamp(90px, 12vw, 140px);
  opacity: 0.07;
  transform: rotate(28deg);
}

#pharma-page .pharma-about-inner {
  position: relative;
  z-index: 1;
}

#pharma-page .pharma-about .dept-detail-section-header h2 {
  font-family: "Cormorant Garamond", var(--font-serif);
  font-size: clamp(1.75rem, 3.2vw, 2.35rem);
  color: #003e62;
  max-width: 22ch;
}

#pharma-page .pharma-about-grid {
  display: grid;
  grid-template-columns: 1fr minmax(240px, 300px);
  gap: clamp(1.75rem, 3.5vw, 2.75rem);
  align-items: start;
}

#pharma-page .pharma-about-copy .dept-detail-description {
  font-size: 0.98rem;
  line-height: 1.8;
  color: var(--text-muted);
}

#pharma-page .pharma-about-copy .dept-detail-description + .dept-detail-description {
  margin-top: 1.1rem;
}

#pharma-page .pharma-licenses-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(1.35rem, 2.5vw, 1.85rem);
  border-radius: calc(var(--radius-lg) + 2px);
  background: linear-gradient(160deg, rgba(0, 62, 98, 0.06) 0%, rgba(74, 159, 212, 0.09) 100%);
  border: 1px solid rgba(45, 139, 78, 0.14);
  box-shadow: 0 14px 36px rgba(0, 62, 98, 0.06);
}

#pharma-page .pharma-licenses-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--forest-green), var(--gold-accent));
}

#pharma-page .pharma-licenses-panel h3 {
  margin: 0 0 1.1rem;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--forest-green);
}

#pharma-page .pharma-licenses-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

#pharma-page .pharma-licenses-panel li {
  position: relative;
  padding: 0.55rem 0.75rem 0.55rem 1.35rem;
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.45;
  color: rgba(51, 66, 31, 0.78);
  border-radius: 8px;
  transition: background 0.2s ease, transform 0.2s ease;
}

#pharma-page .pharma-licenses-panel li::before {
  content: "";
  position: absolute;
  left: 0.35rem;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-accent);
}

#pharma-page .pharma-licenses-panel li:hover {
  background: rgba(255, 255, 255, 0.55);
  transform: translateX(3px);
}

#pharma-page .pharma-stats-section {
  margin-top: clamp(2rem, 4vw, 3rem);
  padding: clamp(2.75rem, 5.5vw, 4rem) clamp(1.25rem, 3vw, 2rem);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #F7F9FB 0%, #ffffff 100%);
  border: 1px solid rgba(45, 139, 78, 0.1);
  box-shadow: 0 18px 44px rgba(0, 62, 98, 0.05);
}

#pharma-page .pharma-stats-section .impact-heading {
  font-family: "Cormorant Garamond", var(--font-serif);
  color: #003e62;
}

#pharma-page .pharma-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: 900px;
  margin: clamp(2rem, 4vw, 2.75rem) auto 0;
  border: none;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

#pharma-page .pharma-stats .impact-stat {
  text-align: center;
  padding: clamp(1.5rem, 3vw, 2rem) 1rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #fff 0%, rgba(252, 250, 245, 0.95) 100%);
  border: 1px solid rgba(45, 139, 78, 0.12);
  box-shadow: 0 10px 28px rgba(0, 62, 98, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

#pharma-page .pharma-stats .impact-stat:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(0, 62, 98, 0.1);
}

#pharma-page .pharma-stats .impact-stat-value {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4.5vw, 3.25rem);
  font-weight: 600;
  color: var(--gold-accent);
  line-height: 1;
}

#pharma-page .pharma-stats .impact-stat h3 {
  margin: 0.65rem 0 0;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest-green);
}

#pharma-page .pharma-products-section {
  margin-top: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(45, 139, 78, 0.1);
  background: linear-gradient(180deg, rgba(249, 247, 242, 0.94) 0%, rgba(255, 255, 255, 0.98) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

#pharma-page .pharma-products-section .dept-detail-section-header--center h2 {
  font-family: "Cormorant Garamond", var(--font-serif);
  color: #003e62;
}

#pharma-page .pharma-products-section .dept-detail-section-header--center h2::after {
  content: "";
  display: block;
  width: 52px;
  height: 2px;
  margin: 0.85rem auto 0;
  background: linear-gradient(90deg, var(--forest-green), var(--gold-accent));
  border-radius: 2px;
}

#pharma-page .pharma-products-grid {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.85rem, 1.8vw, 1.15rem);
  align-items: stretch;
}

#pharma-page .pharma-product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-height: 7.5rem;
  height: 100%;
  padding: clamp(1.1rem, 2vw, 1.35rem) clamp(1.1rem, 2vw, 1.4rem);
  border-radius: calc(var(--radius-md) + 2px);
  background: #ffffff;
  border: 1px solid rgba(45, 139, 78, 0.12);
  box-shadow: 0 8px 22px rgba(0, 62, 98, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

#pharma-page .pharma-product-card::before {
  content: "";
  position: absolute;
  top: 0.85rem;
  bottom: 0.85rem;
  left: 0;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: linear-gradient(180deg, var(--gold-accent), rgba(74, 159, 212, 0.35));
}

#pharma-page .pharma-product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(45, 139, 78, 0.22);
  box-shadow: 0 14px 32px rgba(0, 62, 98, 0.09);
}

#pharma-page .pharma-product-card:hover::before {
  background: linear-gradient(180deg, var(--forest-green), rgba(45, 139, 78, 0.4));
}

#pharma-page .pharma-product-num {
  display: block;
  font-family: "Cormorant Garamond", var(--font-serif);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
  color: var(--gold-accent);
}

#pharma-page .pharma-product-body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}

#pharma-page .pharma-product-card h3 {
  margin: 0;
  padding: 0;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--forest-green);
}

#pharma-page .pharma-product-card p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.5;
  color: var(--text-muted);
}

#pharma-page .pharma-clinics-section {
  margin-top: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #ffffff 0%, #F7F9FB 100%);
  border: 1px solid rgba(45, 139, 78, 0.1);
  box-shadow: 0 16px 40px rgba(0, 62, 98, 0.05);
}

#pharma-page .pharma-clinics-section .dept-detail-section-header h2 {
  font-family: "Cormorant Garamond", var(--font-serif);
  color: #003e62;
}

#pharma-page .pharma-clinic-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.85rem, 1.8vw, 1.15rem);
  max-width: 1040px;
  margin: 0 auto;
}

#pharma-page .pharma-clinic-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  min-height: 100%;
  padding: clamp(1.2rem, 2.2vw, 1.5rem) clamp(1.2rem, 2.2vw, 1.55rem);
  border-radius: calc(var(--radius-md) + 2px);
  background: #ffffff;
  border: 1px solid rgba(45, 139, 78, 0.12);
  box-shadow: 0 8px 22px rgba(0, 62, 98, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

#pharma-page .pharma-clinic-card::before {
  content: "";
  position: absolute;
  top: 0.9rem;
  bottom: 0.9rem;
  left: 0;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: linear-gradient(180deg, var(--gold-accent), rgba(74, 159, 212, 0.35));
}

#pharma-page .pharma-clinic-card:hover {
  transform: translateY(-3px);
  border-color: rgba(45, 139, 78, 0.22);
  box-shadow: 0 14px 32px rgba(0, 62, 98, 0.09);
}

#pharma-page .pharma-clinic-card:hover::before {
  background: linear-gradient(180deg, var(--forest-green), rgba(45, 139, 78, 0.4));
}

#pharma-page .pharma-clinic-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

#pharma-page .pharma-clinic-num {
  position: static;
  flex-shrink: 0;
  font-family: "Cormorant Garamond", var(--font-serif);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
  color: var(--gold-accent);
}

#pharma-page .pharma-clinic-brand {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0, 62, 98, 0.55);
  text-align: right;
}

#pharma-page .pharma-clinic-card h3 {
  margin: 0.15rem 0 0;
  padding: 0;
  font-family: "Cormorant Garamond", var(--font-serif);
  font-size: clamp(1.35rem, 2.2vw, 1.55rem);
  font-weight: 600;
  line-height: 1.2;
  color: #003e62;
}

#pharma-page .pharma-clinic-address {
  margin: 0.15rem 0 0;
  flex: 1;
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-muted);
}

#pharma-page .pharma-clinic-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  align-self: flex-start;
  margin-top: 0.55rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--forest-green);
  text-decoration: none;
  background: rgba(0, 62, 98, 0.07);
  border: 1px solid rgba(45, 139, 78, 0.14);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

#pharma-page .pharma-clinic-phone svg {
  width: 0.95rem;
  height: 0.95rem;
  stroke: currentColor;
  stroke-width: 1.7;
  fill: none;
}

#pharma-page .pharma-clinic-phone:hover {
  color: #fff;
  background: var(--forest-green);
  border-color: var(--forest-green);
}

#pharma-page .pharma-page-cta {
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

#pharma-page .pharma-page-cta .book-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
  text-align: center;
}

#pharma-page .pharma-page-cta .book-header .abt-kicker {
  width: 100%;
  justify-content: center;
}

#pharma-page .pharma-page-cta .book-intro {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

#pharma-page .pharma-page-cta .abt-cta-panel {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 2.75rem);
}

#pharma-page .pharma-page-cta .abt-cta-divider {
  width: 1px;
  align-self: stretch;
  min-height: 180px;
  background: linear-gradient(180deg, transparent, rgba(45, 139, 78, 0.28), transparent);
}

#pharma-page .pharma-page-cta .abt-cta-label {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-accent);
}

#pharma-page .pharma-page-cta .abt-cta-title {
  margin: 0.5rem 0 0;
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.2vw, 1.65rem);
  font-weight: 600;
  color: var(--forest-green);
}

#pharma-page .pharma-page-cta .abt-cta-phones {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

#pharma-page .pharma-page-cta .abt-cta-phones a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--deep-navy);
  text-decoration: none;
  transition: color 0.2s ease;
}

#pharma-page .pharma-page-cta .abt-cta-phones a::before {
  content: "";
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-accent);
  opacity: 0.65;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

#pharma-page .pharma-page-cta .abt-cta-phones a:hover {
  color: var(--gold-accent);
}

#pharma-page .pharma-page-cta .abt-cta-phones a:hover::before {
  opacity: 1;
  transform: scale(1.2);
}

#pharma-page .pharma-page-cta .abt-cta-email {
  margin: 0.75rem 0 0;
  font-size: 0.95rem;
  font-weight: 600;
}

#pharma-page .pharma-page-cta .abt-cta-email a {
  color: var(--forest-green);
  text-decoration: none;
  transition: color 0.2s ease;
}

#pharma-page .pharma-page-cta .abt-cta-email a:hover {
  color: var(--gold-accent);
}

#pharma-page .pharma-page-cta .abt-cta-address {
  margin: 0.75rem 0 0;
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-muted);
}

#pharma-page .pharma-page-cta .abt-cta-col--action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

#pharma-page .pharma-page-cta .abt-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  margin-top: 1.25rem;
}

#pharma-page .pharma-page-cta .abt-cta-actions .btn-primary,
#pharma-page .pharma-page-cta .abt-cta-actions .btn-secondary {
  width: 100%;
  max-width: 240px;
  justify-content: center;
}

#pharma-page .pharma-page-cta .abt-cta-col--action .btn-secondary {
  border-color: rgba(45, 139, 78, 0.3);
  color: var(--forest-green);
  background: rgba(255, 255, 255, 0.85);
}

#pharma-page .pharma-page-cta .abt-cta-col--action .btn-secondary:hover {
  border-color: rgba(45, 139, 78, 0.45);
  background: rgba(45, 139, 78, 0.06);
  color: var(--forest-green);
}

#pharma-page .pharma-back-link {
  font-size: 0.88rem;
}

@media (max-width: 991px) {
  #pharma-page .pharma-hero-inner {
    grid-template-columns: 1fr;
    text-align: left;
  }

  #pharma-page .pharma-hero-media {
    max-width: 320px;
    margin: 0 auto;
    order: -1;
  }

  #pharma-page .pharma-about-grid {
    grid-template-columns: 1fr;
  }

  #pharma-page .pharma-stats {
    grid-template-columns: 1fr;
  }

  #pharma-page .pharma-clinic-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  #pharma-page .pharma-hero-inner {
    grid-template-columns: 1fr;
  }

  #pharma-page .pharma-hero-media {
    order: -1;
    max-width: 280px;
    aspect-ratio: 1 / 1;
  }

  #pharma-page .pharma-hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  #pharma-page .pharma-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #pharma-page .pharma-page-cta .abt-cta-panel {
    grid-template-columns: 1fr;
    text-align: center;
  }

  #pharma-page .pharma-page-cta .abt-cta-divider {
    width: 60%;
    height: 1px;
    min-height: 0;
    margin: 0 auto;
    background: linear-gradient(90deg, transparent, rgba(45, 139, 78, 0.28), transparent);
  }

  #pharma-page .pharma-page-cta .abt-cta-col--action {
    align-items: center;
  }

  #pharma-page .pharma-page-cta .abt-cta-actions {
    align-items: center;
  }

  #pharma-page .pharma-page-cta .abt-cta-phones a {
    justify-content: center;
  }
}

/* ==========================================================================
   Hospital Page ? clinic menu & styling
   ========================================================================== */

#hospital-page > section ,
#ayurveda-page > section {
  margin-top: 0;
}

#hospital-page .hospital-hero ,
#ayurveda-page .hospital-hero {
  position: relative;
  margin-top: 0;
  padding-top: clamp(1.5rem, 3vw, 2rem);
  background:
    linear-gradient(165deg, rgba(249, 247, 242, 0.96) 0%, rgba(255, 255, 255, 0.9) 48%, rgba(242, 236, 220, 0.94) 100%),
    radial-gradient(ellipse 65% 50% at 15% 80%, rgba(74, 159, 212, 0.1), transparent 65%);
  border: 1px solid rgba(45, 139, 78, 0.12);
  box-shadow: 0 24px 56px rgba(0, 62, 98, 0.07);
}

#hospital-page .hospital-hero-pattern ,
#ayurveda-page .hospital-hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(74, 159, 212, 0.14) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 70%, rgba(45, 139, 78, 0.1) 0 1px, transparent 1px);
  background-size: 26px 26px, 30px 30px;
  pointer-events: none;
}

#hospital-page .hospital-breadcrumb ,
#ayurveda-page .hospital-breadcrumb {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto 1.25rem;
  padding: 0 clamp(0.5rem, 2vw, 1rem);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

#hospital-page .hospital-breadcrumb a ,
#ayurveda-page .hospital-breadcrumb a {
  color: var(--forest-green);
  text-decoration: none;
  transition: color 0.2s ease;
}

#hospital-page .hospital-breadcrumb a:hover ,
#ayurveda-page .hospital-breadcrumb a:hover {
  color: var(--gold-accent);
}

#hospital-page .hospital-breadcrumb [aria-current="page"] ,
#ayurveda-page .hospital-breadcrumb [aria-current="page"] {
  color: var(--gold-accent);
}

#hospital-page .hospital-hero h1 ,
#ayurveda-page .hospital-hero h1 {
  font-size: clamp(2rem, 4.2vw, 3rem);
  font-weight: 600;
  color: #003e62;
}

#hospital-page .hospital-hero-media ,
#ayurveda-page .hospital-hero-media {
  box-shadow: 0 24px 48px rgba(0, 62, 98, 0.14);
}

#hospital-page .hospital-clinics-section ,
#ayurveda-page .hospital-clinics-section {
  margin-top: clamp(2rem, 4vw, 3rem);
  padding: clamp(2.5rem, 5vw, 3.5rem) clamp(1.25rem, 4vw, 2.5rem);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(45, 139, 78, 0.1);
  box-shadow: 0 16px 40px rgba(0, 62, 98, 0.05);
}

#hospital-page .hospital-clinics-intro ,
#ayurveda-page .hospital-clinics-intro {
  max-width: 42rem;
  margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
}

#hospital-page .hospital-clinics-intro .abt-kicker ,
#ayurveda-page .hospital-clinics-intro .abt-kicker {
  justify-content: center;
}

#hospital-page .hospital-clinics-intro .abt-kicker-label ,
#ayurveda-page .hospital-clinics-intro .abt-kicker-label {
  justify-content: center;
}

#hospital-page .hospital-clinics-intro h2 ,
#ayurveda-page .hospital-clinics-intro h2 {
  margin: 0.75rem 0 0;
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600;
  color: var(--forest-green);
  line-height: 1.2;
}

#hospital-page .hospital-clinics-intro p ,
#ayurveda-page .hospital-clinics-intro p {
  margin: 1rem auto 0;
  max-width: 48ch;
  font-size: 0.96rem;
  line-height: 1.75;
  color: var(--text-muted);
}

#ayurveda-page .hospital-clinics-intro {
  max-width: 46rem;
}

#ayurveda-page .hospital-clinics-intro p {
  max-width: none;
  text-align: left;
}

#ayurveda-page .hospital-clinics-intro-cta {
  display: flex;
  justify-content: center;
  margin-top: 1.4rem;
}

#ayurveda-page .hospital-clinics-intro-cta .btn-primary {
  width: auto;
}

#ayurveda-page .ayur-pharma-section .hospital-clinics-intro {
  max-width: 40rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

#ayurveda-page .ayur-pharma-section .hospital-clinics-intro p {
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

#ayurveda-page .ayur-pharma-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  max-width: 1080px;
  margin: 0 auto 1.5rem;
  padding: 0;
  list-style: none;
}

#ayurveda-page .ayur-pharma-stats li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  padding: 0.85rem 0.75rem;
  border-radius: 14px;
  background: #f7f9fb;
  border: 1px solid rgba(45, 139, 78, 0.1);
  text-align: center;
}

#ayurveda-page .ayur-pharma-stats strong {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1;
  color: #003e62;
}

#ayurveda-page .ayur-pharma-stats span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

#ayurveda-page .ayur-pharma-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(240px, 0.85fr);
  grid-template-areas:
    "copy media"
    "contact contact";
  align-items: stretch;
  max-width: 1080px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(0, 62, 98, 0.08);
  box-shadow: 0 16px 40px rgba(0, 62, 98, 0.07);
}

#ayurveda-page .ayur-pharma-copy {
  grid-area: copy;
  padding: clamp(1.35rem, 3vw, 2rem);
}

#ayurveda-page .ayur-pharma-list-title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2vw, 1.6rem);
  font-weight: 600;
  color: #003e62;
}

#ayurveda-page .ayur-pharma-list-note {
  margin: 0.35rem 0 1.15rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage-green);
}

#ayurveda-page .ayur-pharma-list {
  columns: 2;
  column-gap: 1.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

#ayurveda-page .ayur-pharma-list li {
  display: grid;
  grid-template-columns: 1.65rem minmax(0, 1fr);
  gap: 0.4rem;
  align-items: start;
  margin: 0 0 0.55rem;
  break-inside: avoid;
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--text-dark, #1c2a22);
}

#ayurveda-page .ayur-pharma-num {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--sage-green);
}

#ayurveda-page .ayur-pharma-media {
  grid-area: media;
  position: relative;
  min-height: 320px;
  overflow: hidden;
  background: #eef3f6;
  border: 0;
  border-left: 1px solid rgba(0, 62, 98, 0.06);
}

#ayurveda-page .ayur-pharma-photo {
  position: absolute;
  inset: -2px;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  object-fit: cover;
  object-position: center 18%;
  display: block;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

#ayurveda-page .ayur-pharma-contact {
  grid-area: contact;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem 2rem;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 1.35rem 1.75rem;
  border: 0;
  border-top: 1px solid rgba(0, 62, 98, 0.08);
  border-radius: 0;
  background: #f7f8fa;
  box-shadow: none;
  text-align: left;
}

#ayurveda-page .ayur-pharma-contact-copy {
  min-width: 0;
  flex: 1;
}

#ayurveda-page .ayur-pharma-contact-name {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.22rem;
  font-weight: 600;
  line-height: 1.3;
  color: #003e62;
}

#ayurveda-page .ayur-pharma-contact-address,
#ayurveda-page .ayur-pharma-contact-meta {
  margin: 0.3rem 0 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #6b7280;
}

#ayurveda-page .ayur-pharma-contact-meta {
  display: block;
}

#ayurveda-page .ayur-pharma-contact-meta span[aria-hidden="true"] {
  margin: 0 0.5em;
  color: #9aa3af;
}

#ayurveda-page .ayur-pharma-contact a {
  color: #6b7280;
  text-decoration: none;
}

#ayurveda-page .ayur-pharma-contact a[href^="mailto:"],
#ayurveda-page .ayur-pharma-contact a[href^="http"] {
  text-decoration: underline;
  text-underline-offset: 0.18em;
  text-decoration-thickness: 1px;
}

#ayurveda-page .ayur-pharma-contact a[href^="tel:"] {
  text-decoration: none;
  font-weight: 600;
  color: #4b5563;
}

#ayurveda-page .ayur-pharma-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0.72rem 1.4rem;
  border-radius: 999px;
  border: 1.5px solid rgba(0, 62, 98, 0.22);
  background: #fff;
  color: #003e62;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: none;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

#ayurveda-page .ayur-pharma-contact-btn:hover {
  border-color: #003e62;
  background: #003e62;
  color: #fff;
}

@media (max-width: 900px) {
  #ayurveda-page .ayur-pharma-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "media"
      "copy"
      "contact";
  }

  #ayurveda-page .ayur-pharma-list {
    columns: 1;
  }

  #ayurveda-page .ayur-pharma-media {
    min-height: 220px;
    aspect-ratio: 16 / 10;
    border-left: 0;
    border-bottom: 1px solid rgba(0, 62, 98, 0.06);
  }

  #ayurveda-page .ayur-pharma-contact {
    flex-direction: column;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 1rem;
    padding: 1.25rem 1.2rem 1.35rem;
  }

  #ayurveda-page .ayur-pharma-contact-btn {
    width: 100%;
  }
}

#hospital-page .hospital-clinic-cards ,
#ayurveda-page .hospital-clinic-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: 1100px;
  margin: 0 auto;
}

#ayurveda-page .hospital-clinic-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.25rem, 2.5vw, 2rem);
  max-width: 1080px;
}

#ayurveda-page .division-hero-card-logo {
  display: block;
  aspect-ratio: 4 / 3;
  background: transparent;
}

#ayurveda-page .division-hero-card-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  padding: 0;
  border-radius: 0;
}

#ayurveda-page .ayur-dept-card {
  display: grid;
  grid-template-columns: minmax(140px, 0.42fr) minmax(0, 1fr);
  gap: 1rem 1.15rem;
  align-items: start;
  padding: 0;
  text-decoration: none;
  color: inherit;
}

#ayurveda-page .ayur-dept-card-media {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  background: #121820;
  aspect-ratio: 4 / 3;
}

#ayurveda-page .ayur-dept-card-media img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  transform-origin: center center;
}

#ayurveda-page .ayur-dept-card-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  margin: 0;
  padding: 0.45rem 0.5rem;
  box-sizing: border-box;
  background: rgba(12, 18, 28, 0.82);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}

#ayurveda-page .ayur-dept-card-desc {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-muted);
}

#ayurveda-page .ayur-dept-card:hover .ayur-dept-card-media img {
  transform: translateZ(0);
}

#ayurveda-page .ayur-dept-card:focus-visible {
  outline: 2px solid var(--sage-green);
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  #ayurveda-page .ayur-dept-card-media img {
    transition: none;
  }

  #ayurveda-page .ayur-dept-card:hover .ayur-dept-card-media img {
    transform: none;
  }
}

#hospital-page .hospital-clinic-card ,
#ayurveda-page .hospital-clinic-card {
  display: flex;
  gap: 1rem;
  padding: clamp(1.15rem, 2vw, 1.4rem);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(45, 139, 78, 0.12);
  box-shadow: var(--shadow-soft);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#hospital-page .hospital-clinic-card:hover ,
#ayurveda-page .hospital-clinic-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 62, 98, 0.12);
}

#hospital-page .hospital-clinic-card-logo ,
#ayurveda-page .hospital-clinic-card-logo {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(249, 247, 242, 0.9);
  border: 1px solid rgba(45, 139, 78, 0.1);
}

#hospital-page .hospital-clinic-card-logo img ,
#ayurveda-page .hospital-clinic-card-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

#hospital-page .hospital-clinic-card-body h3 ,
#ayurveda-page .hospital-clinic-card-body h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--forest-green);
}

#hospital-page .hospital-clinic-card-body p ,
#ayurveda-page .hospital-clinic-card-body p {
  margin: 0.45rem 0 0;
  font-size: 0.84rem;
  line-height: 1.6;
  color: var(--text-muted);
}

#hospital-page .hospital-clinic-card-body .dept-card-link ,
#ayurveda-page .hospital-clinic-card-body .dept-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.65rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--forest-green);
}

#hospital-page .hospital-speciality-section .hospital-clinics-intro,
#hospital-page .hospital-services-section .hospital-clinics-intro {
  max-width: 46rem;
}

#hospital-page .hospital-speciality-section .hospital-clinics-intro p,
#hospital-page .hospital-services-section .hospital-clinics-intro p {
  max-width: 62ch;
}

#hospital-page .hospital-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
  max-width: 1080px;
  margin: 0 auto clamp(2rem, 4vw, 2.75rem);
  padding: 0;
  list-style: none;
}

#hospital-page .hospital-highlight-card {
  padding: clamp(1.15rem, 2vw, 1.45rem);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 62, 98, 0.1);
  box-shadow: var(--shadow-soft);
}

#hospital-page .hospital-highlight-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.85rem;
  height: 1.85rem;
  margin-bottom: 0.7rem;
  border-radius: 999px;
  background: var(--forest-green);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
}

#hospital-page .hospital-highlight-card h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--forest-green);
}

#hospital-page .hospital-highlight-card p {
  margin: 0.5rem 0 0;
  font-size: 0.86rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.clinic-profile-section {
  margin-top: clamp(2rem, 4vw, 3rem);
  padding: clamp(2rem, 4vw, 3rem) clamp(1.25rem, 4vw, 2.5rem);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(45, 139, 78, 0.1);
  box-shadow: 0 16px 40px rgba(0, 62, 98, 0.05);
}

.clinic-profile-hero,
.dept-overview-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(220px, 0.9fr);
  gap: clamp(1.25rem, 3vw, 2.25rem);
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
}

.clinic-profile-copy,
.dept-overview-copy {
  min-width: 0;
}

.clinic-profile-copy .abt-kicker {
  justify-content: flex-start;
}

.clinic-profile-copy h2 {
  margin: 0.7rem 0 0;
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 600;
  line-height: 1.15;
  color: #003e62;
}

.clinic-profile-copy p,
.dept-overview-copy .dept-detail-description {
  margin: 0.9rem 0 0;
  max-width: none;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-muted);
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.dept-overview-copy .dept-detail-description + .dept-detail-description {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 62, 98, 0.08);
}

.clinic-profile-copy .btn-primary {
  margin-top: 1.2rem;
}

.clinic-profile-media,
.dept-overview-media {
  position: relative;
  min-width: 0;
  min-height: 240px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: calc(var(--radius-xl) - 8px);
  background: #eef3f6;
}

.clinic-profile-media img,
.dept-overview-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border: 0;
}

#clinic-physiotherapy-rehab .clinic-profile-media img,
.dept-overview-hero--physio .dept-overview-media img {
  object-position: center 40%;
}

#clinic-ayurvedic-cosmetic-clinic .clinic-profile-media img,
.dept-overview-hero--cosmetic .dept-overview-media img {
  object-position: center 42%;
}

#clinic-post-delivery-care .clinic-profile-media img,
.dept-card-media--postnatal img {
  object-position: 58% 45%;
}

.dept-overview-hero--postnatal .dept-overview-media img {
  object-position: center 45%;
}

.clinic-profile-body {
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(1.25rem, 3vw, 1.85rem);
  border-radius: calc(var(--radius-xl) - 10px);
  background: #f7f4ea;
}

.clinic-profile-body h3 {
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  margin: 0 0 1rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: #003e62;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.clinic-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.25rem, 3vw, 2rem);
}

.clinic-specialty ol,
.clinic-prasava ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.clinic-specialty li,
.clinic-prasava li,
.clinic-cosmetic-grid li {
  display: grid;
  grid-template-columns: 1.6rem minmax(0, 1fr);
  gap: 0.55rem;
  align-items: start;
  margin: 0 0 0.7rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text-dark);
}

.clinic-num {
  font-weight: 700;
  color: #003e62;
}

.clinic-prasava-title {
  margin: 0 0 0.85rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: #003e62;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.clinic-babycare {
  margin-top: 1.35rem;
}

.clinic-babycare ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.clinic-babycare li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.clinic-care-icon {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(0, 62, 98, 0.1);
}

.clinic-care-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke: #003e62;
  stroke-width: 1.6;
  fill: none;
}

.clinic-tags-block,
.clinic-rehab-block,
.clinic-cosmetic-block,
.clinic-babycare {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.clinic-tags-block > h3,
.clinic-rehab-block > h3,
.clinic-cosmetic-block > h3,
.clinic-specialty > h3,
.clinic-prasava > h3,
.clinic-babycare > h3 {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  width: fit-content;
  max-width: 100%;
  margin: 0 0 1rem;
  padding: 0;
  border-radius: 0;
  background: none;
  color: var(--sage-green);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow: none;
}

.clinic-tags-block > h3::after,
.clinic-rehab-block > h3::after,
.clinic-cosmetic-block > h3::after,
.clinic-specialty > h3::after,
.clinic-prasava > h3::after,
.clinic-babycare > h3::after {
  content: "";
  display: block;
  width: clamp(2.5rem, 8vw, 4.5rem);
  height: 1px;
  background: rgba(45, 139, 78, 0.35);
}

.clinic-tags-block,
.clinic-rehab-block,
.clinic-cosmetic-block {
  margin-bottom: clamp(1.35rem, 2.5vw, 1.75rem);
}

.clinic-tags-block:last-child,
.clinic-rehab-block:last-child,
.clinic-cosmetic-block:last-child {
  margin-bottom: 0;
}

.clinic-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.clinic-tags li {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(0, 62, 98, 0.12);
  color: var(--medical-blue);
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.35;
  box-shadow: 0 4px 14px rgba(0, 62, 98, 0.05);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.clinic-tags li:hover {
  transform: translateY(-1px);
  border-color: rgba(74, 159, 212, 0.35);
  box-shadow: 0 8px 18px rgba(0, 62, 98, 0.08);
}

.clinic-rehab-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.75rem, 1.5vw, 1rem);
}

.clinic-rehab-card {
  overflow: hidden;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid rgba(0, 62, 98, 0.1);
  box-shadow: 0 8px 22px rgba(0, 62, 98, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.clinic-rehab-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 62, 98, 0.16);
  box-shadow: 0 14px 32px rgba(0, 62, 98, 0.1);
}

.clinic-rehab-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center center;
  border: 0;
  background: #eef3f6;
}

.clinic-rehab-card h4 {
  margin: 0;
  padding: 0.75rem 0.85rem;
  min-height: 3.25rem;
  display: flex;
  align-items: center;
  font-family: var(--font-serif);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--forest-green);
  background: linear-gradient(180deg, rgba(247, 249, 251, 0.98) 0%, rgba(255, 255, 255, 0.98) 100%);
  border-top: 1px solid rgba(0, 62, 98, 0.06);
}

.clinic-rehab-card:nth-child(5) img {
  object-position: center 18%;
}

#department-detail .clinic-profile-section {
  margin-top: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

#department-detail .clinic-profile-body {
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(1.35rem, 3vw, 2rem);
  border-radius: var(--radius-xl);
  background: linear-gradient(165deg, #f7f9fb 0%, #ffffff 48%, #f0f3f6 100%);
  border: 1px solid rgba(45, 139, 78, 0.1);
  box-shadow: 0 12px 32px rgba(0, 62, 98, 0.06);
}

#department-detail .clinic-profile-body h3 {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  width: fit-content;
  max-width: 100%;
  margin: 0 0 1rem;
  padding: 0;
  border-radius: 0;
  background: none;
  color: var(--sage-green);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow: none;
}

#department-detail .clinic-profile-body .clinic-tags-block > h3::after,
#department-detail .clinic-profile-body .clinic-rehab-block > h3::after,
#department-detail .clinic-profile-body .clinic-cosmetic-block > h3::after,
#department-detail .clinic-profile-body .clinic-specialty > h3::after,
#department-detail .clinic-profile-body .clinic-prasava > h3::after,
#department-detail .clinic-profile-body .clinic-babycare > h3::after {
  content: "";
  display: block;
  width: clamp(2.5rem, 8vw, 4.5rem);
  height: 1px;
  background: rgba(45, 139, 78, 0.35);
}

.clinic-cosmetic-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.clinic-cosmetic-grid li {
  grid-template-columns: 2.5rem 1.4rem minmax(0, 1fr);
  align-items: center;
  margin: 0;
}

@media (max-width: 900px) {
  .clinic-profile-hero,
  .dept-overview-hero,
  .clinic-split,
  .clinic-babycare ul,
  .clinic-rehab-grid,
  .clinic-cosmetic-grid {
    grid-template-columns: 1fr;
  }

  .clinic-profile-hero .clinic-profile-media,
  .dept-overview-hero .dept-overview-media {
    order: -1;
    min-height: 220px;
  }

  .clinic-profile-copy p,
  .dept-overview-copy .dept-detail-description {
    text-align: left;
  }

  .clinic-rehab-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

#hospital-page .hospital-spec-subhead {
  margin: 0 auto 1.15rem;
  max-width: 1080px;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--forest-green);
}

#hospital-page .hospital-spec-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem 1rem;
  max-width: 1080px;
  margin: 0 auto;
}

#hospital-page .hospital-spec-tile {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 3.4rem;
  padding: 0.55rem 0.7rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 62, 98, 0.1);
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

#hospital-page .hospital-spec-tile:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 62, 98, 0.22);
  box-shadow: 0 10px 24px rgba(0, 62, 98, 0.08);
}

#hospital-page .hospital-spec-tile:focus-visible {
  outline: 2px solid var(--sage-green);
  outline-offset: 3px;
}

#hospital-page .hospital-spec-icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 2.15rem;
  height: 2.15rem;
  color: var(--forest-green);
}

#hospital-page .hospital-spec-icon svg,
#hospital-page .hospital-service-icon svg {
  width: 1.55rem;
  height: 1.55rem;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#hospital-page .hospital-spec-name {
  font-size: 0.86rem;
  font-weight: 650;
  line-height: 1.3;
  color: var(--forest-green);
}

#hospital-page .hospital-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: 1080px;
  margin: 0 auto;
  align-items: stretch;
}

#hospital-page .hospital-service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
  padding: 1.45rem 1.25rem 1.35rem;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid rgba(0, 62, 98, 0.1);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

#hospital-page .hospital-service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 62, 98, 0.18);
  box-shadow: 0 16px 36px rgba(0, 62, 98, 0.1);
}

#hospital-page .hospital-service-icon {
  display: grid;
  place-items: center;
  width: 3.35rem;
  height: 3.35rem;
  margin: 0 0 0.95rem;
  border-radius: 50%;
  background: rgba(0, 62, 98, 0.07);
  color: var(--forest-green);
}

#hospital-page .hospital-service-icon svg {
  width: 1.7rem;
  height: 1.7rem;
}

#hospital-page .hospital-service-name {
  width: auto;
  margin: 0;
  padding: 0;
  background: none;
  color: var(--forest-green);
  font-family: var(--font-serif);
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.25;
  text-transform: none;
}

#hospital-page .hospital-service-name::after {
  content: "";
  display: block;
  width: 2.25rem;
  height: 2px;
  margin: 0.7rem auto 0;
  border-radius: 99px;
  background: var(--sage-green);
}

#hospital-page .hospital-service-card p {
  margin: 0.75rem 0 0;
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-muted);
}

@media (max-width: 991px) {
  #hospital-page .hospital-highlight-grid,
  #hospital-page .hospital-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #hospital-page .hospital-spec-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  #hospital-page .hospital-highlight-grid,
  #hospital-page .hospital-service-grid {
    grid-template-columns: 1fr;
  }
}

#hospital-page .hospital-page-cta ,
#ayurveda-page .hospital-page-cta {
  margin-top: clamp(2rem, 4vw, 3rem);
}

#hospital-page .hospital-page-cta .book-header ,
#ayurveda-page .hospital-page-cta .book-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: clamp(1.75rem, 3.5vw, 2.5rem);
  text-align: center;
}

#hospital-page .hospital-page-cta .book-header .abt-kicker ,
#ayurveda-page .hospital-page-cta .book-header .abt-kicker {
  width: auto;
  max-width: 100%;
  justify-content: center;
}

#hospital-page .hospital-page-cta .book-header .abt-kicker-label ,
#ayurveda-page .hospital-page-cta .book-header .abt-kicker-label {
  justify-content: center;
  gap: 0.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
}

#hospital-page .hospital-page-cta .book-header .abt-kicker-line ,
#ayurveda-page .hospital-page-cta .book-header .abt-kicker-line {
  width: 2.5rem;
  flex-shrink: 0;
  background: linear-gradient(90deg, transparent, rgba(45, 139, 78, 0.45));
}

#hospital-page .hospital-page-cta .book-header .abt-kicker-line:last-child ,
#ayurveda-page .hospital-page-cta .book-header .abt-kicker-line:last-child {
  background: linear-gradient(90deg, rgba(45, 139, 78, 0.45), transparent);
}

#hospital-page .hospital-page-cta .book-intro ,
#ayurveda-page .hospital-page-cta .book-intro {
  margin-left: auto;
  margin-right: auto;
}

#hospital-page .hospital-page-cta .abt-cta-panel ,
#ayurveda-page .hospital-page-cta .abt-cta-panel {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(1.75rem, 4vw, 2.75rem);
  background: #fff;
  border: 1px solid rgba(45, 139, 78, 0.12);
  border-radius: var(--radius-xl);
  box-shadow: 0 18px 44px rgba(0, 62, 98, 0.06);
}

#hospital-page .hospital-page-cta .abt-cta-divider ,
#ayurveda-page .hospital-page-cta .abt-cta-divider {
  width: 1px;
  align-self: stretch;
  min-height: 160px;
  background: linear-gradient(180deg, transparent, rgba(45, 139, 78, 0.28), transparent);
}

#hospital-page .hospital-page-cta .abt-cta-label ,
#ayurveda-page .hospital-page-cta .abt-cta-label {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-accent);
}

#hospital-page .hospital-page-cta .abt-cta-phones ,
#ayurveda-page .hospital-page-cta .abt-cta-phones {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem 1.25rem;
}

#hospital-page .hospital-page-cta .abt-cta-phones a ,
#ayurveda-page .hospital-page-cta .abt-cta-phones a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--deep-navy);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}

#hospital-page .hospital-page-cta .abt-cta-phones a::before ,
#ayurveda-page .hospital-page-cta .abt-cta-phones a::before {
  content: "";
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-accent);
  opacity: 0.65;
}

#hospital-page .hospital-page-cta .abt-cta-phones a:hover ,
#ayurveda-page .hospital-page-cta .abt-cta-phones a:hover {
  color: var(--gold-accent);
}

#hospital-page .hospital-page-cta .abt-cta-email ,
#ayurveda-page .hospital-page-cta .abt-cta-email {
  margin: 1.1rem 0 0;
  font-size: 0.95rem;
  font-weight: 600;
}

#hospital-page .hospital-page-cta .abt-cta-email a ,
#ayurveda-page .hospital-page-cta .abt-cta-email a {
  color: var(--forest-green);
  text-decoration: none;
  transition: color 0.2s ease;
}

#hospital-page .hospital-page-cta .abt-cta-email a:hover ,
#ayurveda-page .hospital-page-cta .abt-cta-email a:hover {
  color: var(--gold-accent);
}

#hospital-page .hospital-page-cta .abt-cta-address ,
#ayurveda-page .hospital-page-cta .abt-cta-address {
  margin: 0.75rem 0 0;
  max-width: 36ch;
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-muted);
}

#hospital-page .hospital-page-cta .abt-cta-col--action ,
#ayurveda-page .hospital-page-cta .abt-cta-col--action {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
}

#hospital-page .hospital-page-cta .abt-cta-col--action .btn-primary,
#ayurveda-page .hospital-page-cta .abt-cta-col--action .btn-primary,
#hospital-page .hospital-page-cta .abt-cta-col--action .btn-secondary ,
#ayurveda-page .hospital-page-cta .abt-cta-col--action .btn-secondary {
  width: 100%;
  max-width: 220px;
  justify-content: center;
}

@media (max-width: 899px) {
  #hospital-page .hospital-page-cta .abt-cta-panel ,
#ayurveda-page .hospital-page-cta .abt-cta-panel {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
    padding: 1.65rem 1.25rem;
  }

  #hospital-page .hospital-page-cta .abt-cta-divider ,
#ayurveda-page .hospital-page-cta .abt-cta-divider {
    width: 55%;
    height: 1px;
    min-height: 0;
    margin: 0 auto;
    background: linear-gradient(90deg, transparent, rgba(45, 139, 78, 0.28), transparent);
  }

  #hospital-page .hospital-page-cta .abt-cta-col ,
#ayurveda-page .hospital-page-cta .abt-cta-col {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  #hospital-page .hospital-page-cta .abt-cta-phones ,
#ayurveda-page .hospital-page-cta .abt-cta-phones {
    width: 100%;
    max-width: 22rem;
    margin-left: auto;
    margin-right: auto;
    justify-items: center;
    gap: 0.7rem 1.5rem;
  }

  #hospital-page .hospital-page-cta .abt-cta-phones a ,
#ayurveda-page .hospital-page-cta .abt-cta-phones a {
    justify-content: center;
  }

  #hospital-page .hospital-page-cta .abt-cta-address ,
#ayurveda-page .hospital-page-cta .abt-cta-address {
    max-width: 32ch;
    margin-left: auto;
    margin-right: auto;
  }

  #hospital-page .hospital-page-cta .abt-cta-col--action ,
#ayurveda-page .hospital-page-cta .abt-cta-col--action {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }

  #hospital-page .hospital-page-cta .abt-cta-col--action .btn-primary,
#ayurveda-page .hospital-page-cta .abt-cta-col--action .btn-primary,
  #hospital-page .hospital-page-cta .abt-cta-col--action .btn-secondary ,
#ayurveda-page .hospital-page-cta .abt-cta-col--action .btn-secondary {
    max-width: none;
  }
}

@media (max-width: 480px) {
  #hospital-page .hospital-page-cta .book-header ,
#ayurveda-page .hospital-page-cta .book-header {
    margin-bottom: 1.35rem;
  }

  #hospital-page .hospital-page-cta .book-header .abt-kicker-label ,
#ayurveda-page .hospital-page-cta .book-header .abt-kicker-label {
    font-size: 0.66rem;
    letter-spacing: 0.14em;
    gap: 0.5rem;
  }

  #hospital-page .hospital-page-cta .book-header .abt-kicker-line ,
#ayurveda-page .hospital-page-cta .book-header .abt-kicker-line {
    width: 1.75rem;
  }

  #hospital-page .hospital-page-cta .abt-cta-phones ,
#ayurveda-page .hospital-page-cta .abt-cta-phones {
    grid-template-columns: 1fr;
    gap: 0.55rem;
    max-width: 16rem;
  }

  #hospital-page .hospital-page-cta .abt-cta-panel ,
#ayurveda-page .hospital-page-cta .abt-cta-panel {
    padding: 1.35rem 1rem;
  }
}

@media (max-width: 767px) {
  #hospital-page .hospital-hero-inner ,
#ayurveda-page .hospital-hero-inner {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Departments & Pharmaceuticals ? enhanced beauty pass (v1.7.0)
   ========================================================================== */

/* --- Departments page --- */

#departments-page .dept-hero h1 span {
  display: block;
  font-style: italic;
  background: linear-gradient(105deg, #003e62 0%, #4a9fd4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

#departments-page .abt-hero-orb--dept {
  position: absolute;
  width: clamp(180px, 22vw, 280px);
  height: clamp(180px, 22vw, 280px);
  top: 8%;
  right: 6%;
  border-radius: 50%;
  border: 1px solid rgba(74, 159, 212, 0.25);
  background: radial-gradient(circle at 30% 30%, rgba(74, 159, 212, 0.12), transparent 70%);
  pointer-events: none;
  z-index: 1;
}

#departments-page .dept-intro-page--premium::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(120px, 20%);
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, transparent, var(--gold-accent), transparent);
  z-index: 3;
}

#departments-page .dept-intro-page--premium::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 15% 85%, rgba(45, 139, 78, 0.05) 0 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.55;
  pointer-events: none;
}

#departments-page .dept-intro-page-title::after {
  content: "";
  display: block;
  width: 56px;
  height: 2px;
  margin: 1rem auto 0;
  background: linear-gradient(90deg, var(--forest-green), var(--gold-accent));
  border-radius: 2px;
}

#departments-page .dept-intro-card--premium::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(74, 159, 212, 0.45), rgba(45, 139, 78, 0.2), rgba(74, 159, 212, 0.35));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.65;
  transition: opacity 0.35s ease;
}

#departments-page .dept-intro-card--premium:hover::before {
  opacity: 1;
}

#departments-page .dept-intro-card-index {
  position: absolute;
  top: 1.15rem;
  right: 1.5rem;
  z-index: 4;
  font-family: var(--font-serif);
  font-size: clamp(2.75rem, 4.5vw, 3.5rem);
  font-weight: 600;
  line-height: 1;
  color: rgba(45, 139, 78, 0.09);
  pointer-events: none;
  user-select: none;
  transition: color 0.35s ease;
}

#departments-page .dept-intro-card--premium:hover .dept-intro-card-index {
  color: rgba(74, 159, 212, 0.14);
}

#departments-page .dept-intro-card--premium .dept-intro-card-inner {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(252, 250, 245, 0.95) 100%);
}

#departments-page .dept-intro-card--premium .dept-intro-card-media {
  position: relative;
}

#departments-page .dept-intro-card--premium .dept-intro-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 62, 98, 0.06) 0%, transparent 55%);
  pointer-events: none;
}

#departments-page .dept-intro-card-media--logo::after {
  background: linear-gradient(135deg, rgba(74, 159, 212, 0.05) 0%, transparent 60%);
}

#departments-page .dept-intro-card-body {
  position: relative;
}

#departments-page .dept-intro-card-body::before {
  content: "";
  position: absolute;
  top: 0;
  left: clamp(1.75rem, 3.5vw, 2.5rem);
  right: clamp(1.75rem, 3.5vw, 2.5rem);
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold-accent), rgba(45, 139, 78, 0.25));
}

@media (min-width: 900px) {
  #departments-page .dept-intro-card--premium .dept-intro-card-media {
    flex: 0 0 44%;
    border-right: 1px solid rgba(74, 159, 212, 0.35);
  }

  #departments-page .dept-intro-card--premium .dept-intro-card-media img {
    min-height: 340px;
  }

  #departments-page .dept-intro-card-body::before {
    top: clamp(2rem, 3.5vw, 2.75rem);
    bottom: clamp(2rem, 3.5vw, 2.75rem);
    left: 0;
    right: auto;
    width: 3px;
    height: auto;
    background: linear-gradient(180deg, var(--gold-accent), rgba(45, 139, 78, 0.2));
  }
}

@media (max-width: 640px) {
  #departments-page .dept-intro-card-stats {
    grid-template-columns: 1fr;
  }

  #departments-page .dept-intro-card-stats li {
    display: grid;
    grid-template-columns: 5.5rem minmax(0, 1fr);
    align-items: center;
    justify-content: stretch;
    gap: 0.75rem;
    text-align: left;
  }

  #departments-page .dept-intro-card-cta {
    align-self: stretch;
    justify-content: center;
  }
}

#departments-page .dept-intro-card-stats li:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 62, 98, 0.1);
  border-color: rgba(74, 159, 212, 0.35);
}

#departments-page .dept-intro-card-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 62, 98, 0.22);
}

#departments-page .dept-page-cta {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(45, 139, 78, 0.12);
  background:
    linear-gradient(165deg, rgba(249, 247, 242, 0.98) 0%, rgba(255, 255, 255, 0.92) 50%, rgba(242, 236, 220, 0.95) 100%);
  box-shadow: 0 20px 48px rgba(0, 62, 98, 0.07);
}

#departments-page .dept-page-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 10% 90%, rgba(45, 139, 78, 0.06) 0 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.5;
  pointer-events: none;
}

#departments-page .dept-page-cta::after {
  content: "";
  position: absolute;
  top: -20%;
  right: -8%;
  width: clamp(200px, 28vw, 320px);
  height: clamp(200px, 28vw, 320px);
  border-radius: 50%;
  border: 1px solid rgba(74, 159, 212, 0.18);
  background: radial-gradient(circle at 30% 70%, rgba(74, 159, 212, 0.08), transparent 65%);
  pointer-events: none;
}

#departments-page .dept-page-cta .abt-cta-panel {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(45, 139, 78, 0.14);
  border-radius: calc(var(--radius-lg) + 4px);
  box-shadow: 0 14px 40px rgba(0, 62, 98, 0.07);
}

/* --- Pharmaceuticals page ? keep CTA polish only (hero/sections styled above) --- */

#pharma-page .pharma-page-cta {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(45, 139, 78, 0.12);
  background:
    linear-gradient(165deg, rgba(0, 62, 98, 0.04) 0%, rgba(249, 247, 242, 0.98) 40%, rgba(255, 255, 255, 0.95) 100%);
  box-shadow: 0 24px 56px rgba(0, 62, 98, 0.08);
}

#pharma-page .pharma-page-cta::after {
  content: "";
  position: absolute;
  top: -18%;
  right: -6%;
  width: clamp(180px, 24vw, 280px);
  height: clamp(180px, 24vw, 280px);
  border-radius: 50%;
  border: 1px solid rgba(74, 159, 212, 0.18);
  background: radial-gradient(circle at 30% 70%, rgba(74, 159, 212, 0.08), transparent 65%);
  pointer-events: none;
}

#pharma-page .pharma-page-cta .abt-cta-panel {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(45, 139, 78, 0.14);
  border-radius: calc(var(--radius-lg) + 4px);
  box-shadow: 0 14px 40px rgba(0, 62, 98, 0.07);
}

@media (min-width: 768px) {
  #pharma-page .pharma-products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  #pharma-page .pharma-products-grid {
    grid-template-columns: 1fr;
  }
}

#pharma-page .pharma-page-cta {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(45, 139, 78, 0.12);
  background:
    linear-gradient(165deg, rgba(0, 62, 98, 0.04) 0%, rgba(249, 247, 242, 0.98) 40%, rgba(255, 255, 255, 0.95) 100%);
  box-shadow: 0 24px 56px rgba(0, 62, 98, 0.08);
}

#pharma-page .pharma-page-cta::after {
  content: "";
  position: absolute;
  top: -18%;
  right: -6%;
  width: clamp(180px, 24vw, 280px);
  height: clamp(180px, 24vw, 280px);
  border-radius: 50%;
  border: 1px solid rgba(74, 159, 212, 0.18);
  background: radial-gradient(circle at 30% 70%, rgba(74, 159, 212, 0.08), transparent 65%);
  pointer-events: none;
}

#pharma-page .pharma-page-cta .abt-cta-panel {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(45, 139, 78, 0.14);
  border-radius: calc(var(--radius-lg) + 4px);
  box-shadow: 0 14px 40px rgba(0, 62, 98, 0.07);
}

@media (max-width: 767px) {
  #departments-page .abt-hero-orb--dept {
    display: none;
  }
}

/* ==========================================================================
   Department detail ? rich content sections
   ========================================================================== */

#department-detail .dept-detail-description + .dept-detail-description {
  margin-top: 1rem;
}

.dept-service-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
}

.dept-service-detail-card {
  padding: clamp(1.15rem, 2vw, 1.5rem);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(45, 139, 78, 0.12);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dept-service-detail-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0, 62, 98, 0.1);
}

.dept-service-detail-card h3 {
  margin: 0 0 0.65rem;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--forest-green);
}

.dept-service-detail-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.dept-benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
  gap: clamp(0.85rem, 2vw, 1.15rem);
}

.dept-benefit-card {
  padding: 1.1rem 1.2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(249, 247, 242, 0.9));
  border: 1px solid rgba(45, 139, 78, 0.1);
}

.dept-benefit-card h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-serif);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--forest-green);
}

.dept-benefit-card p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.dept-detail-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
  max-width: 720px;
}

.dept-detail-list li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.94rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.dept-detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-accent);
}

.dept-dept-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: clamp(1.25rem, 3vw, 2rem);
}

.dept-dept-column {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.dept-dept-column li {
  padding: 1rem 1.1rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(45, 139, 78, 0.1);
}

.dept-dept-column strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--font-serif);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--forest-green);
}

.dept-dept-column span {
  display: block;
  font-size: 0.86rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.dept-highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dept-highlights li {
  padding: 0.55rem 1rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--forest-green);
  background: rgba(45, 139, 78, 0.08);
  border: 1px solid rgba(45, 139, 78, 0.14);
  border-radius: 999px;
}

#department-detail .dept-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin: 1rem 0 0;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

#department-detail .dept-breadcrumb a {
  color: var(--forest-green);
  text-decoration: none;
}

#department-detail .dept-breadcrumb a:hover {
  color: var(--gold-accent);
}

#department-detail .dept-detail-banner {
  margin-top: 0.75rem;
  width: 100%;
  border-radius: var(--radius-xl);
}

#department-detail .dept-detail-banner--physio .dept-detail-banner-media img {
  object-position: 58% 42%;
}

#department-detail .dept-detail-banner--physio .dept-detail-banner-scrim {
  background:
    linear-gradient(90deg, rgba(0, 42, 69, 0.72) 0%, rgba(0, 42, 69, 0.38) 48%, rgba(0, 42, 69, 0.12) 100%),
    linear-gradient(180deg, rgba(0, 42, 69, 0.08) 0%, rgba(0, 42, 69, 0.34) 100%);
}

#department-detail .dept-detail-banner--cosmetic .dept-detail-banner-media img {
  object-position: center 42%;
}

#department-detail .dept-detail-banner--postnatal .dept-detail-banner-media img {
  object-position: 58% 45%;
}

#department-detail .dept-detail-section {
  margin-top: 0.75rem;
  padding-top: clamp(1.25rem, 2.5vw, 1.75rem);
  padding-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
}

#department-detail .dept-detail-section + .dept-detail-section {
  margin-top: 0.65rem;
}

#department-detail [data-dept-extra] {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 0.65rem;
}

#department-detail [data-dept-extra] .dept-detail-section {
  margin-top: 0;
}

#department-detail .dept-detail-services {
  max-width: 980px;
  margin: 0 auto;
}

/* Department detail — appointment section */
#department-detail .dept-detail-section--book.book-section {
  margin-top: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1.75rem, 3.5vw, 2.75rem);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(0, 62, 98, 0.1);
  background: linear-gradient(165deg, #f7f9fb 0%, #ffffff 48%, #f0f3f6 100%);
  overflow: visible;
}

#department-detail .dept-detail-appointment-shell {
  max-width: 1140px;
}

#department-detail .dept-appointment-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(340px, 1.05fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
}

#department-detail .dept-appointment-aside {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

#department-detail .dept-appointment-aside-header .book-label {
  justify-content: flex-start;
  width: auto;
}

#department-detail .dept-appointment-aside-header h2 {
  margin: 0.85rem 0 0;
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 3.2vw, 2.35rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--deep-navy);
}

#department-detail .dept-appointment-lead {
  margin: 0.85rem 0 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 34ch;
}

#department-detail .dept-appointment-contact-card {
  padding: 1.15rem 1.2rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 62, 98, 0.1);
  box-shadow: 0 10px 28px rgba(0, 62, 98, 0.06);
}

#department-detail .dept-appointment-contact-label {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--medical-blue);
}

#department-detail .dept-appointment-contact-card .dept-detail-phone-list {
  margin-top: 0;
  gap: 0.55rem;
}

#department-detail .dept-appointment-contact-card .dept-detail-phone-list a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--deep-navy);
}

#department-detail .dept-appointment-contact-card .dept-detail-phone-list a::before {
  background: var(--medical-blue);
}

#department-detail .dept-appointment-features {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

#department-detail .dept-appointment-features li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
}

#department-detail .dept-appointment-feature-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: rgba(0, 62, 98, 0.08);
  color: var(--medical-blue);
}

#department-detail .dept-appointment-feature-icon svg {
  width: 1rem;
  height: 1rem;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
}

#department-detail .dept-detail-book-panel {
  padding: clamp(1.35rem, 2.5vw, 1.85rem);
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid rgba(0, 62, 98, 0.1);
  box-shadow: 0 18px 44px rgba(0, 62, 98, 0.08);
}

#department-detail .dept-detail-book-panel .book-panel-title {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
  font-weight: 600;
  color: var(--deep-navy);
}

#department-detail .dept-detail-book-panel .book-panel-desc {
  margin-top: 0.45rem;
  font-size: 0.9rem;
  line-height: 1.6;
}

#department-detail .dept-detail-book-panel .book-form {
  margin-top: 1.15rem;
  gap: 0.9rem;
}

#department-detail .dept-detail-book-panel .book-field label {
  margin-bottom: 0.32rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--medical-blue);
}

#department-detail .dept-detail-book-panel .book-field input,
#department-detail .dept-detail-book-panel .book-field select,
#department-detail .dept-detail-book-panel .book-field textarea {
  min-height: 2.85rem;
  padding: 0.78rem 0.95rem;
  border-radius: 12px;
  border: 1px solid rgba(0, 62, 98, 0.14);
  background: #fff;
  font-size: 0.95rem;
  color: var(--text-dark);
}

#department-detail .dept-detail-book-panel .book-field input:focus,
#department-detail .dept-detail-book-panel .book-field select:focus,
#department-detail .dept-detail-book-panel .book-field textarea:focus {
  border-color: rgba(0, 62, 98, 0.35);
  box-shadow: 0 0 0 3px rgba(0, 62, 98, 0.1);
}

#department-detail .dept-detail-book-panel .book-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23003E62' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  background-size: 0.95rem;
  padding-right: 2.4rem;
}

#department-detail .dept-detail-book-panel .book-field textarea {
  min-height: 5rem;
  resize: vertical;
}

#department-detail .dept-detail-book-panel .book-submit {
  width: 100%;
  margin-top: 0.25rem;
  min-height: 3rem;
  justify-content: center;
  text-align: center;
  border-radius: 999px;
}

#department-detail .dept-detail-book-panel .book-assurance {
  margin-top: 1rem;
  gap: 0.45rem 1rem;
}

#department-detail .dept-detail-book-panel .book-assurance li {
  font-size: 0.8rem;
}

@media (max-width: 900px) {
  #department-detail .dept-appointment-layout {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  #department-detail .dept-appointment-aside-header {
    text-align: center;
  }

  #department-detail .dept-appointment-aside-header .book-label {
    justify-content: center;
    width: 100%;
  }

  #department-detail .dept-appointment-lead {
    margin-left: auto;
    margin-right: auto;
  }

  #department-detail .dept-appointment-contact-card {
    max-width: 24rem;
    margin: 0 auto;
    width: 100%;
  }

  #department-detail .dept-appointment-contact-card .dept-detail-phone-list a {
    justify-content: flex-start;
  }

  #department-detail .dept-appointment-features {
    max-width: 24rem;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 600px) {
  #department-detail .dept-detail-section--book.book-section {
    padding: 1.25rem 0.85rem;
    border-radius: 18px;
  }

  #department-detail .dept-appointment-aside-header h2 {
    font-size: clamp(1.45rem, 6vw, 1.75rem);
  }

  #department-detail .dept-appointment-contact-card,
  #department-detail .dept-detail-book-panel {
    padding: 1rem 0.95rem;
    border-radius: 14px;
  }

  #department-detail .dept-detail-book-panel .book-field-row {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  #department-detail .dept-detail-book-panel .book-field input,
  #department-detail .dept-detail-book-panel .book-field select,
  #department-detail .dept-detail-book-panel .book-field textarea {
    font-size: 1rem;
    min-height: 2.9rem;
  }

  #department-detail .dept-detail-book-panel .book-assurance {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }
}

#department-detail .dept-detail-section-inner .dept-detail-description {
  max-width: none;
}

#department-detail .dept-detail-section-header {
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.35rem;
}

#department-detail .dept-detail-section-header .dept-label {
  width: 100%;
}

#department-detail .dept-detail-content-panel {
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(1.25rem, 2.5vw, 1.85rem) clamp(1.35rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 249, 251, 0.95) 100%);
  border: 1px solid rgba(0, 62, 98, 0.1);
  box-shadow: 0 10px 28px rgba(0, 62, 98, 0.06);
}

#department-detail .dept-detail-content-panel .dept-overview-hero {
  max-width: none;
  margin: 0;
}

#department-detail .dept-detail-content-panel .dept-detail-description {
  margin: 0;
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-muted);
  text-align: left;
}

#department-detail .dept-detail-content-panel .dept-detail-description + .dept-detail-description {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 62, 98, 0.08);
}

#department-detail .dept-detail-section--overview,
#department-detail .dept-detail-section--content {
  background: #fff;
}

#department-detail .dept-detail-section--content-alt {
  background: linear-gradient(180deg, #f7f9fb 0%, #ffffff 100%);
}

#department-detail .dept-detail-section--products {
  background: linear-gradient(165deg, #f0f4f8 0%, #ffffff 55%, #f7f9fb 100%);
}

#department-detail .dept-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr));
  gap: 0.85rem;
  max-width: 980px;
  margin: 0 auto;
}

#department-detail .dept-product-chip {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 62, 98, 0.1);
  box-shadow: 0 6px 18px rgba(0, 62, 98, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

#department-detail .dept-product-chip:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 62, 98, 0.18);
  box-shadow: 0 12px 24px rgba(0, 62, 98, 0.08);
}

#department-detail .dept-product-chip-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: rgba(0, 62, 98, 0.08);
  color: var(--medical-blue);
}

#department-detail .dept-product-chip-icon svg {
  width: 1rem;
  height: 1rem;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

#department-detail .dept-product-chip-text {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--deep-navy);
}

@media (max-width: 768px) {
  #department-detail .dept-detail-section {
    padding-left: 1rem;
    padding-right: 1rem;
    border-radius: var(--radius-lg);
  }

  #department-detail .dept-detail-section-header {
    margin-bottom: 1rem;
  }

  #department-detail .dept-detail-section-header h2 {
    font-size: clamp(1.5rem, 6vw, 1.85rem);
  }

  #department-detail .dept-detail-content-panel {
    padding: 1.1rem 1.15rem;
  }

  #department-detail .dept-detail-content-panel .dept-detail-description {
    font-size: 0.95rem;
    line-height: 1.75;
  }

  #department-detail .dept-products-grid {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  #department-detail .dept-product-chip {
    padding: 0.85rem 0.95rem;
  }

  #department-detail .dept-detail-services {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Contact Page ? premium redesign
   ========================================================================== */

#contact-page > section {
  margin-top: 0;
}

#contact-page {
  background: #F7F9FB;
}

#contact-page .contact-hero {
  position: relative;
  margin-top: 0;
  padding: clamp(3rem, 6vw, 4.5rem) clamp(1.5rem, 4vw, 2.5rem);
  border-radius: var(--radius-xl);
  overflow: hidden;
  text-align: center;
  background: #F7F9FB;
  border: 1px solid rgba(45, 139, 78, 0.1);
  box-shadow: 0 20px 48px rgba(0, 62, 98, 0.06);
}

#contact-page .contact-hero .abt-kicker {
  position: relative;
  z-index: 1;
  justify-content: center;
}

#contact-page .contact-hero h1 {
  position: relative;
  z-index: 1;
  margin: 1rem auto 0;
  max-width: none;
  font-family: "Cormorant Garamond", var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #003e62;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
}

#contact-page .contact-hero h1 span {
  display: inline;
  font-style: normal;
  background: none;
  color: inherit;
  -webkit-background-clip: unset;
  background-clip: unset;
}

#contact-page .contact-hero-lead {
  margin: 1.1rem auto 0;
  max-width: 48ch;
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--text-muted);
}

#contact-page .contact-form-panel--hero {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 34rem;
  margin: clamp(1.75rem, 3.5vw, 2.35rem) auto 0;
  text-align: left;
}

#contact-page .contact-form-panel--hero .contact-form {
  margin: 0;
}

#contact-page .contact-form-panel--hero .book-field label {
  text-align: left;
}

#contact-page .contact-emergency {
  width: 100%;
  max-width: none;
  margin: clamp(1rem, 2vw, 1.35rem) 0;
  padding: clamp(1.35rem, 3vw, 1.85rem) clamp(1.25rem, 3vw, 2rem);
  background: #F7F9FB;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(45, 139, 78, 0.1);
  box-shadow: 0 12px 32px rgba(0, 62, 98, 0.04);
}

#contact-page .contact-emergency-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 1.35rem;
  max-width: 40rem;
  margin: 0 auto;
  padding: clamp(1.15rem, 2.5vw, 1.4rem) clamp(1.25rem, 2.8vw, 1.6rem);
  border-radius: calc(var(--radius-lg) + 2px);
  background: #ffffff;
  border: 1px solid rgba(45, 139, 78, 0.12);
  box-shadow: 0 10px 28px rgba(0, 62, 98, 0.05);
}

#contact-page .contact-emergency-inner > div {
  flex: 0 1 auto;
  min-width: 0;
  max-width: 22rem;
  text-align: left;
}

#contact-page .contact-emergency-icon {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 12px;
  background: rgba(0, 62, 98, 0.1);
  color: var(--forest-green);
  flex-shrink: 0;
}

#contact-page .contact-emergency-icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

#contact-page .contact-emergency-label {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-accent);
}

#contact-page .contact-emergency-text {
  margin: 0.3rem 0 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--text-muted);
}

#contact-page .contact-emergency-phones {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin-left: 0;
  width: 100%;
  flex-basis: 100%;
}

#contact-page .contact-emergency-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  background: var(--forest-green);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(0, 62, 98, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

#contact-page .contact-emergency-btn:hover {
  background: #003e62;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 62, 98, 0.22);
}

#contact-page .contact-emergency-btn--ghost {
  background: rgba(255, 255, 255, 0.85);
  color: var(--forest-green);
  border: 1px solid rgba(45, 139, 78, 0.28);
  box-shadow: none;
}

#contact-page .contact-emergency-btn--ghost:hover {
  background: rgba(45, 139, 78, 0.08);
  color: var(--forest-green);
}

#contact-page .contact-main-section {
  margin-top: clamp(2rem, 4vw, 3rem);
  padding: clamp(2.5rem, 5vw, 3.75rem) clamp(1.25rem, 3vw, 2rem);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #ffffff 0%, #F7F9FB 100%);
  border: 1px solid rgba(45, 139, 78, 0.1);
  box-shadow: 0 16px 40px rgba(0, 62, 98, 0.05);
}

#contact-page .contact-section-header {
  text-align: center;
  max-width: 56ch;
  margin: 0 auto clamp(2.25rem, 4vw, 3rem);
}

#contact-page .contact-section-header .abt-kicker {
  justify-content: center;
}

#contact-page .contact-section-header h2 {
  margin: 0.85rem 0 0;
  font-family: "Cormorant Garamond", var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 600;
  color: #003e62;
}

#contact-page .contact-section-intro {
  margin: 0.9rem 0 0;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-muted);
}

#contact-page .contact-main-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 1.05fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

#contact-page .contact-main-grid--info-only {
  grid-template-columns: 1fr;
  max-width: 720px;
}

#contact-page .contact-info-list {
  display: grid;
  gap: 0.9rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

#contact-page .contact-info-card {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(45, 139, 78, 0.12);
  box-shadow: 0 8px 24px rgba(0, 62, 98, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#contact-page .contact-info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0, 62, 98, 0.09);
}

#contact-page .contact-info-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(0, 62, 98, 0.08);
  color: var(--forest-green);
  flex-shrink: 0;
}

#contact-page .contact-info-card h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--forest-green);
}

#contact-page .contact-info-card p {
  margin: 0.4rem 0 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-muted);
}

#contact-page .contact-phone-list {
  list-style: none;
  margin: 0.55rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}

#contact-page .contact-phone-list a,
#contact-page .contact-info-link {
  color: var(--forest-green);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

#contact-page .contact-phone-list a:hover,
#contact-page .contact-info-link:hover {
  color: var(--gold-accent);
  text-decoration: none;
}

#contact-page .contact-info-link {
  display: inline-block;
  margin-top: 0.55rem;
  font-size: 0.88rem;
}

#contact-page .contact-info-sub {
  margin-top: 0.65rem !important;
  font-size: 0.78rem !important;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-accent) !important;
  opacity: 1;
}

#contact-page .contact-map-wrap {
  margin-top: 1.35rem;
}

#contact-page .contact-map-title {
  margin: 0 0 0.85rem;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--forest-green);
}

#contact-page .contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(45, 139, 78, 0.12);
  box-shadow: 0 12px 32px rgba(0, 62, 98, 0.07);
  aspect-ratio: 16 / 11;
  background: #f0f3f6;
}

#contact-page .contact-form-panel {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius-xl) - 4px);
  padding: clamp(1.5rem, 3vw, 2.15rem);
  background: linear-gradient(165deg, #ffffff 0%, #F7F9FB 100%);
  border: 1px solid rgba(45, 139, 78, 0.12);
  box-shadow: 0 18px 44px rgba(0, 62, 98, 0.07);
}

#contact-page .contact-form-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--forest-green), var(--gold-accent));
}

#contact-page .contact-form-kicker {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-accent);
}

#contact-page .contact-form-title {
  margin: 0.5rem 0 0;
  font-family: "Cormorant Garamond", var(--font-serif);
  font-size: clamp(1.55rem, 2.5vw, 1.9rem);
  font-weight: 600;
  color: #003e62;
}

#contact-page .contact-form-desc {
  margin: 0.55rem 0 1.35rem;
  font-size: 0.94rem;
  line-height: 1.65;
  color: var(--text-muted);
}

#contact-page .contact-submit {
  width: 100%;
  justify-content: center;
  margin-top: 0.35rem;
  border-radius: 999px;
}

#contact-page .contact-cta {
  margin-top: clamp(2rem, 4vw, 3rem);
}

#contact-page .contact-directory {
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  padding: 0 clamp(1.25rem, 4vw, 2.5rem) clamp(1.5rem, 3vw, 2.25rem);
}

#contact-page .contact-directory-card {
  position: relative;
  overflow: hidden;
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(1.65rem, 3.5vw, 2.5rem);
  border-radius: var(--radius-xl);
  background: linear-gradient(165deg, #fbf8ef 0%, #f7f4ea 52%, #f3efe3 100%);
  border: 1px solid rgba(45, 139, 78, 0.12);
  box-shadow: var(--shadow-medium);
}

#contact-page .contact-directory-deco {
  position: absolute;
  inset: auto -6% -22% auto;
  width: min(38%, 260px);
  height: min(38%, 200px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 139, 78, 0.12) 0%, transparent 68%);
  pointer-events: none;
}

#contact-page .contact-directory-deco::before {
  content: "";
  position: absolute;
  top: -55%;
  left: -95%;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(74, 159, 212, 0.1);
}

#contact-page .contact-directory-brand {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: clamp(0.85rem, 2vw, 1.25rem);
  margin-bottom: clamp(1.35rem, 2.5vw, 1.85rem);
  padding-bottom: clamp(1.1rem, 2vw, 1.45rem);
  border-bottom: 1px solid rgba(0, 62, 98, 0.08);
}

#contact-page .contact-directory-logo {
  width: clamp(3.75rem, 8vw, 4.5rem);
  height: clamp(3.75rem, 8vw, 4.5rem);
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  border: 2px solid rgba(45, 139, 78, 0.18);
  padding: 0.35rem;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(0, 62, 98, 0.06);
}

#contact-page .contact-directory-brand-copy {
  min-width: 0;
}

#contact-page .contact-directory-kicker-wrap {
  justify-content: flex-start;
}

#contact-page .contact-directory-kicker-wrap .abt-kicker-label {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
}

#contact-page .contact-directory-brand h2 {
  margin: 0.55rem 0 0;
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 3.2vw, 2.45rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--forest-green);
}

#contact-page .contact-directory-sub {
  margin: 0.35rem 0 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--medical-blue);
}

#contact-page .contact-directory-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(260px, 0.88fr);
  gap: clamp(1rem, 2.5vw, 1.75rem);
  align-items: start;
}

#contact-page .contact-directory-outlets h3,
#contact-page .contact-directory-appointments h3,
#contact-page .contact-directory-address h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.95rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest-green);
}

#contact-page .contact-directory-section-icon {
  display: grid;
  place-items: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 8px;
  background: rgba(0, 62, 98, 0.08);
  color: var(--medical-blue);
  flex-shrink: 0;
}

#contact-page .contact-directory-section-icon svg {
  width: 0.95rem;
  height: 0.95rem;
  stroke: currentColor;
  stroke-width: 1.7;
  fill: none;
}

#contact-page .contact-directory-appointments h3,
#contact-page .contact-directory-address h3 {
  color: rgba(255, 255, 255, 0.95);
}

#contact-page .contact-directory-appointments h3 svg,
#contact-page .contact-directory-address h3 svg {
  width: 1.05rem;
  height: 1.05rem;
  stroke: var(--gold-accent);
  stroke-width: 1.7;
  fill: none;
  flex-shrink: 0;
}

#contact-page .contact-directory-outlets ul,
#contact-page .contact-directory-appointments ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

#contact-page .contact-directory-outlet {
  display: grid;
  gap: 0.25rem;
  margin: 0 0 0.75rem;
  padding: 0.95rem 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 62, 98, 0.08);
  box-shadow: 0 6px 18px rgba(0, 62, 98, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

#contact-page .contact-directory-outlet:last-child {
  margin-bottom: 0;
}

#contact-page .contact-directory-outlet:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 62, 98, 0.14);
  box-shadow: 0 10px 24px rgba(0, 62, 98, 0.07);
}

#contact-page .contact-directory-outlet strong {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--forest-green);
}

#contact-page .contact-directory-outlet-tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--medical-blue);
  background: rgba(0, 62, 98, 0.07);
}

#contact-page .contact-directory-outlet-address {
  font-size: 0.86rem;
  line-height: 1.6;
  color: var(--text-muted);
}

#contact-page .contact-directory-outlet-phone {
  margin-top: 0.15rem;
  color: var(--medical-blue);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}

#contact-page .contact-directory-outlet-phone:hover {
  color: var(--gold-accent);
}

#contact-page .contact-directory-aside-panel {
  display: grid;
  gap: clamp(1rem, 2vw, 1.35rem);
  padding: clamp(1.15rem, 2.5vw, 1.5rem);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #003e62 0%, #002a45 100%);
  border: 1px solid rgba(74, 159, 212, 0.22);
  box-shadow: 0 18px 40px rgba(0, 62, 98, 0.16);
}

#contact-page .contact-directory-appointments ul {
  display: grid;
  gap: 0.45rem;
}

#contact-page .contact-directory-appointments a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #fff;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}

#contact-page .contact-directory-appointments a::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-accent);
  flex-shrink: 0;
}

#contact-page .contact-directory-appointments a:hover {
  color: var(--gold-accent);
}

#contact-page .contact-directory-address {
  padding-top: clamp(0.85rem, 2vw, 1.1rem);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

#contact-page .contact-directory-address p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}

#contact-page .contact-directory-meta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.35rem;
  margin-top: clamp(1.15rem, 2.5vw, 1.5rem);
  padding-top: clamp(1rem, 2vw, 1.25rem);
  border-top: 1px solid rgba(0, 62, 98, 0.1);
}

#contact-page .contact-directory-meta-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
}

#contact-page .contact-directory-meta-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--medical-blue);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

#contact-page .contact-directory-meta-links a:hover {
  color: var(--gold-accent);
}

#contact-page .contact-directory-meta-links svg {
  width: 1rem;
  height: 1rem;
  stroke: currentColor;
  stroke-width: 1.6;
  fill: none;
  flex-shrink: 0;
}

#contact-page .contact-directory-social {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-left: auto;
}

#contact-page .contact-directory-social a {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--medical-blue);
  color: #fff;
  transition: transform 0.2s ease, background 0.2s ease;
}

#contact-page .contact-directory-social a:hover {
  transform: translateY(-2px);
  background: var(--deep-navy);
}

#contact-page .contact-directory-social a svg {
  width: 0.95rem;
  height: 0.95rem;
}

#contact-page .contact-directory-social-handle {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--medical-blue);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(0, 62, 98, 0.1);
}

@media (max-width: 900px) {
  #contact-page .contact-directory-grid {
    grid-template-columns: 1fr;
  }

  #contact-page .contact-directory-aside-panel {
    order: -1;
  }
}

@media (max-width: 640px) {
  #contact-page .contact-directory-brand {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  #contact-page .contact-directory-kicker-wrap {
    width: 100%;
    justify-content: flex-start;
  }

  #contact-page .contact-directory-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  #contact-page .contact-directory-social {
    margin-left: 0;
    width: 100%;
  }

  #contact-page .contact-directory-meta-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
  }
}

#contact-page .contact-cta-inner {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 1.35rem;
  padding: clamp(1.75rem, 3.5vw, 2.5rem);
  text-align: center;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(165deg, rgba(0, 62, 98, 0.06) 0%, rgba(249, 247, 242, 0.98) 45%, rgba(255, 255, 255, 0.95) 100%);
  border: 1px solid rgba(45, 139, 78, 0.12);
  box-shadow: 0 20px 48px rgba(0, 62, 98, 0.07);
}

#contact-page .contact-cta-label {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-accent);
}

#contact-page .contact-cta-inner h2 {
  margin: 0.4rem 0 0;
  font-family: "Cormorant Garamond", var(--font-serif);
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  font-weight: 600;
  color: #003e62;
}

#contact-page .contact-cta-inner p {
  margin: 0.5rem auto 0;
  max-width: 42ch;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-muted);
}

#contact-page .contact-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

#contact-page .contact-cta-actions .btn-primary,
#contact-page .contact-cta-actions .btn-secondary {
  border-radius: 999px;
}

#contact-page .contact-cta-actions .btn-secondary {
  border-color: rgba(45, 139, 78, 0.3);
  color: var(--forest-green);
  background: rgba(255, 255, 255, 0.85);
}

@media (max-width: 900px) {
  #contact-page .contact-main-grid {
    grid-template-columns: 1fr;
  }

  #contact-page .contact-emergency {
    max-width: none;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  #contact-page .contact-emergency-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 22rem;
    gap: 0.85rem;
  }

  #contact-page .contact-emergency-inner > div {
    max-width: none;
    text-align: center;
  }

  #contact-page .contact-emergency-phones {
    margin-left: 0;
    width: 100%;
    flex-direction: column;
  }

  #contact-page .contact-emergency-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  #contact-page .contact-cta-inner {
    align-items: center;
  }

  #contact-page .contact-cta-actions {
    width: 100%;
    justify-content: center;
  }

  #contact-page .contact-cta-actions .btn-primary,
  #contact-page .contact-cta-actions .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   Division heroes ? Pharmaceuticals & Hospital
   ========================================================================== */

.division-hero {
  position: relative;
  margin-top: 0;
  padding: clamp(1.5rem, 3vw, 2rem) clamp(1.25rem, 3.5vw, 2.5rem) clamp(2.75rem, 5vw, 4rem);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background:
    linear-gradient(165deg, rgba(253, 251, 247, 0.96) 0%, rgba(255, 255, 255, 0.9) 48%, rgba(245, 240, 230, 0.95) 100%);
  border: 1px solid rgba(45, 139, 78, 0.1);
  box-shadow: 0 20px 48px rgba(0, 62, 98, 0.06);
}

.division-hero-atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.division-hero-mist {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 8% 92%, rgba(45, 139, 78, 0.12), transparent 70%),
    radial-gradient(ellipse 40% 50% at 92% 45%, rgba(45, 139, 78, 0.08), transparent 65%);
}

.division-hero-deco {
  position: absolute;
  opacity: 0.14;
  filter: blur(0.5px) saturate(0.85);
}

.division-hero-deco--bl {
  width: clamp(140px, 22vw, 260px);
  bottom: -8%;
  left: -4%;
  transform: rotate(-18deg);
}

.division-hero-deco--mr {
  width: clamp(120px, 18vw, 220px);
  top: 22%;
  right: -3%;
  transform: rotate(155deg) scaleX(-1);
  opacity: 0.1;
}

.division-hero-breadcrumb {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1.5rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.division-hero-breadcrumb a {
  color: var(--forest-green);
  text-decoration: none;
}

.division-hero-breadcrumb a:hover {
  color: var(--gold-accent);
}

.division-hero-breadcrumb [aria-current="page"] {
  color: var(--gold-accent);
}

.division-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(2rem, 4.5vw, 3.75rem);
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
}

.division-hero-copy .abt-kicker {
  margin-bottom: 0.9rem;
}

.division-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.95rem;
  padding: 0.4rem 0.95rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: #003e62;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(0, 62, 98, 0.2);
}

.division-hero-badge svg {
  width: 0.95rem;
  height: 0.95rem;
  stroke: currentColor;
  stroke-width: 1.75;
  fill: none;
}

.division-hero-copy h1 {
  margin: 0;
  font-family: "Cormorant Garamond", var(--font-serif);
  font-size: clamp(2.35rem, 4.8vw, 3.55rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #003e62;
}

.division-hero-rule {
  display: block;
  width: 56px;
  height: 2px;
  margin: 1.1rem 0 0;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--forest-green), var(--gold-accent));
}

.division-hero-lead {
  margin: 1rem 0 0;
  max-width: 44ch;
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.division-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.division-hero-actions .btn-primary,
.division-hero-actions .btn-secondary {
  border-radius: 999px;
  padding: 0.9rem 1.45rem;
}

.division-hero-actions .btn-primary svg,
.division-hero-actions .btn-secondary svg {
  width: 1.05rem;
  height: 1.05rem;
}

.division-hero-chevron {
  font-size: 1.15rem;
  line-height: 1;
  opacity: 0.85;
}

.division-hero-actions .btn-secondary {
  border-color: rgba(45, 139, 78, 0.28);
  color: var(--forest-green);
  background: rgba(255, 255, 255, 0.72);
}

.division-hero-card {
  display: flex;
  flex-direction: column;
  max-width: 440px;
  margin-left: auto;
  width: 100%;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  border-radius: calc(var(--radius-xl) - 2px);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow:
    0 28px 64px rgba(0, 62, 98, 0.12),
    0 0 0 1px rgba(45, 139, 78, 0.08);
  backdrop-filter: blur(8px);
}

.division-hero-card-logo {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(160deg, #F7F9FB 0%, #f0f3f6 100%);
}

.division-hero-card-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: clamp(1rem, 3vw, 1.75rem);
}

.division-hero-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 1.15rem 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(45, 139, 78, 0.12);
}

.division-hero-features li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  padding: 1rem 0.5rem 0.25rem;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--forest-green);
}

.division-hero-features li + li {
  border-left: 1px solid rgba(45, 139, 78, 0.14);
}

.division-hero-feature-icon {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  color: var(--forest-green);
}

.division-hero-feature-icon svg {
  width: 1.35rem;
  height: 1.35rem;
  stroke: currentColor;
  stroke-width: 1.6;
  fill: none;
}

@media (max-width: 900px) {
  .division-hero-inner {
    grid-template-columns: 1fr;
  }

  .division-hero-card {
    max-width: 380px;
    margin: 0 auto;
    order: -1;
  }

  .division-hero-copy {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .division-hero-copy .abt-kicker {
    justify-content: center;
  }

  .division-hero-copy .abt-kicker-label {
    justify-content: center;
  }

  .division-hero-rule {
    margin-left: auto;
    margin-right: auto;
  }

  .division-hero-lead {
    margin-left: auto;
    margin-right: auto;
  }

  .division-hero-actions {
    justify-content: center;
  }

  .division-hero-breadcrumb {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .division-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .division-hero-actions .btn-primary,
  .division-hero-actions .btn-secondary {
    justify-content: center;
  }

  .division-hero-features li {
    font-size: 0.65rem;
  }
}

/* ==========================================================================
   Site-wide responsive refinements ? tablet (991) & mobile (768 / 600)
   ========================================================================== */

@media (max-width: 991px) {
  /* Tablet: hamburger nav (was only ?768, causing overcrowding) */
  .nav-menu-btn {
    display: grid;
  }

  .nav-links {
    display: none;
  }

  .nav-mode-btn {
    display: none;
  }

  .nav-actions .book-btn {
    width: 2.55rem;
    height: 2.55rem;
    padding: 0 !important;
    border-radius: 999px !important;
    font-size: 0 !important;
    letter-spacing: 0 !important;
    gap: 0 !important;
    justify-content: center;
    flex-shrink: 0;
  }

  .nav-actions .book-btn svg {
    display: block !important;
    width: 1.15rem !important;
    height: 1.15rem !important;
    margin: 0 !important;
  }

  .top-nav {
    gap: 0.5rem;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .nav-brand-group {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
  }

  .brand {
    min-width: 0;
    max-width: 100%;
  }

  .brand-logo-img {
    height: 2.35rem !important;
    width: auto;
    max-width: min(48vw, 11.5rem);
    object-fit: contain;
    object-position: left center;
  }

  .nav-actions {
    flex-shrink: 0;
    gap: 0.4rem;
  }

  .top-nav .phone-btn,
  .top-nav .mode-btn {
    width: 2.55rem !important;
    height: 2.55rem !important;
    flex-shrink: 0;
  }

  .phone-btn span {
    display: none;
  }

  /* Homepage hero ? center copy; hide hero image on tablet/mobile */
  .hero-viewport .hero-right,
  .hero-viewport .hero-image-ayur,
  .hero-viewport .hero-image-frame-ayur,
  .hero-viewport .hero-visual-shell {
    display: none !important;
  }

  .hero-viewport .hero-section {
    justify-items: center;
    text-align: center;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hero-viewport .hero-left {
    align-items: center;
    max-width: 36rem;
    margin: 0 auto;
  }

  .hero-viewport .hero-cta-row {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-viewport .btn-primary,
  .hero-viewport .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .hero-viewport .hero-glass-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    justify-content: center;
    width: 100%;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 2rem;
    padding: 1.1rem 1.15rem;
    gap: 0.85rem 1rem;
  }

  .hero-viewport .glass-feature-item {
    justify-content: flex-start;
    min-width: 0;
  }

  .hero-viewport .glass-feature-text {
    text-align: left;
  }

  .hero-viewport .glass-feature-text strong,
  .hero-viewport .glass-feature-text span {
    display: block;
    line-height: 1.25;
  }

  /* About split ? consistent centered tablet layout */
  .abt-split .abt-kicker {
    justify-content: center;
  }

  .abt-split .abt-split-tagline,
  .abt-split .about-description {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .abt-split .abt-split-features {
    justify-content: center;
  }

  .abt-split .about-cta {
    align-self: center;
  }

  /* Contact info cards ? 2-col on tablet */
  .contact-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  /* Footer ? tablet: brand + contact full-width, links in 2 cols */
  .site-footer {
    padding: 2.75rem 1.5rem 1.5rem;
    margin-top: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1.75rem;
    align-items: start;
  }

  .footer-col--brand {
    grid-column: 1 / -1;
    max-width: 36rem;
  }

  .footer-col:last-child {
    grid-column: 1 / -1;
  }

  .footer-desc {
    max-width: 42ch;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
    margin-top: 2.25rem;
  }

  .footer-tagline {
    width: 100%;
    text-align: left;
  }

  /* Contact page ? stack form/info at tablet */
  #contact-page .contact-main-grid {
    grid-template-columns: 1fr;
  }

  /* Book form field pairs */
  .book-field-row {
    grid-template-columns: 1fr;
  }

  /* Division hero features ? wrap cleanly */
  .division-hero-features {
    grid-template-columns: 1fr;
  }

  .division-hero-features li + li {
    border-left: 0;
    border-top: 1px solid rgba(45, 139, 78, 0.12);
  }

  .division-hero-actions {
    justify-content: center;
  }

  /* Impact / why / tow headers stay readable */
  .tow-grid,
  .why-layout {
    grid-template-columns: 1fr;
  }

  .impact-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  /* Keep section kickers on one centered row */
  .tow-header .abt-kicker {
    gap: 0.55rem;
  }

  .tow-header .abt-kicker-label {
    max-width: 9.5rem;
    letter-spacing: 0.22em;
    font-size: 0.72rem;
  }

  .tow-header .abt-kicker-line {
    width: 2.25rem;
  }

  .testi-label,
  .why-label,
  .impact-label,
  .dept-label,
  .book-label,
  .spec-label {
    flex-wrap: nowrap;
    letter-spacing: 0.14em;
    font-size: 0.68rem;
    gap: 0.55rem;
  }

  .testi-label::before,
  .testi-label::after,
  .why-label::before,
  .why-label::after,
  .impact-label::before,
  .impact-label::after,
  .dept-label::before,
  .dept-label::after,
  .book-label::before,
  .book-label::after,
  .spec-label::before,
  .spec-label::after {
    width: 1.75rem;
  }
}

@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }

  .hero-viewport .hero-section {
    padding: 6.5rem 1.25rem 2rem;
    gap: 2rem;
  }

  .hero-viewport .hero-visual-shell {
    max-width: 100%;
  }

  .hero-viewport .hero-glass-features {
    max-width: 100%;
    padding: 1rem 0.9rem;
    gap: 0.75rem 0.65rem;
  }

  .hero-viewport .glass-feature-icon {
    width: 2.1rem;
    height: 2.1rem;
  }

  .hero-viewport .glass-feature-text strong {
    font-size: 0.82rem;
  }

  .hero-viewport .glass-feature-text span {
    font-size: 0.72rem;
  }

  .hero-viewport .care-badge-floating {
    display: none;
  }

  .heading-line {
    font-size: clamp(2rem, 8vw, 2.6rem);
    line-height: 1.16;
  }

  .hero-viewport .reveal-heading {
    gap: 0.3rem;
  }

  .hero-viewport .heading-line {
    line-height: 1.16;
    overflow: visible;
    padding-bottom: 0.08em;
  }

  .testi-main {
    grid-template-columns: 1fr;
  }

  .testi-cta-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .testi-cta-row .btn-primary,
  .testi-cta-row .btn-secondary {
    width: auto;
    justify-content: center;
  }

  .testi-banner {
    flex-direction: column;
    text-align: center;
    gap: 1.25rem;
  }

  .pharma-clinic-grid,
  #pharma-page .pharma-clinic-grid,
  #pharma-page .pharma-products-grid,
  #pharma-page .pharma-stats {
    grid-template-columns: 1fr;
  }

  #pharma-page .pharma-about-grid,
  #pharma-page .pharma-page-cta .abt-cta-panel,
  #departments-page .dept-page-cta .abt-cta-panel,
  #about-page .abt-cta-panel {
    grid-template-columns: 1fr;
  }

  #pharma-page .pharma-page-cta .abt-cta-divider,
  #departments-page .dept-page-cta .abt-cta-divider,
  #about-page .abt-cta-divider {
    display: none;
  }

  .abt-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .abt-cta-actions .btn-primary,
  .abt-cta-actions .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .impact-stats {
    grid-template-columns: 1fr;
  }

  #departments-page .dept-intro-card-inner {
    grid-template-columns: 1fr;
  }

  #hospital-page .hospital-clinic-cards,
  #ayurveda-page .hospital-clinic-cards {
    grid-template-columns: 1fr;
  }

  #ayurveda-page .ayur-dept-card {
    grid-template-columns: 1fr;
  }

  #ayurveda-page .ayur-dept-card-media {
    max-width: 280px;
  }

  .book-aside-media,
  .book-aside-image {
    min-height: 200px;
  }
}

@media (max-width: 600px) {
  .abt-split .abt-split-heading {
    font-size: clamp(2rem, 9vw, 2.5rem);
  }

  .abt-split-divisions {
    gap: 0.45rem;
    margin-top: 0.7rem;
  }

  .abt-division-pill {
    font-size: 0.68rem;
    padding: 0.34rem 0.75rem;
  }

  .tow-cards,
  .dept-grid {
    grid-template-columns: 1fr;
  }

  .dept-card-body {
    text-align: center;
  }

  .dept-card-link {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-viewport .ayur-highlight-bar {
    padding: 1.25rem;
  }

  #about-page .abt-intro-section {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }

  #about-page .abt-intro-shell {
    border-radius: var(--radius-lg);
  }

  .division-hero {
    padding-left: 1rem;
    padding-right: 1rem;
    border-radius: var(--radius-lg);
  }
}

/* ==========================================================================
   Footer responsive redesign
   ========================================================================== */

@media (max-width: 991px) {
  .site-footer {
    padding: 2.75rem 1.5rem 1.35rem;
    border-radius: 0;
  }

  .foot-deco,
  .foot-particle,
  .foot-glass-shape,
  .foot-bg-wave {
    display: none;
  }

  .foot-leaf--tl,
  .foot-leaf--tr {
    opacity: 0.16;
    width: clamp(5.5rem, 18vw, 8rem);
  }

  .foot-leaf--bl,
  .foot-leaf--br {
    display: none;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 1.5rem;
    align-items: start;
    text-align: left;
  }

  .footer-col--brand {
    grid-column: 1 / -1;
    max-width: 34rem;
    padding-bottom: 0.35rem;
    border-bottom: 1px solid rgba(45, 139, 78, 0.1);
  }

  .footer-col:last-child {
    grid-column: 1 / -1;
    padding-top: 0.25rem;
    border-top: 1px solid rgba(45, 139, 78, 0.1);
  }

  .footer-col,
  .footer-col--brand {
    display: block;
    align-items: stretch;
  }

  .footer-heading {
    margin-bottom: 0.9rem;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }

  .footer-brand {
    justify-content: flex-start;
  }

  .footer-desc {
    margin: 0.85rem 0 0;
    max-width: 44ch;
    font-size: 0.84rem;
    line-height: 1.65;
  }

  .footer-social {
    margin-top: 1.1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .footer-social-link {
    width: 2.65rem;
    height: 2.65rem;
  }

  .footer-links,
  .footer-dept-list,
  .footer-contact-list {
    display: block;
    align-items: stretch;
  }

  .footer-links a,
  .footer-dept-list a {
    font-size: 0.875rem;
    min-height: 1.75rem;
  }

  .footer-dept-list a:hover {
    transform: none;
  }

  .footer-contact-list li {
    justify-content: flex-start;
    text-align: left;
    gap: 0.7rem;
    margin-bottom: 0.95rem;
  }

  .footer-contact-value {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    margin-top: 2rem;
    padding-top: 1.25rem;
  }

  .footer-bottom-left {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-legal {
    justify-content: flex-start;
    gap: 0.45rem 1rem;
  }

  .footer-tagline {
    width: 100%;
    text-align: left;
    font-size: 0.78rem;
  }
}

@media (max-width: 768px) {
  .contact-info,
  #contact-information {
    display: none !important;
  }
}

@media (max-width: 600px) {
  .site-footer {
    padding: 2.15rem 1.15rem 1.65rem;
  }

  .footer-inner {
    max-width: 26.5rem;
    margin: 0 auto;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.85rem;
    text-align: left;
  }

  .footer-col--brand {
    grid-column: 1 / -1;
    border: 0;
    padding: 0 0 0.35rem;
    max-width: none;
    text-align: center;
  }

  .footer-col + .footer-col {
    padding-top: 0;
    border-top: 0;
  }

  .footer-col:nth-child(2),
  .footer-col:nth-child(3),
  .footer-col:last-child {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    box-sizing: border-box;
    min-height: 0;
    border-radius: 18px;
    box-shadow: 0 14px 30px rgba(0, 62, 98, 0.08);
  }

  .footer-col:nth-child(2),
  .footer-col:nth-child(3) {
    padding: 1.2rem 1.2rem 1.15rem;
    border: 1px solid rgba(0, 62, 98, 0.18);
    background: linear-gradient(165deg, #003e62 0%, #002a44 100%);
  }

  .footer-col:nth-child(2) .footer-heading,
  .footer-col:nth-child(3) .footer-heading {
    width: 100%;
    margin: 0 0 0.95rem;
    padding: 0 0 0.55rem;
    font-family: var(--font-serif);
    font-size: 1.28rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-transform: none;
    line-height: 1.2;
    text-align: left;
    color: #f7f9fb;
    border-bottom: 1px solid rgba(249, 247, 242, 0.28);
  }

  .footer-col:nth-child(2) .footer-links,
  .footer-col:nth-child(3) .footer-dept-list {
    display: grid;
    width: 100%;
    align-items: stretch;
    padding: 0;
  }

  .footer-col:nth-child(2) .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 0.15rem 1rem;
  }

  .footer-col:nth-child(2) .footer-links li + li,
  .footer-col:nth-child(3) .footer-dept-list li + li {
    margin-top: 0;
  }

  .footer-col:nth-child(3) .footer-dept-list {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .footer-col:nth-child(2) .footer-links a,
  .footer-col:nth-child(3) .footer-dept-list a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    min-height: 2.35rem;
    padding: 0.2rem 0;
    text-align: left;
    color: rgba(249, 247, 242, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.4;
    gap: 0.55rem;
  }

  .footer-col:nth-child(2) .footer-links a:hover,
  .footer-col:nth-child(3) .footer-dept-list a:hover {
    color: #c5a04e;
  }

  .footer-col:nth-child(2) .footer-links a::after {
    display: none;
  }

  .footer-col:nth-child(3) .footer-dept-icon {
    display: grid;
    width: 1.55rem;
    height: 1.55rem;
    flex: 0 0 1.55rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.12);
    color: #f7f9fb;
  }

  .footer-col:nth-child(3) .footer-dept-icon svg {
    stroke: #f7f9fb;
  }

  .footer-col:last-child {
    margin-top: 0.15rem;
    padding: 1.2rem 1.15rem 1.15rem;
    border: 1px solid rgba(45, 139, 78, 0.14);
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.96) 0%, rgba(244, 239, 227, 0.94) 100%);
  }

  .footer-col:last-child .footer-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    width: 100%;
    margin: 0 0 0.95rem;
    padding: 0;
    font-family: var(--font-serif);
    font-size: 1.22rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-transform: none;
    text-align: center;
    color: #003e62;
    border-bottom: 0;
  }

  .footer-col:last-child .footer-heading::before,
  .footer-col:last-child .footer-heading::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(0, 62, 98, 0.16);
  }

  .footer-contact-list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0.55rem;
  }

  .footer-contact-list li {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    padding: 0.8rem 0.9rem;
    text-align: left;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(45, 139, 78, 0.1);
    box-shadow: 0 6px 16px rgba(0, 62, 98, 0.04);
  }

  .footer-contact-top {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
  }

  .footer-contact-icon {
    grid-column: auto;
    grid-row: auto;
    width: 1.85rem;
    height: 1.85rem;
    margin: 0;
    border-radius: 9px;
  }

  .footer-contact-label {
    grid-column: auto;
    grid-row: auto;
    margin: 0;
    text-align: left;
    white-space: nowrap;
  }

  .footer-contact-value {
    grid-column: auto;
    grid-row: auto;
    margin: 0;
    padding-left: 2.35rem;
    width: 100%;
    text-align: left;
    line-height: 1.55;
  }

  .footer-brand {
    display: flex;
    justify-content: center;
  }

  .footer-brand-logo {
    margin: 0 auto;
    height: clamp(2.2rem, 9vw, 2.6rem);
    max-width: min(100%, 12.5rem);
    object-position: center center;
  }

  .footer-brand-text {
    align-items: center;
  }

  .footer-brand-text strong {
    font-size: 1.3rem;
  }

  .footer-desc {
    margin: 0.55rem auto 0;
    max-width: 28ch;
    font-size: 0.8rem;
    line-height: 1.45;
    text-align: center;
  }

  .footer-desc-full {
    display: none;
  }

  .footer-desc-short {
    display: inline;
  }

  .footer-social {
    margin-top: 0.8rem;
    justify-content: center;
    gap: 0.6rem;
  }

  .footer-social-link {
    width: 2.45rem;
    height: 2.45rem;
  }

  .footer-heading {
    margin-bottom: 0.85rem;
  }

  .footer-links,
  .footer-dept-list {
    width: 100%;
  }

  .footer-bottom {
    margin-top: 1.5rem;
    padding: 1.15rem 0 0.35rem;
    gap: 0.75rem;
    align-items: center;
    text-align: center;
  }

  .footer-bottom-left {
    align-items: center;
  }

  .footer-copy {
    font-size: 0.75rem;
    line-height: 1.45;
    text-align: center;
  }

  .footer-legal {
    margin-top: 0.55rem;
    justify-content: center;
    gap: 0.45rem 0.95rem;
  }

  .footer-legal a {
    font-size: 0.75rem;
  }

  .footer-tagline {
    display: none;
  }

  .back-to-top {
    right: 0.9rem;
    bottom: 0.9rem;
    width: 2.7rem;
    height: 2.7rem;
  }

  .foot-leaf-deco {
    opacity: 0.45;
  }
}

/* ==========================================================================
   Shared appointment CTA ? site-wide (hospital / pharma / departments / about)
   ========================================================================== */

.book-premium .book-header,
.hospital-page-cta .book-header,
.pharma-page-cta .book-header,
.dept-page-cta .book-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.book-premium .book-header .abt-kicker,
.hospital-page-cta .book-header .abt-kicker,
.pharma-page-cta .book-header .abt-kicker,
.dept-page-cta .book-header .abt-kicker {
  width: auto;
  max-width: 100%;
  justify-content: center;
  gap: 0.55rem;
}

.book-premium .book-header .abt-kicker-label,
.hospital-page-cta .book-header .abt-kicker-label,
.pharma-page-cta .book-header .abt-kicker-label,
.dept-page-cta .book-header .abt-kicker-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0.7rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
}

.book-premium .book-header .abt-kicker-line,
.hospital-page-cta .book-header .abt-kicker-line,
.pharma-page-cta .book-header .abt-kicker-line,
.dept-page-cta .book-header .abt-kicker-line {
  width: 2.35rem;
  flex: 0 0 auto;
  background: linear-gradient(90deg, transparent, rgba(45, 139, 78, 0.45));
}

.book-premium .book-header .abt-kicker-line:last-child,
.hospital-page-cta .book-header .abt-kicker-line:last-child,
.pharma-page-cta .book-header .abt-kicker-line:last-child,
.dept-page-cta .book-header .abt-kicker-line:last-child {
  background: linear-gradient(90deg, rgba(45, 139, 78, 0.45), transparent);
}

/* Trailing line as direct kicker sibling (legacy markup) */
.book-premium .book-header .abt-kicker > .abt-kicker-line {
  width: 2.35rem;
  flex: 0 0 auto;
  background: linear-gradient(90deg, rgba(45, 139, 78, 0.45), transparent);
}

.abt-cta-panel {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(1.35rem, 3vw, 2.5rem);
  align-items: center;
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(1.65rem, 4vw, 2.75rem);
  background: #fff;
  border: 1px solid rgba(45, 139, 78, 0.12);
  border-radius: var(--radius-xl);
  box-shadow: 0 18px 44px rgba(0, 62, 98, 0.06);
}

.abt-cta-divider {
  width: 1px;
  align-self: stretch;
  min-height: 140px;
  background: linear-gradient(180deg, transparent, rgba(45, 139, 78, 0.28), transparent);
}

.abt-cta-label {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-accent);
}

.abt-cta-title {
  margin: 0.45rem 0 0;
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.2vw, 1.65rem);
  font-weight: 600;
  color: var(--forest-green);
}

.abt-cta-phones {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem 1.35rem;
}

p.abt-cta-phones {
  display: grid;
}

.abt-cta-phones li {
  margin: 0;
  padding: 0;
}

.abt-cta-phones a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--deep-navy) !important;
  text-decoration: none !important;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.abt-cta-phones a::before {
  content: "";
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-accent);
  opacity: 0.7;
}

.abt-cta-phones a:hover {
  color: var(--gold-accent) !important;
}

.abt-cta-email {
  margin: 1rem 0 0;
  font-size: 0.95rem;
  font-weight: 600;
}

.abt-cta-email a {
  color: var(--forest-green) !important;
  text-decoration: none !important;
  transition: color 0.2s ease;
  overflow-wrap: anywhere;
}

.abt-cta-email a:hover {
  color: var(--gold-accent) !important;
}

.abt-cta-address {
  margin: 0.75rem 0 0;
  max-width: 36ch;
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.abt-cta-col--action,
.abt-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.65rem;
}

.abt-cta-col--action .btn-primary,
.abt-cta-col--action .btn-secondary,
.abt-cta-actions .btn-primary,
.abt-cta-actions .btn-secondary,
.hospital-page-cta .abt-cta-col--action > a,
.pharma-page-cta .abt-cta-col--action > a {
  width: 100%;
  max-width: 240px;
  justify-content: center;
  text-align: center;
}

.hospital-back-link,
.pharma-back-link {
  font-size: 0.85rem;
}

@media (max-width: 899px) {
  .abt-cta-panel,
  .hospital-page-cta .abt-cta-panel,
  .pharma-page-cta .abt-cta-panel,
  .dept-page-cta .abt-cta-panel,
  #about-page .abt-cta-panel,
  #hospital-page .hospital-page-cta .abt-cta-panel,
#ayurveda-page .hospital-page-cta .abt-cta-panel,
  #pharma-page .pharma-page-cta .abt-cta-panel,
  #departments-page .dept-page-cta .abt-cta-panel {
    grid-template-columns: 1fr !important;
    text-align: center;
    gap: 1.35rem;
    padding: 1.5rem 1.15rem;
  }

  .abt-cta-divider,
  .hospital-page-cta .abt-cta-divider,
  .pharma-page-cta .abt-cta-divider,
  .dept-page-cta .abt-cta-divider,
  #about-page .abt-cta-divider,
  #hospital-page .hospital-page-cta .abt-cta-divider,
#ayurveda-page .hospital-page-cta .abt-cta-divider,
  #pharma-page .pharma-page-cta .abt-cta-divider,
  #departments-page .dept-page-cta .abt-cta-divider {
    width: 55% !important;
    height: 1px !important;
    min-height: 0 !important;
    margin: 0 auto;
    background: linear-gradient(90deg, transparent, rgba(45, 139, 78, 0.28), transparent) !important;
  }

  .abt-cta-col,
  .abt-cta-col--action {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .abt-cta-phones {
    width: 100%;
    max-width: 22rem;
    margin-left: auto;
    margin-right: auto;
    justify-items: center;
    gap: 0.7rem 1.5rem;
  }

  .abt-cta-phones a {
    justify-content: center;
  }

  .abt-cta-address {
    max-width: 32ch;
    margin-left: auto;
    margin-right: auto;
  }

  .abt-cta-col--action,
  .abt-cta-actions {
    width: 100%;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }

  .abt-cta-col--action .btn-primary,
  .abt-cta-col--action .btn-secondary,
  .abt-cta-actions .btn-primary,
  .abt-cta-actions .btn-secondary,
  .hospital-page-cta .abt-cta-col--action > a,
  .pharma-page-cta .abt-cta-col--action > a,
  #about-page .abt-cta-col .btn-primary {
    max-width: none;
    width: 100%;
  }

  .book-premium .book-header {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 480px) {
  .book-premium .book-header .abt-kicker-label {
    font-size: 0.64rem;
    letter-spacing: 0.12em;
    gap: 0.45rem;
  }

  .book-premium .book-header .abt-kicker-line,
  .book-premium .book-header .abt-kicker > .abt-kicker-line {
    width: 1.6rem;
  }

  .abt-cta-phones {
    grid-template-columns: 1fr;
    max-width: 16rem;
    gap: 0.55rem;
  }

  .abt-cta-panel {
    padding: 1.25rem 0.95rem;
  }

  .abt-cta-phones a {
    font-size: 0.88rem;
  }

  .book-premium .book-heading {
    font-size: clamp(1.4rem, 6.5vw, 1.75rem);
  }

  .book-premium .book-intro {
    font-size: 0.82rem;
    padding: 0 0.15rem;
  }
}

/* ==========================================================================
   Our Story page
   ========================================================================== */

#our-story-page .story-hero {
  position: relative;
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3rem) clamp(3rem, 6vw, 4.5rem);
  overflow: hidden;
}

#our-story-page .story-hero-bg {
  display: none;
}

#our-story-page .story-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

#our-story-page .story-hero-title {
  margin: 1rem 0 0;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--forest-green);
}

#our-story-page .story-hero-tagline {
  margin: 0.75rem 0 0;
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-style: italic;
  font-weight: 500;
  color: #003e62;
}

#our-story-page .story-hero-lead {
  margin: 1.35rem auto 0;
  max-width: 680px;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-muted);
}

#our-story-page .story-feature {
  padding: 0 clamp(1.5rem, 4vw, 3rem) clamp(2.5rem, 5vw, 4rem);
}

#our-story-page .story-feature-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto;
}

#our-story-page .story-feature-media {
  position: relative;
  min-height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 56px rgba(0, 62, 98, 0.1);
  border: 1px solid rgba(45, 139, 78, 0.12);
}

#our-story-page .story-feature-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

#our-story-page .story-feature-stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

#our-story-page .story-feature-stats .heritage-stat {
  text-align: left;
  padding: 1.25rem 1.35rem;
}

#our-story-page .story-sections {
  padding: clamp(2rem, 4vw, 3.5rem) clamp(1.5rem, 4vw, 3rem);
  background: linear-gradient(165deg, #f7f9fb 0%, #ffffff 50%, #f0f3f6 100%);
  border-radius: var(--radius-xl);
  margin: 0 clamp(1rem, 3vw, 2rem);
}

#our-story-page .story-sections-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.15rem, 2vw, 1.75rem);
  max-width: 1100px;
  margin: 0 auto;
}

#our-story-page .story-card {
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease;
}

#our-story-page .story-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

#our-story-page .story-card-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-accent);
  background: rgba(197, 160, 78, 0.12);
  border: 1px solid rgba(197, 160, 78, 0.25);
}

#our-story-page .story-card-title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--forest-green);
}

#our-story-page .story-card p {
  margin: 0.85rem 0 0;
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--text-muted);
}

#our-story-page .story-milestones {
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 4vw, 3rem);
  max-width: 760px;
  margin: 0 auto;
}

#our-story-page .story-milestones-header {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

#our-story-page .story-milestones-title {
  margin: 0.75rem 0 0;
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 600;
  color: var(--forest-green);
}

#our-story-page .story-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

#our-story-page .story-timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 1.25rem;
  padding: 1.35rem 0 1.35rem 1.5rem;
  border-left: 2px solid rgba(45, 139, 78, 0.2);
}

#our-story-page .story-timeline-item::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 1.65rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold-accent);
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px rgba(197, 160, 78, 0.3);
}

#our-story-page .story-timeline-item:last-child {
  border-left-color: transparent;
}

#our-story-page .story-timeline-year {
  font-family: "Playfair Display", var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  font-variant-numeric: lining-nums tabular-nums;
  color: var(--gold-accent);
  line-height: 1.3;
}

#our-story-page .story-timeline-item p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-muted);
}

#our-story-page .story-legacy {
  padding: 0 clamp(1.5rem, 4vw, 3rem) clamp(3rem, 6vw, 5rem);
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

#our-story-page .story-legacy-title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  font-weight: 600;
  color: var(--forest-green);
}

#our-story-page .story-legacy-inner p {
  margin: 1.1rem 0 0;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-muted);
}

#our-story-page .story-legacy .heritage-quote {
  margin-top: clamp(2rem, 4vw, 3rem);
}

#our-story-page .story-cta {
  margin-top: 0;
}

#our-story-page .story-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.75rem;
}

@media (max-width: 991px) {
  #our-story-page .story-feature-inner {
    grid-template-columns: 1fr;
  }

  #our-story-page .story-feature-media {
    min-height: 280px;
  }

  #our-story-page .story-feature-stats {
    flex-direction: row;
    flex-wrap: wrap;
  }

  #our-story-page .story-feature-stats .heritage-stat {
    flex: 1 1 calc(50% - 0.5rem);
    text-align: center;
  }

  #our-story-page .story-sections-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  #our-story-page .story-timeline-item {
    grid-template-columns: 4.5rem 1fr;
    gap: 0.85rem;
    padding-left: 1rem;
  }

  #our-story-page .story-feature-stats .heritage-stat {
    flex: 1 1 100%;
  }

  #our-story-page .story-cta-actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 18rem;
    margin-left: auto;
    margin-right: auto;
  }

  .legal-info-grid,
  .legal-sitemap-links {
    grid-template-columns: 1fr;
  }
}

/* Modern hospital theme: hide Ayurvedic leaf decorations */
.foot-leaf,
.foot-leaf-deco,
.hero-leaf,
.hero-leaf-deco,
.division-hero-deco,
.dept-intro-leaf,
.pharma-section-leaf {
  display: none !important;
}

/* Toast notifications */
.toast-container {
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  width: min(100% - 2rem, 22rem);
  pointer-events: none;
}

.toast {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(0, 62, 98, 0.12);
  box-shadow: 0 14px 36px rgba(0, 62, 98, 0.16);
  opacity: 0;
  transform: translateY(-10px) scale(0.98);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: auto;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.toast--success {
  border-left: 4px solid var(--medical-blue);
}

.toast-icon {
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #003e62 0%, #00568a 100%);
}

.toast-message {
  flex: 1;
  font-size: 0.9rem;
  line-height: 1.5;
  font-weight: 500;
  color: var(--deep-navy);
  padding-top: 0.1rem;
}

.toast-close {
  border: 0;
  background: transparent;
  color: var(--text-muted);
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  margin: -0.1rem -0.15rem 0 0;
}

.toast-close:hover {
  color: var(--deep-navy);
}

@media (max-width: 600px) {
  .toast-container {
    top: auto;
    right: 1rem;
    left: 1rem;
    bottom: 1rem;
    width: auto;
  }
}

/* ==========================================================================
   Site-wide mobile alignment
   ========================================================================== */

html {
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
}

img,
video,
canvas,
svg {
  max-width: 100%;
}

iframe {
  max-width: 100%;
}

@media (max-width: 768px) {
  html,
  body {
    overflow-x: hidden;
    max-width: 100%;
  }

  .page-shell,
  .page-shell > section,
  .site-footer,
  .hero-viewport {
    max-width: 100%;
  }

  .page-shell > section,
  .site-footer {
    box-sizing: border-box;
  }

  img,
  video,
  iframe {
    max-width: 100%;
    height: auto;
  }

  iframe[src*="maps"],
  .contact-map iframe,
  .contact-map-wrap iframe {
    width: 100%;
    min-height: 220px;
    height: 240px;
  }

  table {
    display: block;
    max-width: 100%;
    overflow-x: auto;
  }

  h1, h2, h3, p, li, blockquote, address {
    overflow-wrap: break-word;
    word-wrap: break-word;
  }

  .abt-kicker,
  .abt-kicker-label,
  .dept-label,
  .footer-contact-label {
    white-space: normal;
  }

  .heritage-inner,
  .clinic-profile-hero,
  .dept-overview-hero,
  .clinic-split,
  .why-layout,
  .book-main,
  .book-field-row,
  #contact-page .contact-main-grid,
  #contact-page .contact-directory-grid,
  .abt-vm-grid,
  .story-feature-inner,
  .story-sections-grid,
  .legal-info-grid,
  .legal-sitemap-links,
  .pharma-about-grid,
  .division-hero-features {
    grid-template-columns: 1fr !important;
  }

  #ayurveda-page .ayur-dept-card {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  #ayurveda-page .ayur-dept-card-media {
    max-width: none;
    width: 100%;
  }

  .dept-card-body {
    text-align: left;
  }

  .dept-card-link {
    justify-content: flex-start;
    margin-left: 0;
    margin-right: 0;
  }

  .book-submit,
  .contact-submit,
  .book-form .btn-primary,
  .tow-card .tow-card-cta,
  .dept-intro-card-cta,
  .dept-header-cta,
  .contact-cta-actions .btn-primary,
  .contact-cta-actions .btn-secondary,
  .testi-cta-row .btn-primary,
  .testi-cta-row .btn-secondary {
    width: 100%;
    max-width: 100%;
    justify-content: center;
  }

  .testi-cta-row {
    width: 100%;
    align-items: stretch;
  }

  input,
  select,
  textarea,
  .book-field input,
  .book-field select,
  .book-field textarea {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .book-aside,
  .book-aside-media,
  .book-aside-image,
  .heritage-media,
  .heritage-image,
  .clinic-profile-media,
  .clinic-profile-media img {
    width: 100%;
    max-width: 100%;
  }

  .heritage-media,
  .clinic-profile-media {
    min-height: 200px;
  }

  .contact-map,
  .contact-map-wrap {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .division-hero-features li + li {
    border-left: 0;
    border-top: 1px solid rgba(45, 139, 78, 0.12);
  }

  .back-to-top {
    right: max(0.85rem, env(safe-area-inset-right));
    bottom: max(0.85rem, env(safe-area-inset-bottom));
  }
}

@media (max-width: 600px) {
  .feature-cards,
  .book-trust-strip,
  #hospital-page .hospital-spec-grid,
  #hospital-page .hospital-highlight-grid,
  #hospital-page .hospital-service-grid,
  .impact-stats {
    grid-template-columns: 1fr !important;
  }

  .clinic-rehab-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .stats-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tow-card,
  .dept-intro-card,
  .clinic-profile-section,
  .contact-directory-card,
  .book-panel {
    width: 100%;
    max-width: 100%;
  }

  .ayur-pharma-contact {
    flex-direction: column;
    align-items: stretch;
  }

  .ayur-pharma-contact-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Booking availability hint (Laravel integration) */
.book-field-hint {
  margin: 0.4rem 0 0;
  font-size: 0.75rem;
  line-height: 1.4;
  color: var(--label, #6b7280);
}

/* --- Home Featured Doctors Grid --- */
.home-doc-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 2.5vw, 2rem);
  max-width: 1200px;
  margin: 0 auto;
}

.home-doc-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(45, 139, 78, 0.12);
  padding: clamp(1.5rem, 2.5vw, 1.85rem);
  box-shadow: 0 10px 30px rgba(0, 42, 69, 0.05);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  position: relative;
  overflow: hidden;
}

.home-doc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 42, 69, 0.1);
  border-color: rgba(45, 139, 78, 0.3);
}

.home-doc-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #003E62 0%, #2D8B4E 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.home-doc-card:hover::before {
  opacity: 1;
}

.home-doc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.15rem;
}

.home-doc-avatar {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, #003E62 0%, #2D8B4E 100%);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(0, 62, 98, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.95);
}

.home-doc-avatar span {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.04em;
}

.home-doc-badge {
  display: inline-block;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(45, 139, 78, 0.08);
  color: #2D8B4E;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  max-width: 60%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.home-doc-body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

.home-doc-name {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.32rem;
  font-weight: 600;
  color: var(--deep-navy);
  line-height: 1.25;
}

.home-doc-role {
  margin: 0.3rem 0 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--medical-blue);
}

.home-doc-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.65rem 0;
}

.home-doc-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.6rem;
  border-radius: 8px;
  background: #f0f4f7;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-dark);
}

.home-doc-tag svg {
  width: 0.82rem;
  height: 0.82rem;
  stroke: var(--medical-blue);
}

.home-doc-desc {
  margin: 0.35rem 0 1.25rem;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-doc-actions {
  display: flex;
  gap: 0.65rem;
  margin-top: auto;
  padding-top: 0.5rem;
}

.home-doc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.62rem 0.8rem;
  border-radius: 10px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.home-doc-btn--outline {
  flex: 1;
  border: 1px solid rgba(0, 62, 98, 0.18);
  background: transparent;
  color: var(--medical-blue);
}

.home-doc-btn--outline:hover {
  background: rgba(0, 62, 98, 0.05);
  border-color: var(--medical-blue);
}

.home-doc-btn--primary {
  flex: 1.2;
  background: linear-gradient(135deg, #003E62 0%, #2D8B4E 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(45, 139, 78, 0.2);
}

.home-doc-btn--primary:hover {
  box-shadow: 0 6px 18px rgba(45, 139, 78, 0.35);
  transform: translateY(-1px);
}

@media (max-width: 991px) {
  .home-doc-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .home-doc-grid {
    grid-template-columns: 1fr;
  }
  .home-doc-actions {
    flex-direction: column;
  }
}

