﻿/* =========================================
   Niraaya Hospital - Clean Styles
   ========================================= */

:root {
  --dark: #111111;
  --white: #ffffff;
  --ivory: #fefef4;
  --blue: #2d62ff;
  --blue-soft: #c6e3f6;
  --pink: #dd23bb;
  --gold: #ffb937;
  --grey: #888888;
  --text: #111111;
  --muted: rgba(17, 17, 17, 0.55);
  --radius: 16px;
  --max: 1200px;
  --font: "Inter", system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

@media (max-width: 900px) {
  html,
  body {
    /* overflow-x:hidden breaks position:sticky on iOS/Android */
    overflow-x: clip;
  }

  main {
    overflow: visible;
  }
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.section {
  padding: 5rem 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  color: var(--grey);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  line-height: 1.15;
  font-weight: 600;
  margin-bottom: 2rem;
}

.section-title.light {
  color: var(--white);
}

.muted {
  color: var(--muted);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--dark);
  color: var(--white);
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: #222;
}

.btn-nav {
  background: var(--white);
  color: var(--dark);
}

.btn-nav:hover {
  background: var(--ivory);
}

.btn-arrow {
  width: 18px;
  height: 18px;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.btn-cta {
  background: linear-gradient(135deg, #7eb8e0 0%, #3f7eb8 48%, #2a5f96 100%);
  padding: 1rem 1rem 1rem 2rem;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  align-self: flex-start;
  box-shadow: 0 10px 24px rgba(42, 95, 150, 0.35);
}

.btn-cta:hover {
  background: linear-gradient(135deg, #8fc4e8 0%, #4a8bc4 48%, #326ba8 100%);
  filter: brightness(1.03);
}

.btn-cta-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  overflow: hidden;
}

.btn-cta-icon img {
  width: 18px;
  height: 18px;
  display: block;
}

/* ---------- Header ---------- */
.header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.header.is-stuck {
  position: fixed;
  inset: 0 0 auto 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.header.is-stuck .hero-nav-inner {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  max-width: var(--max);
  margin-inline: auto;
  width: min(100% - 2.5rem, var(--max));
}

.logo-img {
  height: 56px;
  width: auto;
  border-radius: 8px;
  display: block;
}

.logo-dark {
  display: none;
}

.header.is-stuck .logo-light {
  display: none;
}

.header.is-stuck .logo-dark {
  display: block;
}

/* Light navbar-transparent over hero, solid when stuck */
.header.header--on-light {
  position: absolute !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  border-bottom: 0;
  box-shadow: none;
  backdrop-filter: none;
  padding: 0.85rem 0;
}

.header.header--on-light .hero-nav-inner {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  padding-top: 0.35rem;
  padding-bottom: 0.35rem;
}

.header.header--on-light .logo-light {
  display: none;
}

.header.header--on-light .logo-dark {
  display: block;
}

.header.header--on-light .nav-link,
.header.header--on-light .dropdown-btn,
.header.header--on-light .nav-dropdown-toggle {
  color: #111111;
}

.header.header--on-light .nav-link[aria-current="page"] {
  font-weight: 600;
}

.header.header--on-light .btn-hero-nav {
  background: linear-gradient(135deg, #2a5f96 0%, #1e4a78 100%);
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(42, 95, 150, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.header.header--on-light .btn-hero-nav:hover {
  background: linear-gradient(135deg, #326ba8 0%, #245688 100%);
  transform: translateY(-1px);
}

.header.header--on-light .menu-btn span {
  background: #111111;
}

.header.header--on-light.is-stuck {
  position: fixed !important;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(28, 36, 34, 0.08);
  box-shadow: 0 8px 24px rgba(28, 36, 34, 0.06);
  backdrop-filter: blur(12px);
  padding: 0.55rem 0;
}

/* Offset hero under fixed light navbar-seamless full-bleed */
body:has(> .header.header--on-light) .hero,
.header.header--on-light + main .hero {
  padding-top: 0;
}

@media (max-width: 900px) {
  body:has(> .header.header--on-light) .hero,
  .header.header--on-light + main .hero {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }
}

.hero-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 1.25rem clamp(1.25rem, 4vw, 2.75rem) 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.95rem;
  color: #111111;
  font-weight: 500;
}

.header.is-stuck .nav-link {
  color: #111111;
}

.nav-chevron {
  opacity: 0.85;
  transition: transform 0.18s ease;
}

.nav-dropdown.is-open .nav-chevron,
.nav-dropdown.open .nav-chevron,
.nav-dropdown:hover .nav-chevron {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.1rem;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0.15rem;
  border: none;
  background: transparent;
  color: inherit;
  cursor: pointer;
  line-height: 0;
}

.nav-dropdown-toggle .nav-chevron {
  display: block;
  pointer-events: none;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  min-width: 340px;
  background: #fff;
  border: 1px solid rgba(20, 40, 63, 0.08);
  border-radius: 18px;
  padding: 0.45rem;
  box-shadow: 0 20px 50px rgba(20, 40, 63, 0.16);
  display: grid;
  gap: 0.2rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  z-index: 200;
}

.dropdown-menu--services {
  min-width: 360px;
}

.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  width: 12px;
  height: 12px;
  background: #fff;
  border-left: 1px solid rgba(20, 40, 63, 0.08);
  border-top: 1px solid rgba(20, 40, 63, 0.08);
  transform: translateX(-50%) rotate(45deg);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu,
.nav-dropdown.is-open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.dropdown-menu a {
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
  color: #14283f;
  font-size: 0.9rem;
  text-decoration: none;
}

.dropdown-item {
  display: grid;
  grid-template-columns: 2.55rem 1fr;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 0.9rem;
  border-radius: 14px;
  color: #14283f;
  text-decoration: none;
  transition: background 0.18s ease;
}

.dropdown-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 12px;
  background: #eef3f9;
  color: #1a3365;
  flex-shrink: 0;
  transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.dropdown-item__icon--robotic {
  background: #1a3365;
  color: #fff;
}

.dropdown-item__icon--gastro {
  background: #e8f3ef;
  color: #1f6b55;
}

.dropdown-item__icon--hernia {
  background: #f3ebe3;
  color: #9a5b2f;
}

.dropdown-item__icon--ent {
  background: #1a3365;
  color: #fff;
}

.dropdown-item__icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.dropdown-item__text {
  display: grid;
  gap: 0.18rem;
  min-width: 0;
}

.dropdown-item__text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.3;
  color: #14283f;
  white-space: normal;
}

.dropdown-item__text small {
  display: block;
  font-size: 0.8rem;
  line-height: 1.4;
  color: #6b7c90;
}

.dropdown-menu a:hover,
.dropdown-item:hover {
  background: #eef3f8;
}

.dropdown-menu a:hover .dropdown-item__icon,
.dropdown-item:hover .dropdown-item__icon {
  box-shadow: 0 6px 14px rgba(26, 51, 101, 0.18);
}

.dropdown-menu a:hover .dropdown-item__icon--robotic,
.dropdown-item:hover .dropdown-item__icon--robotic {
  background: #14284f;
  color: #fff;
}

.dropdown-menu a:hover .dropdown-item__icon--gastro,
.dropdown-item:hover .dropdown-item__icon--gastro {
  background: #d7ebe3;
  color: #165544;
}

.dropdown-menu a:hover .dropdown-item__icon--hernia,
.dropdown-item:hover .dropdown-item__icon--hernia {
  background: #ead9c8;
  color: #7a4520;
}

.dropdown-menu a:hover .dropdown-item__icon--ent,
.dropdown-item:hover .dropdown-item__icon--ent {
  background: #14284f;
  color: #fff;
}

.menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  margin-right: -10px;
  z-index: 110;
  -webkit-tap-highlight-color: transparent;
}

.menu-btn span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.header.is-stuck .menu-btn span {
  background: var(--dark);
}

/* ---------- Hero ---------- */
.hero {
  padding: 0;
  background: #b2b4b0;
}

.hero-shell {
  position: relative;
  height: 100vh;
  height: 100dvh;
  min-height: 100vh;
  min-height: 100dvh;
  max-height: 100vh;
  max-height: 100dvh;
  border-radius: 0;
  overflow: hidden;
  color: #111111;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 0;
  box-shadow: none;
  background: #b2b4b0;
}

.hero-shell::after {
  display: none;
}

.hero .header {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.35) 72%, transparent 100%);
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.7s ease, visibility 0.7s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  transform: scale(1.02);
  transition: transform 8s ease;
}

.hero-bg-picture {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.hero-bg-picture .hero-bg {
  position: absolute;
  inset: 0;
}

.hero-slide.is-active .hero-bg {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      105deg,
      rgba(178, 180, 176, 0.97) 0%,
      rgba(178, 180, 176, 0.88) 28%,
      rgba(178, 180, 176, 0.35) 52%,
      rgba(178, 180, 176, 0.05) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: clamp(5.5rem, 12vh, 7rem) clamp(1.5rem, 4vw, 3.25rem) clamp(2.5rem, 6vh, 4rem);
  max-width: 42rem;
}

.hero-brand {
  display: block;
  font-family: var(--font);
  font-size: clamp(2.4rem, 5.2vw, 4.25rem) !important;
  font-weight: 600;
  letter-spacing: -0.03em;
  text-transform: none;
  margin-bottom: 0.35rem !important;
  opacity: 1 !important;
  color: #0f1c2e;
  padding: 0;
  border-radius: 0;
  background: none;
  border: 0;
  line-height: 1.05;
}

.hero h1 {
  font-family: var(--font);
  font-size: clamp(1.55rem, 3.2vw, 2.35rem);
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  color: #1a3340;
}

.hero .hero-lead,
.hero-content > p:not(.hero-brand) {
  font-size: clamp(1.02rem, 1.9vw, 1.22rem);
  max-width: 34rem;
  margin-bottom: 2rem;
  line-height: 1.65;
  color: #4a5f78;
  font-weight: 500;
}

.hero-dots {
  position: absolute;
  left: clamp(1.5rem, 4vw, 3rem);
  bottom: clamp(1.35rem, 3vw, 2.15rem);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 35, 55, 0.08);
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px rgba(15, 35, 55, 0.08);
}

.hero-dot {
  width: 1.75rem;
  height: 0.34rem;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: rgba(15, 35, 55, 0.18);
  cursor: pointer;
  transition: width 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.hero-dot.is-active {
  width: 2.5rem;
  background: linear-gradient(90deg, #2a5f96 0%, #1f5c57 100%);
  transform: none;
}

.btn-hero-nav {
  background: linear-gradient(135deg, #2a5f96 0%, #1e4a78 100%);
  color: var(--white);
  padding: 0.7rem 1.35rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(42, 95, 150, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-hero-nav:hover {
  background: linear-gradient(135deg, #326ba8 0%, #245688 100%);
  transform: translateY(-1px);
}

.btn-hero-cta {
  background: linear-gradient(135deg, #2a5f96 0%, #1e4a78 100%);
  color: var(--white);
  padding: 0.9rem 0.9rem 0.9rem 1.85rem;
  font-size: clamp(1rem, 1.8vw, 1.12rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  gap: 1.1rem;
  border-radius: 999px;
  box-shadow:
    0 14px 32px rgba(42, 95, 150, 0.32),
    0 4px 12px rgba(42, 95, 150, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-hero-cta:hover {
  background: linear-gradient(135deg, #326ba8 0%, #245688 100%);
  transform: translateY(-2px);
  box-shadow:
    0 18px 36px rgba(42, 95, 150, 0.36),
    0 6px 14px rgba(42, 95, 150, 0.18);
}

.btn-hero-cta-icon {
  width: 2.55rem;
  height: 2.55rem;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(15, 35, 55, 0.12);
}

.btn-hero-cta-icon svg {
  display: block;
}

.btn-hero-cta-icon svg path {
  stroke: #2a5f96;
}

.btn-hero-cta-icon {
  color: #2a5f96;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
  margin-top: 0.25rem;
}

/* ---------- About ---------- */
.about {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.about-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 8% 40%, rgba(26, 51, 101, 0.07), transparent 70%),
    radial-gradient(ellipse 45% 55% at 92% 70%, rgba(245, 124, 32, 0.08), transparent 65%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 48%, #fff8f2 100%);
  pointer-events: none;
  z-index: 0;
}

.about .container {
  position: relative;
  z-index: 1;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.about-image {
  position: relative;
  padding: 0.75rem 0.75rem 1.25rem 0;
}

.about-image-frame {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 1.25rem;
  background: linear-gradient(160deg, #e8eef6 0%, #f5f5f5 100%);
  box-shadow: 0 24px 48px rgba(26, 51, 101, 0.12);
}

.about-image-frame img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  max-height: 560px;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 1.25rem;
  transition: transform 0.55s ease;
}

.about-image:hover .about-image-frame img {
  transform: scale(1.03);
}

.about-image-accent {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 72%;
  height: 72%;
  border: 2px solid #f57c20;
  border-radius: 1.25rem;
  z-index: 0;
}

.about-eyebrow {
  color: #f57c20;
  position: relative;
  display: inline-block;
  padding-left: 2.25rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.about-eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1.75rem;
  height: 2px;
  background: #f57c20;
  transform: translateY(-50%);
}

.about-text h2 {
  font-family: var(--font);
  font-size: clamp(2.1rem, 4.2vw, 3.1rem);
  line-height: 1.1;
  margin-bottom: 0.85rem;
  color: #1a3365;
  letter-spacing: -0.02em;
  font-weight: 500;
}

.about-text .doctor-role {
  color: #1a3365;
  font-weight: 600;
  margin-bottom: 1.35rem;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.45;
  max-width: 28rem;
  opacity: 0.9;
}

.about-text .doctor-qual {
  margin-bottom: 1.35rem;
}

.doctor-qual-label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(17, 17, 17, 0.45);
  font-weight: 600;
  margin-bottom: 0.7rem;
}

.doctor-qual-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.doctor-qual-tags span {
  display: inline-block;
  padding: 0.35rem 0.7rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: #1a3365;
  background: rgba(26, 51, 101, 0.06);
  border: 1px solid rgba(26, 51, 101, 0.12);
  border-radius: 8px;
  line-height: 1.3;
}

.about-text .doctor-bio {
  color: rgba(17, 17, 17, 0.62);
  margin-bottom: 1.75rem;
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 34rem;
}

.about-highlights {
  display: flex;
  gap: 1.75rem;
  margin-bottom: 1.85rem;
  padding: 1.1rem 0;
  border-top: 1px solid rgba(26, 51, 101, 0.12);
  border-bottom: 1px solid rgba(26, 51, 101, 0.12);
}

.about-highlight {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.about-highlight strong {
  font-size: clamp(1.35rem, 2.5vw, 1.7rem);
  color: #1a3365;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.about-highlight span {
  font-size: 0.82rem;
  color: rgba(17, 17, 17, 0.5);
  font-weight: 500;
}

.btn-about {
  background: #1a3365;
  border-radius: 12px;
  padding: 0.95rem 1.55rem;
}

.btn-about:hover {
  background: #f57c20;
}

.about--alt {
  padding-top: 0;
}

#dr-neel,
#dr-khushali {
  scroll-margin-top: 1.5rem;
}

.about-grid--reverse {
  direction: rtl;
}

.about-grid--reverse > * {
  direction: ltr;
}

.about-image-frame img.about-img--landscape {
  object-position: 78% center;
}

.doctor-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin: -0.5rem 0 1.5rem;
}

.doctor-contact a {
  color: #1a3365;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(26, 51, 101, 0.25);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.doctor-contact a:hover {
  color: #f57c20;
  border-color: #f57c20;
}

@media (max-width: 900px) {
  .about-grid--reverse {
    direction: ltr;
  }
}

/* ---------- Doctors preview (home) ---------- */
.doctors-preview {
  background: #fff;
}

.doctors-preview-head {
  max-width: 36rem;
  margin-bottom: 2.25rem;
}

.doctors-preview-head h2 {
  font-family: var(--font);
  font-size: clamp(2.1rem, 4.2vw, 3.1rem);
  line-height: 1.1;
  margin: 0 0 0.75rem;
  color: #1a3365;
  letter-spacing: -0.02em;
  font-weight: 500;
}

.doctors-preview-head > p:not(.eyebrow) {
  margin: 0;
  color: rgba(17, 17, 17, 0.62);
  font-size: 1.05rem;
  line-height: 1.65;
}

.doctors-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.doctors-preview-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.25rem;
  align-items: center;
  text-decoration: none;
  color: inherit;
  padding: 1rem;
  border-radius: 1.25rem;
  background: linear-gradient(160deg, #f7f9fc 0%, #ffffff 55%, #fff8f2 100%);
  border: 1px solid rgba(26, 51, 101, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.doctors-preview-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(26, 51, 101, 0.1);
}

.doctors-preview-photo {
  overflow: hidden;
  border-radius: 1rem;
  aspect-ratio: 1 / 1.15;
  background: #e8eef6;
}

.doctors-preview-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.45s ease;
}

.doctors-preview-photo img.about-img--landscape {
  object-position: 78% center;
}

.doctors-preview-card:hover .doctors-preview-photo img {
  transform: scale(1.04);
}

.doctors-preview-body h3 {
  margin: 0 0 0.5rem;
  font-size: 1.45rem;
  color: #1a3365;
  line-height: 1.2;
}

.doctors-preview-body p {
  margin: 0 0 1rem;
  color: rgba(17, 17, 17, 0.62);
  line-height: 1.55;
  font-size: 0.98rem;
}

.doctors-preview-link {
  color: #f57c20;
  font-weight: 600;
  font-size: 0.95rem;
}

.doctors-preview-cta {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

@media (max-width: 900px) {
  .doctors-preview-grid {
    grid-template-columns: 1fr;
  }

  .doctors-preview-card {
    grid-template-columns: 0.85fr 1.15fr;
  }
}

@media (max-width: 560px) {
  .doctors-preview-card {
    grid-template-columns: 1fr;
  }

  .doctors-preview-photo {
    aspect-ratio: 4 / 5;
    max-width: 16rem;
    width: 100%;
    margin-inline: auto;
  }
}

.about-image--logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #f4f7fb 0%, #ffffff 55%, #fff4eb 100%);
  border-radius: var(--radius);
  min-height: 420px;
  padding: 2.5rem;
}

.about-image--logo img {
  min-height: 0;
  height: auto;
  max-width: 18rem;
  object-fit: contain;
  border-radius: 0;
}

/* ---------- Clinic info ---------- */
.clinic-info {
  position: relative;
  overflow: hidden;
  background: #fff;
  padding-top: clamp(3rem, 6vw, 4.5rem);
  padding-bottom: clamp(3rem, 6vw, 4.5rem);
}

.clinic-info-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 90% 20%, rgba(245, 124, 32, 0.12), transparent 70%),
    radial-gradient(ellipse 45% 55% at 5% 80%, rgba(42, 95, 150, 0.1), transparent 65%),
    linear-gradient(180deg, #ffffff 0%, #f7f9fc 55%, #fff8f2 100%);
  pointer-events: none;
  z-index: 0;
}

.clinic-info-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(40px);
}

.clinic-info-orb--1 {
  width: 220px;
  height: 220px;
  top: 8%;
  right: 6%;
  background: rgba(245, 124, 32, 0.18);
}

.clinic-info-orb--2 {
  width: 260px;
  height: 260px;
  bottom: 6%;
  left: 4%;
  background: rgba(42, 95, 150, 0.14);
}

.clinic-info-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: stretch;
}

.clinic-info-panel {
  height: 100%;
  padding: clamp(1.75rem, 3vw, 2.35rem);
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow:
    0 20px 50px rgba(26, 51, 101, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}

.clinic-eyebrow {
  color: #f57c20;
  position: relative;
  display: inline-block;
  padding-left: 2.25rem;
  margin-bottom: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.clinic-eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1.75rem;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f57c20 0%, #ffb86a 100%);
  transform: translateY(-50%);
}

.clinic-info-copy h2 {
  font-family: var(--font);
  font-size: clamp(2rem, 4vw, 2.85rem);
  line-height: 1.15;
  margin-bottom: 0.9rem;
  color: #1a3365;
  letter-spacing: -0.02em;
  font-weight: 600;
}

.clinic-info-copy > p:not(.eyebrow) {
  color: #4a6078;
  max-width: 28rem;
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.clinic-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
}

.clinic-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #1a3365;
  background: rgba(42, 95, 150, 0.08);
  border: 1px solid rgba(42, 95, 150, 0.12);
}

.clinic-trust-badge--live::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.18);
}

.clinic-trust-badge--live {
  color: #f57c20;
  background: rgba(245, 124, 32, 0.1);
  border-color: rgba(245, 124, 32, 0.18);
}

.clinic-info-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn-clinic-secondary {
  background: transparent;
  color: #1a3365;
  border-radius: 999px;
  padding: 0.95rem 1.55rem;
  font-weight: 600;
  border: 2px solid rgba(26, 51, 101, 0.18);
  box-shadow: none;
  gap: 0.55rem;
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.btn-clinic-primary {
  background: linear-gradient(135deg, #2a5f96 0%, #1e4a78 100%);
  border-radius: 999px;
  padding: 0.95rem 1.55rem;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(42, 95, 150, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-clinic-primary:hover {
  background: linear-gradient(135deg, #326ba8 0%, #245688 100%);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(42, 95, 150, 0.34);
}

.btn-clinic-secondary:hover {
  background: rgba(245, 124, 32, 0.08);
  border-color: rgba(245, 124, 32, 0.45);
  color: #f57c20;
  transform: translateY(-2px);
}

.clinic-info-grid-shell {
  padding: 0.65rem;
  border-radius: 1.6rem;
  background: linear-gradient(145deg, rgba(42, 95, 150, 0.12) 0%, rgba(245, 124, 32, 0.1) 100%);
  box-shadow: 0 18px 40px rgba(26, 51, 101, 0.08);
}

.clinic-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.clinic-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.45rem 1.35rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid rgba(26, 51, 101, 0.1);
  border-radius: 1.1rem;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(26, 51, 101, 0.07);
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  min-height: 100%;
}

.clinic-tile::after {
  content: "";
  position: absolute;
  inset: auto -20% -40% auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(42, 95, 150, 0.08) 0%, transparent 70%);
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.clinic-tile--address::after { background: radial-gradient(circle, rgba(42, 95, 150, 0.1) 0%, transparent 70%); }
.clinic-tile--timings::after { background: radial-gradient(circle, rgba(245, 124, 32, 0.1) 0%, transparent 70%); }
.clinic-tile--phone::after { background: radial-gradient(circle, rgba(42, 95, 150, 0.1) 0%, transparent 70%); }
.clinic-tile--email::after { background: radial-gradient(circle, rgba(245, 124, 32, 0.08) 0%, transparent 70%); }

a.clinic-tile:hover::after {
  transform: scale(1.35);
  opacity: 1.2;
}

.clinic-tile::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #2a5f96 0%, #1e4a78 100%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

a.clinic-tile:hover {
  border-color: rgba(245, 124, 32, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(26, 51, 101, 0.12);
}

a.clinic-tile:hover::before {
  opacity: 1;
  background: linear-gradient(90deg, #f57c20 0%, #ffb86a 100%);
}

.clinic-tile-icon {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 0.95rem;
  background: linear-gradient(145deg, rgba(42, 95, 150, 0.14) 0%, rgba(26, 74, 120, 0.08) 100%);
  color: #1a3365;
  margin-bottom: 0.35rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

a.clinic-tile:hover .clinic-tile-icon {
  background: linear-gradient(145deg, rgba(245, 124, 32, 0.18) 0%, rgba(245, 124, 32, 0.1) 100%);
  color: #f57c20;
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 8px 18px rgba(245, 124, 32, 0.18);
}

.clinic-time-slots {
  display: grid;
  gap: 0.65rem;
}

.clinic-time-slot {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.75rem 0.9rem;
  border-radius: 0.85rem;
  background: rgba(42, 95, 150, 0.06);
  border: 1px solid rgba(42, 95, 150, 0.08);
  font-size: 0.92rem;
  line-height: 1.4;
  color: #1a3365;
}

.clinic-time-slot strong {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #f57c20;
}

.clinic-tile--timings {
  border-color: rgba(245, 124, 32, 0.14);
}

.clinic-tile--timings .clinic-tile-icon {
  background: linear-gradient(145deg, rgba(245, 124, 32, 0.14) 0%, rgba(245, 124, 32, 0.08) 100%);
  color: #f57c20;
}

.clinic-tile-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(26, 51, 101, 0.5);
  font-weight: 700;
}

.clinic-tile-value {
  font-size: 1rem;
  line-height: 1.55;
  color: #1a3365;
  font-weight: 500;
}

.clinic-tile-action {
  margin-top: auto;
  padding-top: 0.65rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #2a5f96;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap 0.2s ease, color 0.2s ease;
}

a.clinic-tile:hover .clinic-tile-action {
  gap: 0.55rem;
  color: #1e4a78;
}

a.clinic-tile:hover .clinic-tile-action::after {
  content: "→";
  font-size: 0.95rem;
}

.clinic-tile-action::after {
  content: "";
}

.footer-address,
.footer-timings {
  font-size: 0.88rem !important;
  line-height: 1.5 !important;
  color: rgba(26, 43, 66, 0.78);
  max-width: none;
}

@media (max-width: 900px) {
  .clinic-info-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .clinic-info-grid {
    grid-template-columns: 1fr;
  }

  .clinic-info-actions {
    flex-direction: column;
  }

  .clinic-info-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .about-image {
    padding: 0 0.65rem 0.85rem 0;
    max-width: 22rem;
    margin-inline: auto;
    width: 100%;
  }

  .about-image-frame {
    width: 100%;
    aspect-ratio: 4 / 5;
    max-height: none;
  }

  .about-image-frame img {
    width: 100%;
    height: 100%;
    min-height: 0;
    max-height: none;
    object-fit: cover;
    object-position: center top;
  }

  .about-image:hover .about-image-frame img {
    transform: none;
  }

  .about-image-accent {
    width: 92%;
    height: 92%;
    right: 0;
    bottom: 0;
  }

  .about-image--logo {
    min-height: 260px;
    padding: 1.75rem;
    max-width: none;
    aspect-ratio: auto;
  }

  .about-highlights {
    gap: 1.15rem;
  }

  .page-doctors .about {
    padding: 2.5rem 0 3rem;
  }

  .page-doctors .about-grid {
    gap: 1.5rem;
  }

  .page-doctors .about-image {
    padding: 0 0.65rem 0.85rem 0;
    max-width: 20rem;
  }

  .page-doctors .about-image-accent {
    right: 0;
    bottom: 0;
    width: 92%;
    height: 92%;
  }

  .page-doctors .about-image-frame img {
    min-height: 0;
    max-height: none;
    object-position: center 12%;
  }

  .page-doctors .about-text h2 {
    font-size: clamp(1.55rem, 6vw, 1.9rem);
  }

  .page-doctors .about-highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem;
  }

  .page-doctors .about-highlight {
    padding: 0.75rem 0.4rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(26, 51, 101, 0.1);
    border-radius: 0.75rem;
  }

  .page-doctors .about-highlight strong {
    font-size: 1.15rem;
  }

  .page-doctors .about-highlight span {
    font-size: 0.72rem;
  }

  .page-doctors .doctor-qual-tags {
    gap: 0.4rem;
  }

  .page-doctors .doctor-qual-tags span {
    font-size: 0.75rem;
    padding: 0.3rem 0.55rem;
  }

  .page-doctors .btn-about {
    width: 100%;
    justify-content: center;
  }

  .page-doctors main {
    padding-bottom: 6.5rem;
  }

  #dr-neel,
  #dr-khushali {
    scroll-margin-top: 5rem;
  }
}

@media (max-width: 560px) {
  .page-doctors .about-image {
    padding: 0 0.5rem 0.75rem 0;
    max-width: 18.5rem;
  }

  .page-doctors .about-image-accent {
    right: 0;
    bottom: 0;
    width: 93%;
    height: 93%;
  }

  .page-doctors .about-image-frame img {
    min-height: 0;
    max-height: none;
  }

  .page-doctors .c-hero {
    padding-top: 5.5rem;
    padding-bottom: 1.5rem;
  }

  .page-doctors .c-banner-copy h1 {
    font-size: clamp(1.75rem, 8vw, 2.1rem);
  }

  .page-doctors .c-hero-cta {
    width: 100%;
  }

  .page-doctors .c-hero-cta .c-btn {
    flex: 1 1 auto;
    justify-content: center;
    text-align: center;
  }
}

/* ---------- Freezing / Accordion ---------- */
.freezing {
  background: linear-gradient(180deg, #eef5fb 0%, #fefef6 55%, #fff8f2 100%);
}

.freezing-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.freezing-left .eyebrow {
  color: #2a5f96;
  font-weight: 600;
}

.freezing-left h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #1e3a5f;
}

.accordion {
  margin-bottom: 2rem;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(42, 95, 150, 0.14);
  border-radius: 1.25rem;
  padding: 0.35rem 1.25rem;
  box-shadow: 0 12px 32px rgba(17, 17, 17, 0.06);
}

.acc-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.acc-item:last-child {
  border-bottom: none;
}

.acc-btn {
  width: 100%;
  text-align: left;
  padding: 1.1rem 0;
  font-size: 1.2rem;
  font-weight: 500;
  color: #1e3a5f;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.2s ease;
}

.acc-btn::after {
  content: "+";
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  line-height: 1;
  color: #2a5f96;
  background: rgba(42, 95, 150, 0.1);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.acc-item.active .acc-btn {
  color: #2a5f96;
}

.acc-item.active .acc-btn::after {
  content: "−";
  background: linear-gradient(135deg, #2a5f96 0%, #1e4a78 100%);
  color: #fff;
}

.acc-body {
  display: none;
  padding: 0 0 1rem;
}

.acc-item.active .acc-body {
  display: block;
}

.acc-body p {
  color: #4a6078;
  font-size: 1.05rem;
  line-height: 1.55;
}

.freezing-left .btn {
  background: linear-gradient(135deg, #2a5f96 0%, #1e4a78 100%);
  box-shadow: 0 8px 22px rgba(42, 95, 150, 0.32);
}

.freezing-left .btn:hover {
  background: linear-gradient(135deg, #326ba8 0%, #245688 100%);
}

.freezing-clinic-card {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 24px 48px rgba(17, 17, 17, 0.12);
  border: 3px solid rgba(42, 95, 150, 0.2);
}

.freezing-clinic-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 0.35rem;
  background: linear-gradient(90deg, #2a5f96 0%, #1e4a78 100%);
  z-index: 2;
}

.freezing-clinic-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  display: block;
}

.freezing-clinic-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #1e3a5f;
  font-size: 0.82rem;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(17, 17, 17, 0.12);
}

.freezing-clinic-badge-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.18);
}

@media (max-width: 768px) {
  .freezing-right {
    max-width: 100%;
    margin-inline: auto;
    width: 100%;
  }

  .freezing-clinic-card img {
    aspect-ratio: 16 / 11;
  }

  .accordion {
    padding-inline: 1rem;
  }
}

/* ---------- How it works - scroll + auto slide ---------- */
.works {
  background: linear-gradient(180deg, #f8fbfe 0%, #eef5fb 48%, #f7fbfe 100%);
  height: 300vh;
  position: relative;
  padding: 0;
  overflow: visible;
}

.works-pin {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 0 1.5rem;
  overflow: hidden;
  background: linear-gradient(180deg, #f8fbfe 0%, #eef5fb 48%, #f7fbfe 100%);
}

.works-header {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-inline: 1.25rem;
  flex-shrink: 0;
}

.works-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.65rem;
}

.works-title {
  font-family: var(--font);
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--dark);
}

.works-track {
  overflow: hidden;
  padding: 2.25rem 0 3rem;
  cursor: default;
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: center;
  touch-action: pan-y;
}

.works-track::-webkit-scrollbar {
  display: none;
}

.works-row {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  padding-left: max(1.25rem, calc((100vw - var(--max)) / 2));
  padding-right: 4rem;
  align-items: stretch;
  height: min(620px, 70vh);
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

/* Two-row staggered columns */
.h-col {
  display: grid;
  grid-template-rows: minmax(min-content, 1.2fr) minmax(0, 0.8fr);
  gap: 1.1rem;
  width: min(290px, 70vw);
  flex-shrink: 0;
  height: 100%;
}

.h-col--stagger-top {
  transform: translateY(-1.5rem);
}

.h-col--stagger-bottom {
  transform: translateY(1.5rem);
}

/* Extra room for cards with lead + desc (e.g. Step 5) */
.h-col--rich {
  grid-template-rows: minmax(min-content, 1.55fr) minmax(0, 0.45fr);
}

.h-col--rich .work-card {
  min-height: 100%;
  height: auto;
  padding-bottom: 1.6rem;
}

.h-col--tall {
  grid-template-rows: 1fr;
  width: min(310px, 74vw);
  overflow: visible;
}

/* Step 3 style: card + photo side by side */
.h-col--pair {
  grid-template-rows: 1fr;
  grid-template-columns: 1fr 1fr;
  width: min(560px, 88vw);
  gap: 1.1rem;
}

.work-spacer {
  width: 100%;
  height: 100%;
}

.work-card {
  border-radius: 2rem;
  padding: 1.25rem 1.3rem 1.45rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.25rem;
  height: auto;
  min-height: 100%;
  box-sizing: border-box;
  overflow: visible;
}

.h-col--tall .work-card,
.h-col--pair .work-card {
  height: 100%;
}

.work-card--blue {
  background: linear-gradient(155deg, #eaf5fc 0%, #d4e8f6 48%, #c2dcf0 100%);
}

.work-card--peach {
  background: linear-gradient(155deg, #fff5f1 0%, #ffe3da 45%, #ffd2c6 100%);
}

.work-card--sky {
  background: linear-gradient(155deg, #5a97cf 0%, #3f7eb8 48%, #2f679c 100%);
  color: #fff;
}

.work-card--sky .work-desc {
  color: rgba(255, 255, 255, 0.78);
}

.work-card--teal {
  background: linear-gradient(155deg, #4eb3ab 0%, #2f8f8a 48%, #217570 100%);
  color: #fff;
}

.work-card--teal .work-desc {
  color: rgba(255, 255, 255, 0.78);
}

/* Step 2 & 4 – 4-image fan collage (opens on hover) */
.h-col--fan {
  overflow: visible;
  width: min(340px, 78vw);
  z-index: 2;
}

.h-col--fan:has(.is-open) {
  z-index: 12;
}

.work-card--fan {
  overflow: visible;
  position: relative;
  justify-content: flex-start;
  cursor: pointer;
  padding-bottom: 1.1rem;
  gap: 0.35rem;
}

.work-card--fan .work-content {
  position: relative;
  z-index: 2;
  margin-top: 1.35rem;
  margin-bottom: 0.35rem;
  flex: 0 0 auto;
}

.work-fan {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 190px;
  margin-top: auto;
  flex: 0 0 190px;
}

.fan-img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(86%, 12.5rem);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 1.35rem;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  transform-origin: center center;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    opacity 0.45s ease;
  pointer-events: none;
  opacity: 0;
  background: #d9e6f2;
}

.fan-img.is-shown {
  opacity: 1;
}

.fan-1 {
  z-index: 1;
  transform: translate(-50%, -50%) rotate(-5deg);
}

.fan-2 {
  z-index: 2;
  transform: translate(-50%, -50%) rotate(3deg);
}

.fan-3 {
  z-index: 3;
  transform: translate(-50%, -50%) rotate(-2deg);
}

.fan-4 {
  z-index: 4;
  transform: translate(-50%, -50%) rotate(1deg);
}

.work-card--fan.is-open .fan-1 {
  z-index: 5;
  transform: translate(-108%, -108%) rotate(-8deg);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.26);
}

.work-card--fan.is-open .fan-2 {
  z-index: 6;
  transform: translate(4%, -112%) rotate(7deg);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.26);
}

.work-card--fan.is-open .fan-3 {
  z-index: 7;
  transform: translate(-104%, 2%) rotate(3deg);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.26);
}

.work-card--fan.is-open .fan-4 {
  z-index: 8;
  transform: translate(6%, 6%) rotate(-5deg);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.26);
}

.work-card--lavender,
.work-card--grey {
  background: linear-gradient(155deg, #f2f7fb 0%, #e4eef7 48%, #d5e4f1 100%);
}

.work-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
}

.work-card-top h3 {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  line-height: 1.35;
  max-width: 72%;
}

.work-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  overflow: hidden;
}

.work-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.work-icon--blue {
  background: #2a5f96;
}

.work-icon--blue img {
  width: 58%;
  height: 58%;
  filter: brightness(0) invert(1);
}

.work-icon--peach {
  background: #c96b63;
}

.work-icon--peach img {
  width: 58%;
  height: 58%;
  filter: brightness(0) invert(1);
}

.work-icon--sky,
.work-icon--teal {
  background: #ffffff;
}

.work-icon--sky img,
.work-icon--teal img {
  width: 58%;
  height: 58%;
  filter: none;
}

.work-icon--lavender,
.work-icon--grey {
  background: #2a5f96;
}

.work-icon--lavender img,
.work-icon--grey img {
  width: 58%;
  height: 58%;
  filter: brightness(0) invert(1);
}

.work-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1.1rem;
  flex: 1 1 auto;
}

.work-card--media .work-content {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  flex: 0 0 auto;
}

.work-lead {
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.3;
}

.work-desc {
  font-size: 0.88rem;
  color: rgba(17, 17, 17, 0.5);
  line-height: 1.4;
}

.work-photo-card {
  border-radius: 2rem;
  overflow: hidden;
  height: 100%;
  background: #d9e6f2;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.work-photo-card--offset {
  margin-left: 1.25rem;
  width: calc(100% - 1.25rem);
  justify-self: end;
}

.work-photo-card:hover {
  transform: scale(1.02);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
}

.work-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.5s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.work-photo-card img.is-shown {
  opacity: 1;
  transform: scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .fan-img,
  .fan-img.is-shown,
  .work-photo-card img,
  .work-photo-card img.is-shown {
    opacity: 1;
    transition: none;
  }

  .work-photo-card img,
  .work-photo-card img.is-shown {
    transform: scale(1);
  }
}

.work-media {
  margin-top: auto;
  width: 100%;
  height: min(46%, 220px);
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}

.work-media--wave {
  border-radius: 48% 52% 45% 55% / 42% 48% 52% 58%;
  transform: rotate(-2deg);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.work-media--wave-alt {
  border-radius: 55% 45% 58% 42% / 50% 40% 60% 50%;
  transform: rotate(2deg);
}

.work-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: rotate(2deg) scale(1.08);
}

.work-media--wave-alt img {
  transform: rotate(-2deg) scale(1.08);
}

.work-card--media {
  overflow: visible;
}

.works-cta {
  display: flex;
  justify-content: center;
  padding: 0.25rem 1.25rem 0;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .works {
    height: 300vh !important;
    padding: 0 !important;
    overflow: visible !important;
  }

  .works-pin {
    position: sticky !important;
    top: 0 !important;
    height: 100dvh !important;
    min-height: 0 !important;
    padding: 4.5rem 0 1.25rem !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
  }

  .works-header {
    margin-bottom: 0.85rem;
    padding-inline: 1rem;
    flex-shrink: 0;
  }

  .works-title {
    font-size: clamp(1.45rem, 6vw, 1.9rem);
  }

  .works-track {
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
    padding: 1.25rem 0 1.75rem !important;
    flex: 1 1 auto !important;
    min-height: 0 !important;
    cursor: default !important;
    touch-action: pan-y !important;
  }

  .works-row {
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch !important;
    width: max-content !important;
    max-width: none !important;
    height: min(560px, 64dvh) !important;
    gap: 1rem !important;
    padding-left: 1rem !important;
    padding-right: 3rem !important;
    will-change: transform !important;
  }

  .h-col,
  .h-col--tall,
  .h-col--fan,
  .h-col--pair,
  .h-col--stagger-top,
  .h-col--stagger-bottom {
    width: min(250px, 72vw) !important;
    max-width: min(250px, 72vw) !important;
    height: 100% !important;
    display: grid !important;
    grid-template-rows: minmax(min-content, 1.2fr) minmax(0, 0.8fr) !important;
    grid-template-columns: none !important;
    gap: 0.75rem !important;
    overflow: visible !important;
    flex-shrink: 0 !important;
  }

  .h-col--rich {
    grid-template-rows: minmax(min-content, 1.65fr) minmax(0, 0.35fr) !important;
  }

  .h-col--tall,
  .h-col--fan {
    grid-template-rows: 1fr !important;
    width: min(270px, 78vw) !important;
    max-width: min(270px, 78vw) !important;
  }

  .h-col--stagger-top {
    transform: translateY(-0.55rem) !important;
  }

  .h-col--stagger-bottom {
    transform: translateY(0.55rem) !important;
  }

  .work-spacer {
    display: block !important;
  }

  .work-card,
  .h-col--tall .work-card,
  .work-card--fan {
    height: auto !important;
    min-height: 100% !important;
    border-radius: 1.4rem !important;
    padding: 1rem 0.95rem 1.15rem !important;
  }

  .h-col--rich .work-card {
    padding-bottom: 1.25rem !important;
  }

  .work-card--fan {
    overflow: visible !important;
  }

  .work-card--fan .work-content {
    margin-top: 0.75rem;
    margin-bottom: 0.2rem;
  }

  .work-card-top h3 {
    font-size: 0.92rem;
    line-height: 1.25;
  }

  .work-lead {
    font-size: 0.84rem !important;
    line-height: 1.4 !important;
  }

  .work-desc {
    font-size: 0.76rem !important;
    line-height: 1.4 !important;
  }

  .work-fan {
    display: block !important;
    height: 140px !important;
    flex: 0 0 140px !important;
  }

  .fan-img {
    width: min(88%, 10.5rem) !important;
  }

  .work-photo-card {
    width: 100% !important;
    height: 100% !important;
    aspect-ratio: auto !important;
    border-radius: 1.4rem;
    overflow: hidden;
  }

  .work-photo-card img,
  .work-photo-card--offset img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  .works-cta {
    padding: 0.75rem 1rem 0;
  }
}

@media (max-width: 560px) {
  .works {
    height: 320vh !important;
    padding: 0 !important;
  }

  .works-pin {
    padding: 4.25rem 0 1rem !important;
  }

  .works-row {
    height: min(520px, 62dvh) !important;
    gap: 0.85rem !important;
    padding-left: 0.85rem !important;
  }

  .h-col,
  .h-col--tall,
  .h-col--fan,
  .h-col--pair,
  .h-col--stagger-top,
  .h-col--stagger-bottom {
    width: min(235px, 74vw) !important;
    max-width: min(235px, 74vw) !important;
  }

  .h-col--rich {
    grid-template-rows: minmax(min-content, 1.7fr) minmax(0, 0.3fr) !important;
  }

  .h-col--tall,
  .h-col--fan {
    width: min(255px, 80vw) !important;
    max-width: min(255px, 80vw) !important;
  }

  .work-fan {
    height: 120px !important;
    flex: 0 0 120px !important;
  }

  .work-card--fan.is-open .fan-1 {
    transform: translate(-4%, -8%) rotate(-8deg);
  }

  .work-card--fan.is-open .fan-2 {
    transform: translate(4%, -10%) rotate(7deg);
  }

  .work-card--fan.is-open .fan-3 {
    transform: translate(-8%, 2%) rotate(-4deg);
  }

  .work-card--fan.is-open .fan-4 {
    transform: translate(2%, -4%) rotate(-4deg);
  }
}
/* ---------- Concerns – smooth auto-scroll cards ---------- */
.concerns {
  position: relative;
  height: auto;
  padding: 0;
  overflow: visible;
  background: transparent;
}

.concerns-pin {
  position: relative;
  top: auto;
  height: auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: clamp(3.5rem, 8vh, 5.5rem) 0;
}

.concerns-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #7198cf 0%, #a8c0e0 35%, #e8eef6 70%, #ffffff 100%);
  z-index: 0;
}

.concerns-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  flex: 0 1 auto;
  min-height: 0;
  justify-content: center;
}

.concerns-title {
  font-family: var(--font);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 500;
  color: #fff;
  text-align: center;
  line-height: 1.15;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.12);
  margin: 0;
  flex-shrink: 0;
}

.concern-tray {
  width: 100%;
  background: #183868;
  border-radius: 2.5rem;
  padding: 1.5rem;
  overflow: hidden;
  position: relative;
  z-index: 3;
  flex-shrink: 0;
}

.concern-track {
  display: flex;
  gap: 1.35rem;
  width: max-content;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  transition: none;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.concern-track.is-dragging {
  cursor: grabbing;
}

.concern-card {
  flex: 0 0 min(25rem, 78vw);
  border-radius: 1.5rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  height: min(26rem, 52vh);
  min-height: 20rem;
  color: #111;
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.concern-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.concern-card--1 { background: #fefef4; }
.concern-card--2 { background: #c6e3f6; }
.concern-card--3 { background: #f5b6af; }
.concern-card--4 { background: #5383c6; color: #fff; }
.concern-card--5 { background: #4da2a3; color: #fff; }
.concern-card--6 { background: #e04d6b; color: #fff; }

.concern-card--4 p,
.concern-card--5 p,
.concern-card--6 p {
  color: rgba(255, 255, 255, 0.75);
}

.concern-icon {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 5rem;
  height: 5rem;
  flex-shrink: 0;
  background: transparent;
  display: grid;
  place-items: center;
  padding: 0;
}

.concern-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: brightness(0);
}

.concern-card h3 {
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 600;
  line-height: 1.25;
  margin-top: auto;
  padding-right: 5.5rem;
}

.concern-card p {
  font-size: 1rem;
  line-height: 1.45;
  color: rgba(17, 17, 17, 0.55);
  margin-top: 0.65rem;
}

@media (max-width: 1024px) {
  .concerns-pin {
    padding: 4.5rem 0 3rem;
  }

  .concerns-inner {
    gap: 1.35rem;
  }

  .concerns-title {
    font-size: clamp(1.55rem, 6vw, 2.1rem);
  }

  .concern-tray {
    border-radius: 1.5rem;
    padding: 1.1rem;
  }

  .concern-track {
    gap: 1rem;
  }

  .concern-card {
    flex: 0 0 min(20rem, 82vw);
    height: min(22rem, 48dvh);
    min-height: 18rem;
    padding: 1.5rem;
  }

  .concern-card:hover {
    transform: none;
    box-shadow: none;
  }

  .concern-icon {
    top: 1.5rem;
    right: 1.5rem;
    width: 4.25rem;
    height: 4.25rem;
  }

  .concern-card h3 {
    font-size: 1.15rem;
    padding-right: 4.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .concern-tray {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .concern-track {
    transform: none !important;
    cursor: default;
  }
}

/* ---------- Care ---------- */
.care {
  background: #080331;
  color: var(--white);
}

.care-sub {
  color: rgba(255, 255, 255, 0.7);
  margin-top: -1rem;
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
}

.care-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.care-card {
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.care-num {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--dark);
  font-weight: 700;
  margin-bottom: 1rem;
}

.care-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

.care-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
}

/* ---------- Why Niraaya ---------- */
.why {
  background: #fff;
}

.why-box {
  position: relative;
  background:
    radial-gradient(ellipse 55% 70% at 100% 0%, rgba(245, 124, 32, 0.1), transparent 58%),
    radial-gradient(ellipse 60% 80% at 0% 100%, rgba(126, 184, 224, 0.32), transparent 55%),
    radial-gradient(ellipse 50% 60% at 50% 50%, rgba(255, 255, 255, 0.65), transparent 70%),
    linear-gradient(145deg, #f7fbff 0%, #dcebf8 48%, #c6e3f6 100%);
  border-radius: 2rem;
  padding: clamp(2.75rem, 5vw, 3.75rem) clamp(1.5rem, 4vw, 2.75rem) clamp(2.5rem, 4vw, 3.25rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  overflow: hidden;
  border: 1px solid rgba(197, 218, 240, 0.9);
  box-shadow:
    0 24px 50px rgba(42, 95, 150, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.why-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.why-orb--1 {
  width: 10rem;
  height: 10rem;
  top: -3rem;
  left: -2rem;
  background: radial-gradient(circle, rgba(126, 184, 224, 0.4), transparent 70%);
}

.why-orb--2 {
  width: 12rem;
  height: 12rem;
  right: -3rem;
  bottom: -4rem;
  background: radial-gradient(circle, rgba(63, 126, 184, 0.18), transparent 68%);
}

.why-orb--3 {
  width: 8rem;
  height: 8rem;
  top: 42%;
  right: 12%;
  background: radial-gradient(circle, rgba(245, 124, 32, 0.16), transparent 70%);
}

.why-header {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 38rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}

.why-kicker {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(197, 218, 240, 0.95);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2a5f96;
  box-shadow: 0 6px 16px rgba(42, 95, 150, 0.08);
}

.why-kicker::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #f57c20;
  box-shadow: 0 0 0 4px rgba(245, 124, 32, 0.16);
}

.why-title {
  font-family: var(--font);
  font-size: clamp(1.85rem, 3.8vw, 2.55rem);
  font-weight: 600;
  line-height: 1.12;
  text-align: center;
  color: #13253c;
  margin: 0;
  letter-spacing: -0.02em;
}

.why-lead {
  margin: 0;
  color: rgba(19, 37, 60, 0.68);
  font-size: 1rem;
  line-height: 1.55;
}

.why-box .stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-content: center;
  align-items: stretch;
  width: min(100%, 920px);
  text-align: center;
  gap: 1rem;
  padding: 0;
}

.why-box .stat {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  max-width: none;
  flex: none;
  padding: 1.55rem 1.15rem 1.5rem;
  border-radius: 1.25rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 251, 255, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 28px rgba(42, 95, 150, 0.09);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  overflow: hidden;
}

.why-box .stat::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #2a5f96 0%, #7eb8e0 100%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.why-box .stat:hover::before {
  opacity: 1;
}

.why-box .stat:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 18px 36px rgba(42, 95, 150, 0.16);
  border-color: rgba(197, 218, 240, 0.95);
}

.why-box .stat--featured {
  transform: scale(1.04);
  border-color: rgba(245, 124, 32, 0.22);
  box-shadow: 0 16px 34px rgba(42, 95, 150, 0.12);
}

.why-box .stat--featured::before {
  opacity: 1;
  background: linear-gradient(90deg, #f57c20 0%, #ffb86a 100%);
}

.why-box .stat--featured:hover {
  transform: translateY(-5px) scale(1.06);
}

.stat-badge {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: rgba(245, 124, 32, 0.12);
  color: #f57c20;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.stat-icon {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 1rem;
  background: linear-gradient(145deg, #eaf4fb 0%, #cfe4f4 100%);
  color: #2a5f96;
  margin-bottom: 0.15rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.why-box .stat:hover .stat-icon {
  transform: scale(1.08);
  background: linear-gradient(145deg, rgba(245, 124, 32, 0.14) 0%, rgba(245, 124, 32, 0.08) 100%);
  color: #f57c20;
}

.why-box .stat-num {
  font-size: clamp(2.15rem, 3.4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(135deg, #13253c 0%, #2a5f96 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.why-box .stat p {
  margin: 0;
  color: rgba(19, 37, 60, 0.62);
  font-size: 0.95rem;
  line-height: 1.4;
  font-weight: 500;
}

.why-footer {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.why-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.35rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #7eb8e0 0%, #3f7eb8 50%, #2a5f96 100%);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(42, 95, 150, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.why-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(42, 95, 150, 0.36);
  color: #fff;
}

.why-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.25rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #b7cfe4;
  color: #245789;
  font-size: 0.95rem;
  font-weight: 600;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.why-link:hover {
  transform: translateY(-2px);
  background: #eaf4fb;
  border-color: #3f7eb8;
}

.why-link--call {
  background: rgba(245, 124, 32, 0.08);
  border-color: rgba(245, 124, 32, 0.28);
  color: #f57c20;
}

.why-link--call:hover {
  background: rgba(245, 124, 32, 0.14);
  border-color: rgba(245, 124, 32, 0.45);
  color: #ea580c;
}

/* keep generic stats usable on other pages */
.stats {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: min(90%, 920px);
  text-align: center;
  gap: 1rem;
  padding: 1.5rem 0;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 11.25rem;
  flex: 1;
}

.stat-num {
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #111;
}

.stat p {
  color: rgba(17, 17, 17, 0.5);
  font-size: 0.95rem;
  line-height: 1.4;
}

/* ---------- FAQ ---------- */
.faq {
  background: linear-gradient(180deg, #f7fbfe 0%, #eef5fb 48%, #f8fbfe 100%);
}

.faq-wrap {
  max-width: 75rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  padding-inline: clamp(1.25rem, 6vw, 5.625rem);
}

.faq-header {
  text-align: center;
}

.faq-title {
  font-family: var(--font);
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  font-weight: 500;
  line-height: 1.2;
  color: #13253c;
}

.faq-title-accent {
  color: #3f7eb8;
}

.faq-list {
  width: 100%;
  max-width: 52rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid #d7e4f0;
  border-radius: 1rem;
  padding: 0;
  background: linear-gradient(155deg, #ffffff 0%, #f5f9fc 100%);
  box-shadow: 0 6px 18px rgba(26, 53, 84, 0.04);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.faq-item:first-child {
  border-top: 1px solid #d7e4f0;
}

.faq-item:hover {
  border-color: #b7cfe4;
  box-shadow: 0 10px 24px rgba(26, 53, 84, 0.08);
}

.faq-item.active {
  border-color: #8fb6d8;
  background: linear-gradient(155deg, #ffffff 0%, #e8f3fb 100%);
  box-shadow: 0 12px 28px rgba(63, 126, 184, 0.12);
}

.faq-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.05rem 1.15rem 1.05rem 1.25rem;
  font-size: clamp(1.02rem, 1.8vw, 1.2rem);
  font-weight: 600;
  text-align: left;
  background: none;
  color: #13253c;
}

.faq-question-text {
  flex: 1;
}

.faq-icon {
  width: 2.35rem;
  height: 2.35rem;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(145deg, #7eb8e0, #3f7eb8);
  box-shadow: 0 6px 14px rgba(63, 126, 184, 0.28);
  transition: transform 0.3s ease, box-shadow 0.22s ease;
}

.faq-icon img {
  width: 58%;
  height: 58%;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: linear-gradient(145deg, #3f7eb8, #2a5f96);
  box-shadow: 0 8px 16px rgba(42, 95, 150, 0.32);
}

.faq-body {
  display: none;
  padding: 0 1.25rem 1.15rem;
  max-width: none;
}

.faq-item.active .faq-body {
  display: block;
}

.faq-body p {
  color: rgba(19, 37, 60, 0.68);
  font-size: 0.98rem;
  line-height: 1.6;
  margin: 0;
  padding-top: 0.15rem;
  border-top: 1px solid rgba(143, 182, 216, 0.35);
  padding-top: 0.85rem;
}

@media (max-width: 900px) {
  .faq-wrap {
    gap: 2rem;
    padding-inline: 1.25rem;
  }

  .faq-btn {
    gap: 1rem;
    padding: 0.95rem 1rem;
  }

  .faq-icon {
    width: 2.1rem;
    height: 2.1rem;
  }
}

/* ---------- Final CTA ---------- */
.final-cta {
  background: #fff;
}

.final-cta-box {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2.85rem, 6vw, 4.75rem) clamp(1.5rem, 5vw, 4rem);
  background:
    radial-gradient(ellipse 65% 80% at 95% 8%, rgba(126, 184, 224, 0.42), transparent 58%),
    radial-gradient(ellipse 55% 70% at 5% 95%, rgba(159, 208, 240, 0.38), transparent 55%),
    linear-gradient(145deg, #f8fbfe 0%, #e8f4fb 40%, #d7ebf7 100%);
  border: 1px solid #cfe0ee;
  box-shadow:
    0 18px 40px rgba(42, 95, 150, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.final-cta-box::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, transparent, #7eb8e0, #3f7eb8, #7eb8e0, transparent);
  opacity: 0.95;
}

.final-cta-box::after {
  content: "";
  position: absolute;
  inset: 0.7rem;
  border-radius: 1.55rem;
  border: 1px solid rgba(255, 255, 255, 0.65);
  pointer-events: none;
}

.final-cta-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(2px);
}

.final-cta-orb--1 {
  width: 11rem;
  height: 11rem;
  top: -3rem;
  left: -2.5rem;
  background: radial-gradient(circle, rgba(126, 184, 224, 0.45), transparent 70%);
  animation: finalCtaFloat 7s ease-in-out infinite;
}

.final-cta-orb--2 {
  width: 14rem;
  height: 14rem;
  right: -3.5rem;
  bottom: -4.5rem;
  background: radial-gradient(circle, rgba(63, 126, 184, 0.22), transparent 68%);
  animation: finalCtaFloat 9s ease-in-out infinite reverse;
}

@keyframes finalCtaFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-10px) scale(1.04); }
}

.final-cta-bg,
.final-cta-overlay {
  display: none;
}

.final-cta-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.65rem;
  max-width: 42rem;
  margin: 0 auto;
  color: #13253c;
}

.final-cta-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.final-cta-kicker {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid #c5daf0;
  box-shadow: 0 4px 12px rgba(63, 126, 184, 0.1);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2a5f96;
  max-width: none;
}

.final-cta-kicker::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #3f9a6b;
  box-shadow: 0 0 0 4px rgba(63, 154, 107, 0.18);
}

.final-cta h2 {
  font-family: var(--font);
  font-size: clamp(1.95rem, 4vw, 2.9rem);
  font-weight: 500;
  line-height: 1.15;
  margin: 0;
  color: #13253c;
}

.final-cta-text > p {
  font-size: clamp(0.98rem, 1.8vw, 1.12rem);
  font-weight: 500;
  line-height: 1.55;
  max-width: 34rem;
  margin: 0;
  color: rgba(19, 37, 60, 0.7);
}

.final-cta-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
}

.final-cta-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid #d0e2f0;
  color: #1a3f66;
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(42, 95, 150, 0.06);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

a.final-cta-chip:hover {
  transform: translateY(-2px);
  border-color: #8fb6d8;
  box-shadow: 0 8px 18px rgba(42, 95, 150, 0.12);
}

.final-cta-chip--static {
  cursor: default;
}

.final-cta-chip-icon {
  display: grid;
  place-items: center;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 999px;
  background: linear-gradient(145deg, #eaf4fb, #d4e8f6);
  color: #2a5f96;
  flex-shrink: 0;
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 0.25rem;
}

.final-cta .btn-cta {
  align-self: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.final-cta .btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(42, 95, 150, 0.38);
}

.final-cta-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  border: 1px solid #b7cfe4;
  background: #fff;
  color: #245789;
  font-size: 0.98rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(42, 95, 150, 0.06);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.final-cta-call:hover {
  background: #eaf4fb;
  border-color: #3f7eb8;
  color: #1a3f66;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(42, 95, 150, 0.12);
}

@media (max-width: 900px) {
  .final-cta-box {
    min-height: 0;
    padding: 2.5rem 1.35rem;
    border-radius: 1.5rem;
    align-items: center;
  }

  .final-cta-box::after {
    inset: 0.5rem;
    border-radius: 1.15rem;
  }

  .final-cta-content {
    gap: 1.45rem;
    max-width: 100%;
  }
}

@media (max-width: 560px) {
  .final-cta-box {
    min-height: 0;
    padding: 2.1rem 1.1rem;
  }

  .final-cta-content {
    gap: 1.3rem;
  }

  .final-cta-meta {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .final-cta-chip {
    justify-content: center;
  }

  .final-cta-actions {
    width: 100%;
    flex-direction: column;
  }

  .final-cta .btn-cta,
  .final-cta-call {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .final-cta-orb--1,
  .final-cta-orb--2 {
    animation: none;
  }
}

/* ---------- Footer ---------- */
.footer {
  --f-ink: #13253c;
  --f-muted: #5a6d84;
  --f-navy: #245789;
  --f-sky: #7eb8e0;
  --f-line: rgba(255, 255, 255, 0.16);
  --f-card: rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  color: #eef4fa;
  padding: 4.25rem 0 1.85rem;
  background:
    radial-gradient(ellipse 70% 80% at 12% 0%, rgba(126, 184, 224, 0.28), transparent 55%),
    radial-gradient(ellipse 60% 70% at 92% 100%, rgba(36, 87, 137, 0.55), transparent 50%),
    linear-gradient(155deg, #1a3554 0%, #163049 42%, #0f2438 100%);
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--f-sky), #9fd0f0, transparent);
  opacity: 0.9;
}

.footer::after {
  content: "";
  position: absolute;
  width: 22rem;
  height: 22rem;
  right: -6rem;
  top: -8rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(126, 184, 224, 0.18), transparent 68%);
  pointer-events: none;
}

.footer-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr 1.15fr;
  gap: 1.35rem;
  align-items: stretch;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: none;
  padding: 1.35rem 1.4rem 1.45rem;
  border-radius: 1.15rem;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06));
  border: 1px solid var(--f-line);
  box-shadow: 0 12px 28px rgba(8, 20, 36, 0.22);
  backdrop-filter: blur(8px);
}

.footer-logo {
  display: inline-flex;
  max-width: 10.25rem;
  padding: 0.45rem 0.55rem;
  border-radius: 0.7rem;
  background: #fff;
  box-shadow: 0 6px 16px rgba(8, 20, 36, 0.18);
}

.footer-logo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.35rem;
}

.footer-tagline {
  margin: 0;
  color: rgba(238, 244, 250, 0.82);
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 18rem;
}

.footer-unit {
  margin: -0.35rem 0 0;
  color: rgba(255, 185, 55, 0.95);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.4;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: fit-content;
  margin-top: 0.15rem;
  padding: 0.65rem 1.15rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #7eb8e0, #4f90c4);
  color: #0f2438;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 20px rgba(79, 144, 196, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.footer-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(79, 144, 196, 0.45);
  filter: brightness(1.05);
  color: #0f2438;
}

.footer-top-r {
  display: contents;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  max-width: none;
  width: 100%;
  height: 100%;
  padding: 1.35rem 1.3rem 1.4rem;
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--f-line);
  backdrop-filter: blur(6px);
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.footer-col:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.24);
  transform: translateY(-2px);
}

.footer-heading {
  margin: 0;
  opacity: 1;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9fd0f0;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.footer-links a,
.footer-credit {
  color: rgba(238, 244, 250, 0.9);
  font-size: 0.95rem;
  line-height: 1.4;
  letter-spacing: 0;
  width: fit-content;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a {
  position: relative;
  padding-left: 0;
}

.footer-links a:hover,
.footer-credit:hover {
  color: #fff;
  transform: translateX(3px);
}

.footer-address,
.footer-timings {
  margin: 0.15rem 0 0;
  padding: 0.7rem 0.8rem;
  border-radius: 0.7rem;
  background: rgba(8, 20, 36, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(238, 244, 250, 0.82) !important;
}

.footer-timings {
  margin-top: 0.35rem;
  color: #9fd0f0 !important;
  font-weight: 600;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  opacity: 1;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.85rem 1.1rem;
  border-radius: 0.9rem;
  background: rgba(8, 20, 36, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p,
.footer-credit {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.4;
  letter-spacing: 0;
  color: rgba(238, 244, 250, 0.68);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.15rem;
}

.footer-bottom .footer-social {
  margin-top: 0;
}

.social-icon {
  width: 2.35rem;
  height: 2.35rem;
  color: #dff0fb;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 4px 12px rgba(8, 20, 36, 0.2);
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.social-icon:hover {
  color: #0f2438;
  background: #9fd0f0;
  border-color: #9fd0f0;
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 10px 18px rgba(126, 184, 224, 0.35);
}

.social-icon svg {
  width: 1rem;
  height: 1rem;
  display: block;
}

.social-icon img {
  width: 1.15rem;
  height: 1.15rem;
  display: block;
  object-fit: contain;
}

.social-icon--brand,
.social-icon--google {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 4px 12px rgba(8, 20, 36, 0.22);
  color: #fff;
  overflow: hidden;
  padding: 0;
}

.social-icon--brand img,
.social-icon--google img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 999px;
}

.social-icon--brand:hover,
.social-icon--google:hover {
  background: transparent;
  border-color: #fff;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 18px rgba(8, 20, 36, 0.3);
}

@media (max-width: 900px) {
  .footer {
    padding: 3.4rem 0 1.6rem;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
    max-width: none;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
  }
}

@media (max-width: 560px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-col {
    max-width: none;
  }

  .footer-col:hover {
    transform: none;
  }
}

/* =========================================
   Back to top
   ========================================= */

.back-to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 9998;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  box-shadow: 0 10px 28px rgba(24, 70, 110, 0.28);
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-2px) scale(1.05);
}

.back-to-top:focus-visible {
  outline: 2px solid #2a5f96;
  outline-offset: 3px;
}

.back-to-top img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
  pointer-events: none;
}

@media (max-width: 768px) {
  .back-to-top {
    right: 0.85rem;
    bottom: 0.85rem;
    width: 46px;
    height: 46px;
  }
}

body:has(.sticky-contact) .back-to-top {
  bottom: 8.5rem;
}

@media (max-width: 768px) {
  body:has(.sticky-contact) .back-to-top {
    bottom: 7.5rem;
  }
}

/* ---------- Modal ---------- */
.sr-only,
.ent-sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  border: 0 !important;
  white-space: nowrap !important;
}

.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 28, 42, 0.62);
  backdrop-filter: blur(4px);
}

.modal-box {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  width: min(100%, 880px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-height: min(90vh, 560px);
  min-height: min(78vh, 480px);
  align-items: stretch;
  box-shadow: 0 28px 80px rgba(15, 35, 55, 0.28);
}

.modal-media {
  position: relative;
  min-height: 100%;
  background: #e8eef4;
}

.modal-media__overlay {
  display: none;
}

.modal-img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  display: block;
}

.modal-form-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.75rem;
  padding: 2.75rem 2.5rem 2.5rem;
  overflow: auto;
  min-height: 0;
  background: #fff;
}

.modal-form-wrap h2 {
  margin: 0;
  padding-right: 2rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.6vw, 1.9rem);
  font-weight: 500;
  line-height: 1.2;
  color: #111;
}

.modal-eyebrow,
.modal-sub,
.modal-form-head,
.modal-form-foot {
  display: none;
}

.book-form {
  display: grid;
  gap: 1.35rem;
}

.book-field label {
  display: none;
}

.book-form input,
.book-form textarea {
  width: 100%;
  padding: 0.55rem 0 0.7rem;
  border: none;
  border-bottom: 1px solid #d8dde3;
  border-radius: 0;
  font: inherit;
  font-size: 0.98rem;
  background: transparent;
  color: #222;
  transition: border-color 0.2s ease;
}

.book-form textarea {
  resize: none;
  min-height: 2.5rem;
  line-height: 1.45;
}

.book-form input::placeholder,
.book-form textarea::placeholder {
  color: #a0a7b0;
}

.book-form input:hover,
.book-form textarea:hover {
  border-color: #c5cdd6;
}

.book-form input:focus,
.book-form textarea:focus {
  outline: none;
  border-color: #2a5f96;
  box-shadow: none;
  background: transparent;
}

.btn-book-submit {
  justify-self: start;
  margin-top: 0.85rem;
  padding: 0.85rem 2.1rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  background: #4a7abf;
  box-shadow: none;
  border: none;
  width: auto;
}

.btn-book-submit:hover {
  background: #3f6eae;
  transform: none;
}

.book-form .btn-full {
  width: auto;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 4;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: transparent;
  border: none;
  color: #9aa3ad;
  display: grid;
  place-items: center;
  box-shadow: none;
  transition: color 0.2s ease;
}

.modal-close:hover {
  background: transparent;
  color: #333;
  transform: none;
}

.modal-close img {
  width: 18px;
  height: 18px;
}

.form-success {
  margin-top: 1rem;
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  background: #edf7f0;
  border: 1px solid #c8e6d0;
  color: #1f5c3a;
  font-weight: 500;
  font-size: 0.9rem;
  line-height: 1.5;
}

.modal-form-foot {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e8edf3;
  text-align: center;
}

.modal-form-note,
.modal-form-hours,
.modal-form-wrap .ent-form-note {
  margin: 0;
  font-size: 0.78rem;
  color: #6b7a8c;
  line-height: 1.5;
}

.modal-form-hours {
  margin-top: 0.35rem;
  font-weight: 600;
  color: #4a5f78;
}

/* ---------- Mobile ---------- */
@media (max-width: 900px) {
  .menu-btn {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.5rem;
    gap: 0.75rem;
    display: none;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    max-height: calc(100dvh - 72px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 100;
  }

  .nav.open {
    display: flex;
  }

  .nav-link,
  .header .nav-link {
    color: var(--dark);
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown .dropdown-btn {
    width: 100%;
    justify-content: space-between;
  }

  .dropdown-menu {
    position: static !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    display: none;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: none !important;
    box-shadow: none;
    border: none;
    border-radius: 0;
    min-width: 0;
    width: 100%;
    max-width: 100%;
    margin: 0.35rem 0 0;
    padding: 0.25rem 0 0.25rem 0.15rem;
    gap: 0.25rem;
    transition: none;
    background: transparent;
    overflow: visible;
  }

  .dropdown-menu::before {
    display: none;
  }

  .dropdown-item {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    grid-template-columns: 2rem 1fr;
    gap: 0.65rem;
    padding: 0.7rem 0.75rem;
    background: #f4f7fb;
  }

  .dropdown-item__icon {
    width: 2rem;
    height: 2rem;
  }

  .dropdown-item__text strong {
    white-space: normal;
  }

  .dropdown-item__text small {
    white-space: normal;
  }

  /* Mobile: only show when tapped open-ignore hover from desktop rules */
  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown:focus-within .dropdown-menu {
    display: none;
    transform: none !important;
  }

  .nav-dropdown.open .dropdown-menu,
  .nav-dropdown.is-open .dropdown-menu,
  .nav-dropdown.open:hover .dropdown-menu,
  .nav-dropdown.is-open:hover .dropdown-menu,
  .nav-dropdown.open:focus-within .dropdown-menu,
  .nav-dropdown.is-open:focus-within .dropdown-menu {
    display: grid !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: none !important;
    left: auto !important;
  }

  .nav .btn-hero-nav,
  .nav .btn.btn-hero-nav {
    width: 100%;
    justify-content: center;
    margin-top: 0.35rem;
  }

  .about-grid,
  .freezing-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    max-height: none;
  }

  .about-image-frame img {
    min-height: 0;
    max-height: none;
  }

  .modal-box {
    grid-template-columns: 1fr;
    min-height: auto;
    max-height: 92vh;
    width: min(100%, 420px);
  }

  .modal-form-wrap {
    justify-content: flex-start;
    padding: 2rem 1.5rem 1.75rem;
    gap: 1.35rem;
  }

  .modal-form-wrap h2 {
    padding-right: 2rem;
    font-size: 1.45rem;
  }

  .modal-media {
    display: none;
  }

  .care-grid {
    grid-template-columns: 1fr 1fr;
  }

  .why-box {
    padding: 2.75rem 1.35rem 2.4rem;
    border-radius: 1.5rem;
    gap: 1.75rem;
  }

  .why-box .stat--featured {
    transform: none;
  }

  .why-box .stat--featured:hover {
    transform: translateY(-4px) scale(1.02);
  }

  .why-box .stats {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    gap: 0.85rem;
    padding: 0;
  }

  .why-box .stat {
    max-width: none;
  }

  .stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    gap: 2rem 1.5rem;
    padding: 0;
  }

  .stat {
    max-width: none;
  }

  .hero {
    padding: 4.25rem 0 0;
    background: #fff;
  }

  .hero-shell {
    border-radius: 0;
    height: auto;
    min-height: 0;
    max-height: none;
    justify-content: flex-start;
    background: #fff;
  }

  .hero-shell::after {
    display: none;
  }

  .hero-slider {
    position: relative;
    inset: auto;
    flex: none;
    min-height: 0;
  }

  .hero-slide {
    position: relative;
    inset: auto;
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 0;
  }

  .hero-slide.is-active {
    display: flex;
  }

  .hero-bg,
  .hero-slide[data-slide="0"] .hero-bg,
  .hero-slide[data-slide="1"] .hero-bg {
    position: relative;
    inset: auto;
    order: unset;
    width: 100%;
    height: auto;
    max-height: min(52vh, 26rem);
    min-height: 14rem;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center top;
    transform: none;
    display: block;
    border-radius: 0;
  }

  .hero-bg-picture {
    position: relative;
    inset: auto;
    order: 2;
    display: block;
    width: 100%;
    height: auto;
  }

  .hero-bg-picture .hero-bg {
    position: relative;
    inset: auto;
  }

  .hero-slide.is-active .hero-bg {
    transform: none;
  }

  .hero-overlay {
    display: none;
  }

  .hero-nav-inner {
    padding-top: 0.85rem;
  }

  .hero .header {
    position: absolute;
    inset: 0 0 auto;
    z-index: 6;
    background: #fff;
  }

  .hero-content {
    position: relative;
    z-index: 3;
    order: 1;
    max-width: none;
    width: 100%;
    padding: 1.35rem 1.15rem 1.85rem;
    background: #fff;
    text-align: center;
    align-items: center;
  }

  .hero-brand {
    margin-bottom: 0.35rem !important;
    font-size: clamp(2rem, 9vw, 2.75rem) !important;
    text-align: center;
  }

  .hero h1 {
    font-size: clamp(1.15rem, 4.6vw, 1.45rem);
    margin-bottom: 0.55rem;
    text-align: center;
  }

  .hero .hero-lead,
  .hero-content > p:not(.hero-brand) {
    font-size: 0.95rem;
    max-width: 22rem;
    margin-inline: auto;
    margin-bottom: 1.15rem;
    line-height: 1.55;
    text-align: center;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0.65rem;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: space-between;
  }

  .hero-dots {
    display: none;
  }

  .hero-dot {
    width: 1.5rem;
  }

  .hero-dot.is-active {
    width: 2.15rem;
  }

  .logo-light {
    display: block;
  }

  .logo-dark {
    display: none;
  }

  .header.is-stuck .logo-light {
    display: none;
  }

  .header.is-stuck .logo-dark {
    display: block;
  }

  .header.is-stuck {
    background: rgba(255, 255, 255, 0.95);
  }

  .menu-btn span {
    background: var(--dark);
  }

  .header.is-stuck .menu-btn span {
    background: var(--dark);
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 1.5rem, var(--max));
  }

  .care-grid {
    grid-template-columns: 1fr;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .why-box {
    padding: 3rem 1.25rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .logo-img {
    height: 44px;
  }

  .hero-nav-inner {
    min-height: 56px;
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }

  .header.is-stuck .hero-nav-inner {
    width: min(100% - 1.5rem, var(--max));
  }

  .nav {
    top: 56px;
    max-height: calc(100dvh - 56px);
    padding: 0.85rem 1rem 1.25rem;
  }

  .hero-bg {
    max-height: none;
    aspect-ratio: auto;
  }

  .hero-content {
    padding: 1rem 1rem 1.75rem;
  }

  .hero-brand {
    font-size: clamp(1.85rem, 9vw, 2.4rem) !important;
  }

  .hero h1 {
    font-size: clamp(1.05rem, 4.5vw, 1.3rem);
  }

  .btn-cta {
    width: 100%;
    justify-content: space-between;
    padding: 0.85rem 0.85rem 0.85rem 1.25rem;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- PCOS page ---------- */
.hero-stats {
  padding-top: 0;
  margin-top: -2rem;
  position: relative;
  z-index: 2;
}

.hero-stats-box {
  background: #c6e3f6;
  border-radius: 2rem;
  padding: 2.5rem 2rem;
}

.hero-stats .stats {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
}

.symptoms {
  background: #fff;
  padding-top: 0;
}

.symptoms-box {
  background: #c6e3f6;
  border-radius: 2rem;
  padding: clamp(2rem, 5vw, 4rem);
}

.symptoms-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.symptoms-left h2 {
  font-family: var(--font);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.symptoms .accordion {
  margin-bottom: 2rem;
}

.symptoms .acc-btn {
  display: flex;
  align-items: center;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  gap: 0.5rem;
}

.symptoms .acc-btn::before {
  content: "";
  width: 8px;
  height: 8px;
  flex-shrink: 0;
}

.symptoms .acc-item.active .acc-btn::before {
  border-radius: 50%;
  background: #111;
}

.symptoms .acc-body {
  padding-left: 1.25rem;
}

.symptoms-right img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: contain;
}

.btn-symptoms {
  background: #5382c6;
}

.btn-symptoms:hover {
  background: #466fad;
}

.risks {
  background: #fff;
}

.risks-wrap {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.risks-header {
  text-align: center;
  max-width: 42rem;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.risks-title {
  font-family: var(--font);
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 500;
  line-height: 1.2;
  color: #111;
}

.risks-lead {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.55;
}

.risks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.risk-card {
  background: #eaecf2;
  border-radius: 1.5rem;
  padding: 2rem;
  min-height: 25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
}

.risk-card--sky {
  background: #c7e4f6;
}

.risk-card--blue {
  background: #7198cf;
}

.risk-icon {
  width: 5rem;
  height: auto;
}

.risk-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.risk-content h3 {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  font-weight: 600;
  line-height: 1.3;
}

.risk-content p {
  color: rgba(17, 17, 17, 0.75);
  font-size: 0.95rem;
  line-height: 1.5;
}

.screening {
  position: relative;
  overflow: hidden;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.screening-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #5382c6 0%, #fefef6 100%);
  z-index: 0;
}

.screening-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.screening-header {
  text-align: center;
  max-width: 42rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.screening-header h2 {
  font-family: var(--font);
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 500;
  line-height: 1.2;
}

.screening-header p {
  font-size: 1.05rem;
  line-height: 1.55;
  opacity: 0.85;
}

.screening-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  background: #295436;
  border-radius: 2.5rem;
  padding: 1.5rem;
}

.screening-item {
  background: #fff;
  border-radius: 1.5rem;
  padding: 0.75rem 0.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 3rem;
  min-height: 11rem;
}

.screening-item--sky {
  background: #c7e4f6;
}

.screening-item--orange {
  background: #ffa600;
}

.screening-item--blue {
  background: #7198cf;
}

.screening-icon {
  width: 2.5rem;
  height: auto;
}

.screening-item-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.screening-item-content h3 {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.screening-item-content p {
  font-size: 0.9rem;
  line-height: 1.45;
  opacity: 0.7;
}

.screening-cta {
  display: flex;
  justify-content: center;
}

.packages-slider {
  background: #fff;
  overflow: hidden;
}

.packages-slider-wrap {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.packages-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
}

.packages-top-left {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 40rem;
}

.packages-top-left h2 {
  font-family: var(--font);
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #0f1c2e;
}

.packages-top-left p {
  display: none;
}

.packages-nav {
  display: flex;
  gap: 0.65rem;
  flex-shrink: 0;
}

.packages-arrow {
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid rgba(15, 28, 46, 0.12);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.packages-arrow img {
  width: 1.15rem;
  height: 1.15rem;
  display: block;
  object-fit: contain;
}

.packages-arrow:hover {
  background: #0f1c2e;
  border-color: #0f1c2e;
  filter: none;
  transform: translateY(-1px);
}

.packages-arrow:hover img {
  filter: invert(1) brightness(2);
}

.packages-arrow:disabled {
  opacity: 0.35;
  cursor: default;
  transform: none;
  background: #fff;
  border-color: rgba(15, 28, 46, 0.1);
}

.packages-arrow:disabled:hover img {
  filter: none;
}

.packages-tray {
  overflow: hidden;
  margin-right: calc(50% - 50vw);
}

.packages-track {
  display: flex;
  gap: 1.75rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  padding-right: max(1.25rem, calc(50vw - 50%));
  padding-bottom: 0.35rem;
}

.packages-track::-webkit-scrollbar {
  display: none;
}

.packages-track.is-dragging {
  scroll-snap-type: none;
  cursor: grabbing;
}

/* Editorial care tiles-not package cards */
.pkg-card {
  flex: 0 0 clamp(260px, 24vw, 300px);
  scroll-snap-align: start;
  scroll-snap-stop: always;
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  transition: transform 0.25s ease;
}

.pkg-card:hover {
  transform: translateY(-4px);
  box-shadow: none;
}

.pkg-card-image {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  display: block;
  border-radius: 1.15rem;
  background: #e8eef4;
}

.pkg-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.1rem 0.15rem 0.25rem;
  flex: 1;
}

.pkg-card-body h3 {
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: #0f1c2e;
}

.pkg-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #5a6b7d;
  font-size: 0.92rem;
  line-height: 1.45;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pkg-card-list li {
  position: relative;
  padding: 0.45rem 0;
  border-top: 1px solid rgba(15, 28, 46, 0.08);
}

.pkg-card-list li:last-child {
  border-bottom: 1px solid rgba(15, 28, 46, 0.08);
}

.pkg-card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  padding-top: 0.85rem;
}

.pkg-card-footer:not(:has(.pkg-card-price)) {
  justify-content: flex-start;
}

.pkg-card-price {
  display: none;
}

.pkg-card-btn {
  background: none;
  color: #1e4a78;
  border: 0;
  border-radius: 0;
  padding: 0;
  font-size: 0.92rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s ease, gap 0.2s ease;
}

.pkg-card-btn::after {
  content: "→";
  font-size: 1.05em;
  transition: transform 0.2s ease;
}

.pkg-card:hover .pkg-card-btn {
  background: none;
  color: #0f1c2e;
  box-shadow: none;
  transform: none;
  gap: 0.65rem;
}

.pkg-card:hover .pkg-card-btn::after {
  transform: translateX(3px);
}

#ent-services {
  background: linear-gradient(180deg, #f7fafc 0%, #fff 40%);
}

#ent-services .pkg-card-btn {
  color: #1f5c57;
}

#ent-services .pkg-card:hover .pkg-card-btn {
  color: #0f2e2c;
}

.contact-form {
  background: #fff;
}

.contact-form-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 8vw, 6rem);
  align-items: stretch;
  max-width: 75rem;
  margin-inline: auto;
}

.contact-form-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 3rem;
}

.contact-form-copy {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form-copy h2 {
  font-family: var(--font);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 500;
  line-height: 1.15;
  max-width: 18ch;
}

.contact-form-lead {
  color: rgba(17, 17, 17, 0.6);
  font-size: 1.05rem;
  line-height: 1.55;
  max-width: 28rem;
}

.contact-form-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #29407c;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
}

.contact-info-item:hover {
  opacity: 0.8;
}

.contact-info-icon {
  flex-shrink: 0;
  color: #29407c;
}

.contact-form-right {
  background: #eaecf2;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 1.25rem;
  padding: 2.5rem;
}

.contact-form-fields {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-form-fields-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.contact-form-fields input,
.contact-form-fields textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(41, 64, 124, 0.15);
  padding: 0.75rem 0;
  font: inherit;
  font-weight: 500;
  color: #29407c;
}

.contact-form-fields input::placeholder,
.contact-form-fields textarea::placeholder {
  color: #29407c;
  font-weight: 500;
}

.contact-form-fields input:focus,
.contact-form-fields textarea:focus {
  outline: none;
  border-bottom-color: #29407c;
}

.contact-form-fields textarea {
  min-height: 10.5rem;
  resize: vertical;
}

.contact-form-submit {
  align-self: flex-start;
  background: #29407c;
  color: #fff;
  border: none;
  border-radius: 2rem;
  padding: 0.75rem 2rem;
  font: inherit;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form-submit:hover {
  background: #1f305c;
}

.contact-form-success,
.contact-form-error {
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact-form-success {
  color: #295436;
}

.contact-form-error {
  color: #b42318;
}

@media (max-width: 900px) {
  .contact-form-wrap {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-form-left {
    gap: 2rem;
  }

  .contact-form-copy h2 {
    max-width: none;
  }
}

@media (max-width: 560px) {
  .contact-form-right {
    padding: 1.5rem;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .contact-form-fields textarea {
    min-height: 7.5rem;
  }
}

@media (max-width: 900px) {
  .symptoms-grid {
    grid-template-columns: 1fr;
  }

  .symptoms-right {
    order: -1;
    max-width: 28rem;
    margin-inline: auto;
  }

  .risks-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .risk-card {
    min-height: 20rem;
  }

  .screening-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    padding: 1.25rem;
  }

  .packages-top {
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .screening-grid {
    grid-template-columns: 1fr;
    flex-direction: column;
    display: flex;
    gap: 0;
    padding: 2rem 1.25rem;
    border-radius: 1.5rem;
  }

  .screening-item,
  .screening-item--sky,
  .screening-item--orange,
  .screening-item--blue {
    background: transparent;
    color: #fff;
    flex-direction: row;
    align-items: flex-start;
    gap: 0.75rem;
    min-height: auto;
    padding: 0;
    border-radius: 0;
  }

  .screening-icon {
    width: 1.125rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
  }

  .screening-item-content h3,
  .screening-item-content p {
    color: #fff;
  }

  .screening-item-content {
    flex: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 1rem;
    gap: 0.25rem;
  }

  .screening-item-content--last {
    border-bottom: none;
    padding-bottom: 0;
  }

  .screening-item-content p {
    opacity: 0.75;
  }

  .packages-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .packages-nav {
    align-self: flex-end;
  }

  .pkg-card {
    flex-basis: min(78vw, 280px);
  }
}

@media (max-width: 560px) {
  .symptoms-box {
    padding: 1.75rem 1.25rem;
    border-radius: 1.5rem;
  }

  .risks-grid {
    grid-template-columns: 1fr;
  }

  .risk-card {
    min-height: auto;
  }

  .screening {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .packages-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .packages-nav {
    align-self: flex-end;
  }

  .pkg-card {
    flex-basis: min(78vw, 280px);
  }

  .hero-stats {
    margin-top: -1rem;
  }

  .hero-stats-box {
    padding: 2rem 1.25rem;
    border-radius: 1.5rem;
  }
}

.blog-listing {
  background: #f8f6f1;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.blog-card {
  background: #fff;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(32, 52, 88, 0.08);
  border: 1px solid rgba(83, 130, 198, 0.1);
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(32, 52, 88, 0.12);
}

.blog-card-image {
  width: 100%;
  aspect-ratio: 1.2 / 1;
  object-fit: cover;
  display: block;
}

.blog-card-body {
  padding: 1.5rem;
}

.blog-card-body h3 {
  margin: 0 0 0.85rem;
  font-size: 1.35rem;
  line-height: 1.35;
  color: #10233f;
}

.blog-card-body p {
  margin: 0;
  color: rgba(16, 35, 63, 0.72);
  line-height: 1.7;
}

.blog-load-more {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.blog-load-more-btn {
  min-width: 180px;
}

.journal {
  padding-top: 0;
  background: #f8f6f1;
}

.journal-wrap {
  background: linear-gradient(135deg, #e8effa 0%, #eef4fb 100%);
  border-radius: 1.75rem;
  padding: 2.5rem;
  display: grid;
  gap: 1.2rem;
}

.journal-copy h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  color: #10233f;
}

.journal-copy p {
  margin: 0;
  max-width: 760px;
  color: rgba(16, 35, 63, 0.72);
  line-height: 1.7;
}

.journal-form {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.journal-form input {
  flex: 1 1 320px;
  min-height: 58px;
  border-radius: 999px;
  border: 1px solid rgba(16, 35, 63, 0.12);
  background: #fff;
  padding: 0 1.15rem;
  font: inherit;
  color: #10233f;
}

.journal-form input:focus {
  outline: none;
  border-color: rgba(83, 130, 198, 0.8);
  box-shadow: 0 0 0 4px rgba(83, 130, 198, 0.12);
}

.journal-submit {
  min-height: 58px;
  padding: 0 1.5rem;
  border: 0;
  border-radius: 999px;
  background: #5382c6;
  color: #fff;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.journal-submit:hover {
  background: #3e6ead;
  transform: translateY(-1px);
}

.journal-success,
.journal-error {
  margin: 0;
  font-size: 0.95rem;
}

.journal-success {
  color: #2d7c4b;
}

.journal-error {
  color: #c44d4d;
}

.blog-cta {
  background: #f8f6f1;
}

.blog-cta-wrap {
  background: #fff;
  border-radius: 1.75rem;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 18px 40px rgba(32, 52, 88, 0.08);
}

.blog-cta-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.blog-cta-copy {
  padding: clamp(2rem, 4vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.blog-cta-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  color: #10233f;
}

.blog-cta-copy p {
  margin: 0;
  color: rgba(16, 35, 63, 0.72);
  line-height: 1.75;
  max-width: 34rem;
}

@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-cta-wrap {
    grid-template-columns: 1fr;
  }

  .blog-cta-image img {
    min-height: 300px;
  }
}

@media (max-width: 560px) {
  .journal-wrap {
    padding: 1.5rem;
    border-radius: 1.5rem;
  }

  .journal-form {
    flex-direction: column;
  }

  .journal-submit {
    width: 100%;
  }

  .blog-card-body {
    padding: 1.25rem;
  }

  .blog-cta-copy {
    padding: 1.5rem;
  }
}

/* =========================================
   Blog Article Page
   ========================================= */

.blog-article {
  background: #f8f6f1;
}

.blog-article-wrap {
  max-width: 760px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.blog-article-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: rgba(16, 35, 63, 0.6);
}

.blog-article-meta .meta-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(16, 35, 63, 0.35);
  flex-shrink: 0;
}

.blog-article-hero-img {
  width: 100%;
  border-radius: 1.25rem;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.blog-article-body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  color: #10233f;
  line-height: 1.8;
}

.blog-article-body h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
  font-weight: 700;
  margin: 0.5rem 0 0;
  color: #10233f;
}

.blog-article-body h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  line-height: 1.3;
  font-weight: 600;
  margin: 0.25rem 0 0;
  color: #10233f;
}

.blog-article-body p {
  margin: 0;
  color: rgba(16, 35, 63, 0.78);
}

.blog-article-body ul,
.blog-article-body ol {
  padding-left: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.blog-article-body li {
  color: rgba(16, 35, 63, 0.78);
}

.blog-article-body strong {
  font-weight: 600;
  color: #10233f;
}

.blog-article-divider {
  height: 1px;
  background: rgba(16, 35, 63, 0.1);
  margin: 0.5rem 0;
}

.blog-article-note {
  background: #eef4fb;
  border-left: 4px solid #5382c6;
  border-radius: 0 0.75rem 0.75rem 0;
  padding: 1.1rem 1.25rem;
  font-size: 0.95rem;
  color: rgba(16, 35, 63, 0.8);
}

/* FAQ inside article */
.blog-article-faq {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.blog-faq-item {
  border-top: 1px solid rgba(16, 35, 63, 0.1);
  padding: 1.1rem 0;
}

.blog-faq-item:last-child {
  border-bottom: 1px solid rgba(16, 35, 63, 0.1);
}

.blog-faq-q {
  font-weight: 600;
  color: #10233f;
  margin: 0 0 0.4rem;
  font-size: 1rem;
}

.blog-faq-a {
  margin: 0;
  color: rgba(16, 35, 63, 0.72);
  line-height: 1.7;
}

/* Author card */
.blog-author-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.blog-author-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(16, 35, 63, 0.45);
  font-weight: 600;
}

.blog-author-card {
  background: #fff;
  border-radius: 1.25rem;
  padding: 1.5rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  box-shadow: 0 8px 24px rgba(32, 52, 88, 0.07);
  border: 1px solid rgba(83, 130, 198, 0.1);
}

.blog-author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: #eef4fb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: #5382c6;
}

.blog-author-info {
  flex: 1;
}

.blog-author-name {
  font-weight: 700;
  font-size: 1rem;
  color: #10233f;
  margin: 0 0 0.2rem;
}

.blog-author-role {
  font-size: 0.88rem;
  color: rgba(16, 35, 63, 0.6);
  margin: 0 0 0.6rem;
}

.blog-author-bio {
  font-size: 0.9rem;
  color: rgba(16, 35, 63, 0.72);
  line-height: 1.65;
  margin: 0;
}

.blog-reviewer-tag {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #5382c6;
  background: #eef4fb;
  border-radius: 999px;
  padding: 0.18rem 0.65rem;
  display: inline-block;
  margin-bottom: 0.4rem;
}

@media (max-width: 600px) {
  .blog-author-card {
    flex-direction: column;
    gap: 1rem;
  }
}

/* =========================================
   Sticky WhatsApp & Call Buttons
   ========================================= */

.sticky-contact {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}

.sticky-contact-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(16, 35, 63, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  cursor: pointer;
  pointer-events: auto;
  position: relative;
  z-index: 1;
}

.sticky-contact-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 32px rgba(16, 35, 63, 0.28);
}

.sticky-contact-btn svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
  pointer-events: none;
  flex-shrink: 0;
}

.sticky-contact-btn--book {
  width: 56px;
  min-height: 56px;
  height: 56px;
  padding: 0;
  border-radius: 50%;
  gap: 0;
  justify-content: center;
  background: linear-gradient(135deg, #7eb8e0 0%, #3f7eb8 48%, #2a5f96 100%);
  color: #fff;
  box-shadow:
    0 10px 28px rgba(42, 95, 150, 0.35),
    0 0 0 0 rgba(63, 126, 184, 0.35);
  animation: stickyBookPulse 2.6s ease-in-out infinite;
}

.sticky-contact-btn--book svg {
  width: 22px;
  height: 22px;
}

.sticky-contact-label {
  position: absolute;
  right: calc(100% + 0.55rem);
  top: 50%;
  transform: translateY(-50%);
  padding: 0.4rem 0.7rem;
  border-radius: 0.5rem;
  background: #13253c;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  box-shadow: 0 6px 16px rgba(19, 37, 60, 0.2);
}

.sticky-contact-btn--book:hover .sticky-contact-label,
.sticky-contact-btn--book:focus-visible .sticky-contact-label {
  opacity: 1;
  transform: translateY(-50%) translateX(-2px);
}

.sticky-contact-btn--book:hover {
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 14px 32px rgba(42, 95, 150, 0.42);
  filter: brightness(1.04);
}

.sticky-contact-btn--whatsapp {
  background: #25d366;
  color: #fff;
}

.sticky-contact-btn--call {
  background: #5382c6;
  color: #fff;
}

@keyframes stickyBookPulse {
  0%, 100% {
    box-shadow:
      0 10px 28px rgba(42, 95, 150, 0.35),
      0 0 0 0 rgba(63, 126, 184, 0.28);
  }
  50% {
    box-shadow:
      0 10px 28px rgba(42, 95, 150, 0.35),
      0 0 0 8px rgba(63, 126, 184, 0);
  }
}

@media (max-width: 768px) {
  .sticky-contact {
    right: 0.85rem;
    bottom: 0.85rem;
    gap: 0.6rem;
  }

  .sticky-contact-btn {
    width: 50px;
    height: 50px;
  }

  .sticky-contact-btn svg {
    width: 22px;
    height: 22px;
  }

  .sticky-contact-btn--book {
    width: 50px;
    min-height: 50px;
    height: 50px;
  }

  .sticky-contact-btn--book svg {
    width: 20px;
    height: 20px;
  }

  .sticky-contact-label {
    display: none;
  }
}

@media (max-width: 560px) {
  .sticky-contact {
    right: 0.75rem;
    bottom: 0.75rem;
    gap: 0.55rem;
  }

  .sticky-contact-btn {
    width: 48px;
    height: 48px;
  }

  .sticky-contact-btn svg {
    width: 21px;
    height: 21px;
  }

  .sticky-contact-btn--book {
    width: 48px;
    min-height: 48px;
    height: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sticky-contact-btn--book {
    animation: none;
  }
}

/* =========================================
   Gallery Page
   ========================================= */

.gallery-page {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 55% at 8% 0%, rgba(83, 130, 198, 0.12), transparent 55%),
    radial-gradient(ellipse 55% 45% at 100% 20%, rgba(16, 35, 63, 0.05), transparent 50%),
    linear-gradient(180deg, #f3f6fb 0%, #eef2f8 48%, #f7f9fc 100%);
}

.gallery-page-glow {
  position: absolute;
  width: min(34rem, 70vw);
  height: min(34rem, 70vw);
  right: -8%;
  top: 18%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(83, 130, 198, 0.14), transparent 68%);
  pointer-events: none;
}

.gallery-intro {
  position: relative;
  max-width: 42rem;
  margin: 0 0 2.75rem;
}

.gallery-intro h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font);
  font-size: clamp(2.15rem, 4.4vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #10233f;
}

.gallery-intro > p:not(.eyebrow) {
  margin: 0;
  color: rgba(16, 35, 63, 0.68);
  line-height: 1.7;
  font-size: clamp(1rem, 1.6vw, 1.1rem);
  max-width: 36rem;
}

.gallery-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.gallery-item {
  position: relative;
  padding: 0;
  border: 0;
  background: #dfe7f2;
  border-radius: 1.35rem;
  overflow: hidden;
  cursor: zoom-in;
  aspect-ratio: 4 / 3;
  isolation: isolate;
  box-shadow: 0 10px 28px rgba(16, 35, 63, 0.06);
  transform: translateY(0);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    transparent 42%,
    rgba(10, 22, 40, 0.18) 68%,
    rgba(10, 22, 40, 0.72) 100%
  );
  opacity: 0.75;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.gallery-item::after {
  content: "";
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='11' cy='11' r='6.5' stroke='white' stroke-width='2'/%3E%3Cpath d='M16.5 16.5L21 21' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E")
    center / 1rem no-repeat,
    rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.gallery-item-meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1.15rem 1.2rem 1.2rem;
  text-align: left;
  color: #fff;
  transform: translateY(8px);
  opacity: 0.92;
  transition: transform 0.35s ease, opacity 0.35s ease;
  pointer-events: none;
}

.gallery-item-label {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.gallery-item-title {
  display: block;
  font-family: var(--font);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.gallery-item:hover,
.gallery-item:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(16, 35, 63, 0.14);
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.05);
}

.gallery-item:hover::before,
.gallery-item:focus-visible::before {
  opacity: 1;
}

.gallery-item:hover::after,
.gallery-item:focus-visible::after {
  opacity: 1;
  transform: none;
}

.gallery-item:hover .gallery-item-meta,
.gallery-item:focus-visible .gallery-item-meta {
  transform: none;
  opacity: 1;
}

.gallery-item:focus-visible {
  outline: 3px solid rgba(83, 130, 198, 0.75);
  outline-offset: 3px;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 1.5rem;
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 16, 30, 0.9);
  backdrop-filter: blur(6px);
}

.gallery-lightbox-figure {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: min(1040px, 100%);
  max-height: calc(100vh - 3rem);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  animation: galleryFadeIn 0.28s ease;
}

.gallery-lightbox-figure img {
  max-width: 100%;
  max-height: calc(100vh - 6.5rem);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 1rem;
  display: block;
  margin-inline: auto;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.gallery-lightbox-figure figcaption {
  color: rgba(255, 255, 255, 0.88);
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.5;
}

.gallery-lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

.gallery-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.22);
}

.gallery-lightbox-close img {
  width: 22px;
  height: 22px;
}

.gallery-lightbox-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

.gallery-lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.22);
}

.gallery-lightbox-prev {
  left: 1.25rem;
}

.gallery-lightbox-next {
  right: 1.25rem;
}

@keyframes galleryFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .gallery-intro {
    margin-bottom: 1.75rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .gallery-item {
    aspect-ratio: 4 / 3;
    border-radius: 1.1rem;
  }

  .gallery-item-meta {
    opacity: 1;
    transform: none;
  }

  .gallery-item::after {
    opacity: 1;
    transform: none;
  }

  .gallery-lightbox-nav {
    width: 40px;
    height: 40px;
  }

  .gallery-lightbox-prev {
    left: 0.5rem;
  }

  .gallery-lightbox-next {
    right: 0.5rem;
  }
}

/* =========================================
   Contact page - professional UI
   ========================================= */

.page-contact .hero--contact .hero-shell {
  min-height: min(68vh, 580px);
}

.contact-hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(105deg, rgba(18, 28, 48, 0.72) 0%, rgba(18, 28, 48, 0.35) 48%, rgba(18, 28, 48, 0.15) 100%);
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  max-width: 34rem;
}

.contact-hero-content h1 {
  margin-bottom: 0.65rem;
}

.contact-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.15rem;
  margin-top: 0.5rem;
}

.contact-hero-secondary {
  color: #fff;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 0.12rem;
  transition: opacity 0.2s ease;
}

.contact-hero-secondary:hover {
  opacity: 0.85;
}

/* Quick contact strip */
.contact-quick {
  position: relative;
  z-index: 4;
  margin-top: -2.75rem;
  padding-bottom: 0.5rem;
}

.contact-quick-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: #fff;
  border-radius: 1.35rem;
  border: 1px solid rgba(41, 64, 124, 0.08);
  box-shadow: 0 18px 48px rgba(26, 43, 74, 0.12);
  overflow: hidden;
}

.contact-quick-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.25rem 1.2rem;
  border-right: 1px solid rgba(41, 64, 124, 0.08);
  transition: background 0.2s ease;
}

.contact-quick-item:last-child {
  border-right: 0;
}

.contact-quick-item:hover {
  background: #f5f8fc;
}

.contact-quick-icon {
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 0.8rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: #29407c;
  background: rgba(83, 130, 198, 0.14);
}

.contact-quick-icon--wa {
  color: #1fa855;
  background: rgba(37, 211, 102, 0.14);
}

.contact-quick-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.contact-quick-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: rgba(17, 17, 17, 0.45);
}

.contact-quick-value {
  font-size: 0.92rem;
  font-weight: 600;
  color: #1a2b4a;
  line-height: 1.3;
  word-break: break-word;
}

/* Main contact grid */
.contact-main {
  background: linear-gradient(180deg, #f6f8fb 0%, #fff 100%);
  padding-top: 4.5rem;
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.15fr;
  gap: clamp(1.75rem, 5vw, 3.5rem);
  align-items: start;
}

.contact-aside h2 {
  font-family: var(--font);
  font-size: clamp(1.85rem, 3.4vw, 2.55rem);
  font-weight: 500;
  line-height: 1.15;
  color: #1a2b4a;
  margin-bottom: 0.9rem;
}

.contact-aside-lead {
  color: rgba(17, 17, 17, 0.6);
  line-height: 1.55;
  max-width: 34ch;
  margin-bottom: 1.75rem;
}

.contact-doctor {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.35rem;
  padding: 0.85rem;
  background: #fff;
  border-radius: 1rem;
  border: 1px solid rgba(41, 64, 124, 0.08);
}

.contact-doctor img {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 2px solid rgba(83, 130, 198, 0.35);
}

.contact-doctor strong {
  display: block;
  color: #1a2b4a;
  font-size: 0.98rem;
}

.contact-doctor span {
  display: block;
  color: rgba(17, 17, 17, 0.55);
  font-size: 0.84rem;
  line-height: 1.35;
}

.contact-hours-box {
  background: #1a2b4a;
  color: #fff;
  border-radius: 1.15rem;
  padding: 1.25rem 1.35rem;
}

.contact-hours-title {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.65;
  margin-bottom: 0.9rem;
  font-weight: 600;
}

.contact-hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-hours-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-hours-list span {
  font-size: 0.88rem;
  opacity: 0.75;
}

.contact-hours-list strong {
  font-size: 0.92rem;
  font-weight: 600;
}

.contact-panel {
  background: #fff;
  border-radius: 1.5rem;
  border: 1px solid rgba(41, 64, 124, 0.1);
  box-shadow: 0 20px 50px rgba(26, 43, 74, 0.08);
  padding: clamp(1.5rem, 3vw, 2.35rem);
}

.contact-panel-head {
  margin-bottom: 1.5rem;
}

.contact-panel-head h3 {
  font-family: var(--font);
  font-size: 1.45rem;
  font-weight: 500;
  color: #1a2b4a;
  margin-bottom: 0.35rem;
}

.contact-panel-head p {
  color: rgba(17, 17, 17, 0.55);
  font-size: 0.95rem;
}

.page-contact .contact-form-fields {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.page-contact .contact-form-fields-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.page-contact .contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.page-contact .contact-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.page-contact .contact-field span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(41, 64, 124, 0.6);
}

.page-contact .contact-form-fields input,
.page-contact .contact-form-fields textarea {
  width: 100%;
  border: 1px solid rgba(41, 64, 124, 0.14);
  border-radius: 0.75rem;
  background: #f7f9fc;
  padding: 0.85rem 1rem;
  font: inherit;
  font-weight: 500;
  color: #1a2b4a;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.page-contact .contact-form-fields input::placeholder,
.page-contact .contact-form-fields textarea::placeholder {
  color: rgba(41, 64, 124, 0.45);
  font-weight: 500;
}

.page-contact .contact-form-fields input:focus,
.page-contact .contact-form-fields textarea:focus {
  outline: none;
  background: #fff;
  border-color: #5382c6;
  box-shadow: 0 0 0 3px rgba(83, 130, 198, 0.18);
}

.page-contact .contact-form-fields textarea {
  min-height: 8.5rem;
  resize: vertical;
}

.page-contact .contact-form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  align-self: flex-start;
  background: linear-gradient(135deg, #5382c6 0%, #29407c 100%);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 0.9rem 1.7rem;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(41, 64, 124, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-contact .contact-form-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(41, 64, 124, 0.3);
}

.page-contact .contact-form-success,
.page-contact .contact-form-error {
  font-size: 0.92rem;
  line-height: 1.45;
  padding: 0.85rem 1rem;
  border-radius: 0.75rem;
}

.page-contact .contact-form-success {
  color: #1f5c36;
  background: rgba(41, 140, 80, 0.1);
}

.page-contact .contact-form-error {
  color: #9b1c1c;
  background: rgba(180, 35, 24, 0.08);
}

/* Visit + map */
.contact-visit {
  background: #1a2b4a;
  color: #fff;
  padding: 4.5rem 0;
}

.contact-visit-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.contact-visit-copy .eyebrow {
  color: rgba(255, 255, 255, 0.55);
}

.contact-visit-copy h2 {
  font-family: var(--font);
  font-size: clamp(1.8rem, 3.2vw, 2.45rem);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 0.9rem;
}

.contact-visit-copy > p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 36ch;
  line-height: 1.55;
  margin-bottom: 1.6rem;
}

.contact-visit-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.1rem;
}

.contact-visit .btn-about {
  background: #fff;
  color: #29407c;
}

.contact-visit-link {
  color: #fff;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  padding-bottom: 0.1rem;
}

.contact-visit-link:hover {
  opacity: 0.85;
}

.contact-map {
  border-radius: 1.35rem;
  overflow: hidden;
  min-height: 300px;
  height: min(390px, 52vh);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.28);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (max-width: 900px) {
  .contact-quick {
    margin-top: -1.75rem;
  }

  .contact-quick-panel {
    grid-template-columns: 1fr 1fr;
  }

  .contact-quick-item:nth-child(2) {
    border-right: 0;
  }

  .contact-quick-item:nth-child(1),
  .contact-quick-item:nth-child(2) {
    border-bottom: 1px solid rgba(41, 64, 124, 0.08);
  }

  .contact-main-grid,
  .contact-visit-grid {
    grid-template-columns: 1fr;
  }

  .contact-map {
    min-height: 260px;
    height: 280px;
  }
}

@media (max-width: 560px) {
  .contact-quick-panel {
    grid-template-columns: 1fr;
  }

  .contact-quick-item {
    border-right: 0;
    border-bottom: 1px solid rgba(41, 64, 124, 0.08);
  }

  .contact-quick-item:last-child {
    border-bottom: 0;
  }

  .page-contact .contact-form-row {
    grid-template-columns: 1fr;
  }

  .contact-hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ---------- Global mobile polish (all pages) ---------- */
iframe,
video,
embed,
object {
  max-width: 100%;
}

@media (max-width: 900px) {
  .header.is-stuck {
    z-index: 1000;
  }

  .nav-link,
  .dropdown-btn {
    min-height: 44px;
    padding-top: 0.55rem;
    padding-bottom: 0.55rem;
  }

  .btn,
  .c-btn,
  .ent-btn {
    max-width: 100%;
  }

  .section-title,
  .ent-hero h1,
  .ent-prose,
  .c-banner-copy p,
  .service-detail-intro p {
    overflow-wrap: anywhere;
  }

  table {
    display: block;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 640px) {
  .page-ent .ent-nav-inner,
  .page-ent .c-cta {
    width: min(calc(100% - 1.5rem), var(--ent-max, 1200px));
  }

  .ent-hero {
    padding-top: 5.75rem;
    padding-bottom: 2.5rem;
  }

  .ent-condition-nav {
    margin-inline: -0.25rem;
    padding-inline: 0.25rem;
    scrollbar-width: thin;
  }

  .ent-anchor {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

/* ========== Preloader ========== */
.page-loader {
  --pl-navy: #245789;
  --pl-sky: #7eb8e0;
  --pl-orange: #f07a2e;
  --pl-peach: #f0a070;
  --pl-teal: #6ec9c4;
  --pl-track: #e6eef4;
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: grid;
  place-items: center;
  place-content: center;
  gap: 1.35rem;
  background:
    radial-gradient(ellipse at 50% 42%, rgba(126, 184, 224, 0.16) 0%, transparent 52%),
    radial-gradient(ellipse at 50% 58%, rgba(240, 122, 46, 0.06) 0%, transparent 48%),
    #ffffff;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.page-loader.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.page-loader.is-leaving {
  pointer-events: none;
}

.page-loader.is-leaving:not(.is-active) {
  opacity: 0;
  visibility: hidden;
}

.page-loader.is-active.is-leaving {
  opacity: 1;
  visibility: visible;
}

.page-loader.is-active.is-leaving .page-loader__panel,
.page-loader.is-active.is-leaving .page-loader__brand {
  animation: page-loader-zoom-out 0.45s ease forwards;
}

.page-loader__glow {
  position: absolute;
  width: 11rem;
  height: 11rem;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(126, 184, 224, 0.28) 0%,
    rgba(36, 87, 137, 0.08) 45%,
    transparent 70%
  );
  animation: page-loader-glow 2s ease-in-out infinite;
  pointer-events: none;
}

.page-loader__panel {
  position: relative;
  width: 9rem;
  height: 9rem;
  display: grid;
  place-items: center;
  transform-origin: center center;
  animation: page-loader-zoom-in 0.55s cubic-bezier(0.22, 1, 0.36, 1) both,
    page-loader-zoom-pulse 1.7s ease-in-out 0.55s infinite;
}

.page-loader__ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.page-loader__ring--outer {
  animation: page-loader-spin 1.2s linear infinite;
  filter: drop-shadow(0 2px 8px rgba(36, 87, 137, 0.12));
}

.page-loader__ring--inner {
  inset: 10%;
  width: 80%;
  height: 80%;
  animation: page-loader-spin 1.8s linear infinite reverse;
  opacity: 0.85;
}

.page-loader__track {
  fill: none;
  stroke: var(--pl-track);
  stroke-width: 1.2;
}

.page-loader__arc {
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}

.page-loader__arc--navy {
  stroke: var(--pl-navy);
  stroke-dasharray: 52 237;
}

.page-loader__arc--orange {
  stroke: var(--pl-orange);
  stroke-dasharray: 30 259;
  stroke-dashoffset: -120;
}

.page-loader__arc--teal {
  stroke: var(--pl-teal);
  stroke-width: 1.6;
  stroke-dasharray: 36 253;
}

.page-loader__arc--peach {
  stroke: var(--pl-peach);
  stroke-width: 1.6;
  stroke-dasharray: 22 267;
  stroke-dashoffset: -95;
}

.page-loader__logo {
  position: relative;
  z-index: 1;
  width: 4.5rem;
  height: 4.5rem;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 6px 16px rgba(15, 36, 56, 0.12));
}

.page-loader__brand {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pl-navy);
  opacity: 0.78;
  animation: page-loader-brand 1.4s ease-in-out infinite;
}

.page-loader__dots {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 0.4rem;
  margin-top: -0.35rem;
}

.page-loader__dots span {
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--pl-navy);
  opacity: 0.35;
  animation: page-loader-dot 1.05s ease-in-out infinite;
}

.page-loader__dots span:nth-child(2) {
  animation-delay: 0.15s;
  background: var(--pl-orange);
}

.page-loader__dots span:nth-child(3) {
  animation-delay: 0.3s;
  background: var(--pl-teal);
}

@keyframes page-loader-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes page-loader-glow {
  0%,
  100% {
    transform: scale(0.92);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

@keyframes page-loader-zoom-in {
  from {
    transform: scale(0.45);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes page-loader-zoom-pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}

@keyframes page-loader-zoom-out {
  from {
    transform: scale(1);
    opacity: 1;
  }
  to {
    transform: scale(0.45);
    opacity: 0;
  }
}

@keyframes page-loader-brand {
  0%,
  100% {
    opacity: 0.55;
    letter-spacing: 0.2em;
  }
  50% {
    opacity: 0.95;
    letter-spacing: 0.26em;
  }
}

@keyframes page-loader-dot {
  0%,
  100% {
    transform: translateY(0) scale(0.85);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-4px) scale(1.15);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-loader__ring,
  .page-loader__panel,
  .page-loader__glow,
  .page-loader__brand,
  .page-loader__dots span {
    animation: none;
  }

  .page-loader.is-leaving .page-loader__panel,
  .page-loader.is-leaving .page-loader__brand {
    animation: none;
  }
}

/* ========== Google reviews slider ========== */
.reviews-slider {
  background:
    radial-gradient(ellipse 70% 55% at 8% 0%, rgba(198, 227, 246, 0.55), transparent 58%),
    radial-gradient(ellipse 55% 45% at 100% 100%, rgba(255, 185, 55, 0.12), transparent 55%),
    #f7fafc;
  overflow: hidden;
}

.reviews-slider-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.reviews-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem 1.5rem;
  flex-wrap: wrap;
}

.reviews-top-left {
  flex: 1 1 16rem;
  min-width: 0;
}

.reviews-top-left .eyebrow {
  margin-bottom: 0.45rem;
}

.reviews-top-left h2 {
  font-family: var(--font);
  font-size: clamp(1.85rem, 3.6vw, 2.55rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #0f1c2e;
  max-width: 22ch;
}

.reviews-summary {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(15, 28, 46, 0.1);
  box-shadow: 0 10px 28px rgba(15, 28, 46, 0.05);
}

.reviews-summary__google {
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.reviews-summary__meta {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
  font-size: 0.86rem;
  color: rgba(15, 28, 46, 0.65);
}

.reviews-summary__meta strong {
  color: #0f1c2e;
  font-size: 1.05rem;
}

.reviews-stars,
.review-card__stars {
  color: #f6b000;
  letter-spacing: 0.04em;
  font-size: 0.9rem;
  line-height: 1;
}

.reviews-summary__count {
  white-space: nowrap;
}

.reviews-summary__link {
  margin-left: 0.15rem;
  font-size: 0.84rem;
  font-weight: 600;
  color: #1a3365;
  text-decoration: none;
  white-space: nowrap;
}

.reviews-summary__link:hover {
  text-decoration: underline;
}

.reviews-nav {
  display: flex;
  gap: 0.65rem;
  flex-shrink: 0;
}

.reviews-tray {
  overflow: hidden;
  margin-right: calc(50% - 50vw);
}

.reviews-track {
  display: flex;
  gap: 1.1rem;
  width: max-content;
  padding-right: max(1.25rem, calc(50vw - 50%));
  padding-bottom: 0.35rem;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  cursor: grab;
  user-select: none;
}

.reviews-track::-webkit-scrollbar {
  display: none;
}

.reviews-track.is-dragging {
  cursor: grabbing;
}

.review-card {
  flex: 0 0 min(20.5rem, 82vw);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 13.5rem;
  padding: 1.25rem 1.2rem 1.35rem;
  border-radius: 1.15rem;
  background: #fff;
  border: 1px solid rgba(15, 28, 46, 0.08);
  box-shadow: 0 14px 34px rgba(15, 28, 46, 0.06);
}

.review-card__head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.7rem;
  align-items: center;
}

.review-card__avatar {
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  background: #c9783a;
}

.review-card__avatar--teal {
  background: #1f5c57;
}

.review-card__avatar--navy {
  background: #1a3365;
}

.review-card__avatar--coral {
  background: #b85a45;
}

.review-card__head strong {
  display: block;
  font-size: 0.95rem;
  color: #0f1c2e;
}

.review-card__src {
  display: block;
  margin-top: 0.12rem;
  font-size: 0.75rem;
  color: rgba(15, 28, 46, 0.5);
}

.review-card p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.55;
  color: rgba(15, 28, 46, 0.78);
}

.reviews-footer {
  display: flex;
  justify-content: flex-start;
}

.reviews-write {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: #1a3365;
  text-decoration: none;
}

.reviews-write:hover {
  color: #c9783a;
}

@media (max-width: 720px) {
  .reviews-summary {
    order: 3;
    width: 100%;
    border-radius: 1rem;
    justify-content: space-between;
  }

  .reviews-nav {
    margin-left: auto;
  }

  .review-card {
    min-height: 12.5rem;
  }
}

/* ========== Instagram reels slider ========== */
.ig-reels-slider {
  background: #0f1c2e;
  overflow: hidden;
}

.ig-reels-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.ig-reels-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem 1.5rem;
  flex-wrap: wrap;
}

.ig-reels-top-left {
  flex: 1 1 16rem;
  min-width: 0;
}

.ig-reels-top-left .eyebrow {
  margin-bottom: 0.45rem;
  color: rgba(255, 255, 255, 0.62);
}

.ig-reels-top-left h2 {
  font-family: var(--font);
  font-size: clamp(1.85rem, 3.6vw, 2.55rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #fff;
  max-width: 18ch;
}

.ig-reels-handle {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
}

.ig-reels-handle:hover {
  background: rgba(255, 255, 255, 0.14);
}

.ig-reels-handle__icon {
  display: grid;
  place-items: center;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #f58529, #dd2a7b 50%, #8134af);
}

.ig-reels-handle__icon img {
  width: 0.85rem;
  height: 0.85rem;
  filter: brightness(0) invert(1);
}

.ig-reels-nav {
  display: flex;
  gap: 0.65rem;
  flex-shrink: 0;
}

.ig-reels-slider .packages-arrow {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.ig-reels-slider .packages-arrow img {
  filter: invert(1) brightness(2);
}

.ig-reels-slider .packages-arrow:hover {
  background: #fff;
  border-color: #fff;
}

.ig-reels-slider .packages-arrow:hover img {
  filter: none;
}

.ig-reels-tray {
  overflow: hidden;
  margin-right: calc(50% - 50vw);
}

.ig-reels-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-right: max(1.25rem, calc(50vw - 50%));
  padding-bottom: 0.25rem;
  cursor: grab;
}

.ig-reels-track::-webkit-scrollbar {
  display: none;
}

.ig-reels-track.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.ig-reel-card {
  position: relative;
  flex: 0 0 min(12.5rem, 58vw);
  aspect-ratio: 9 / 16;
  scroll-snap-align: start;
  border-radius: 1.15rem;
  overflow: hidden;
  background: #1a2a42;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  isolation: isolate;
}

.ig-reel-card.is-playing {
  flex-basis: min(17.5rem, 78vw);
  height: min(31rem, 72vh);
  aspect-ratio: auto;
}

.ig-reel-card__hit {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  text-align: left;
}

.ig-reel-card.is-playing .ig-reel-card__hit {
  display: none;
}

.ig-reel-card__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ig-reel-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 28, 46, 0.05) 35%,
    rgba(15, 28, 46, 0.82) 100%
  );
  z-index: 1;
}

.ig-reel-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 3.1rem;
  height: 3.1rem;
  margin: -1.55rem 0 0 -1.55rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #f58529, #dd2a7b 55%, #8134af);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.ig-reel-card__meta {
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.95rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.ig-reel-card__tag {
  width: fit-content;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.16);
}

.ig-reel-card__meta strong {
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.3;
}

.ig-reel-card__embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: #152338;
}

.ig-reel-card__open {
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.75rem;
  z-index: 2;
  display: none;
  justify-content: center;
  align-items: center;
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  background: rgba(15, 28, 46, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.ig-reel-card.is-playing .ig-reel-card__open {
  display: inline-flex;
}

.ig-reels-footer {
  display: flex;
}

.ig-reels-follow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: #ffb937;
  text-decoration: none;
}

.ig-reels-follow:hover {
  color: #fff;
}

@media (max-width: 720px) {
  .ig-reels-handle {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .ig-reels-nav {
    margin-left: auto;
  }
}

/* ========== Happy patients gallery ========== */
.happy-gallery {
  background:
    radial-gradient(ellipse 60% 50% at 100% 0%, rgba(198, 227, 246, 0.45), transparent 55%),
    radial-gradient(ellipse 50% 40% at 0% 100%, rgba(201, 120, 58, 0.1), transparent 50%),
    #fff;
  overflow: hidden;
}

.happy-gallery-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.happy-gallery-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem 1.5rem;
  flex-wrap: wrap;
}

.happy-gallery-top-left {
  flex: 1 1 16rem;
  min-width: 0;
}

.happy-gallery-top-left .eyebrow {
  margin-bottom: 0.45rem;
}

.happy-gallery-top-left h2 {
  font-family: var(--font);
  font-size: clamp(1.85rem, 3.6vw, 2.55rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #0f1c2e;
  max-width: 18ch;
}

.happy-gallery-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: #1a3365;
  text-decoration: none;
}

.happy-gallery-link:hover {
  color: #c9783a;
}

.happy-gallery-nav {
  display: flex;
  gap: 0.65rem;
  flex-shrink: 0;
}

.happy-gallery-tray {
  overflow: hidden;
  margin-right: calc(50% - 50vw);
}

.happy-gallery-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  padding-right: max(1.25rem, calc(50vw - 50%));
  padding-bottom: 0.25rem;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  cursor: grab;
  user-select: none;
}

.happy-gallery-track.is-dragging {
  cursor: grabbing;
}

.happy-gallery-card {
  position: relative;
  flex: 0 0 min(22rem, 78vw);
  margin: 0;
  aspect-ratio: 4 / 3;
  border-radius: 1.15rem;
  overflow: hidden;
  background: #e8eef5;
  box-shadow: 0 14px 34px rgba(15, 28, 46, 0.08);
}

.happy-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.happy-gallery-card:hover img {
  transform: scale(1.04);
}

@media (max-width: 720px) {
  .happy-gallery-link {
    order: 3;
    width: 100%;
  }

  .happy-gallery-nav {
    margin-left: auto;
  }
}

/* Faster first paint: skip layout/paint for offscreen sections */
.freezing,
.works,
.concerns,
.packages-slider,
.reviews-slider,
.ig-reels-slider,
.happy-gallery,
.why,
.clinic-info,
.faq,
.c-cta,
.ent-section,
.ent-band,
.contact-form {
  content-visibility: auto;
  contain-intrinsic-size: 1px 720px;
}

@media (max-width: 480px) {
  .page-loader__panel {
    width: 7.5rem;
    height: 7.5rem;
  }

  .page-loader__logo {
    width: 3.75rem;
    height: 3.75rem;
  }

  .page-loader__glow {
    width: 9.5rem;
    height: 9.5rem;
  }
}