/* Dr. Jagdish Pusa — Premium Landing Page */

:root {
  --navy: #0a1628;
  --navy-mid: #132238;
  --teal: #0d9488;
  --teal-light: #14b8a6;
  --teal-pale: #ecfdf5;
  --teal-glow: rgba(13, 148, 136, 0.35);
  --gold: #c9a84c;
  --gold-pale: #faf6ed;
  --text: #0f172a;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --bg-warm: #faf9f7;
  --border: #e2e8f0;
  --font-display: "Instrument Serif", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --shadow-sm: 0 1px 3px rgba(10, 22, 40, 0.06);
  --shadow-md: 0 8px 30px rgba(10, 22, 40, 0.1);
  --shadow-lg: 0 20px 60px rgba(10, 22, 40, 0.14);
  --shadow-glow: 0 8px 32px var(--teal-glow);
  --radius: 14px;
  --radius-lg: 24px;
  --topbar-h: 38px;
  --header-h: 80px;
  --safe-top: env(safe-area-inset-top, 0px);
  --total-header: calc(var(--topbar-h) + var(--header-h) + var(--safe-top));
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--total-header);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-bottom: env(safe-area-inset-bottom, 0);
}

body.nav-open {
  overflow: hidden;
  touch-action: none;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: min(1180px, 92vw);
  margin-inline: auto;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }

/* Topbar */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 110;
  height: calc(var(--topbar-h) + var(--safe-top));
  padding-top: var(--safe-top);
  background: var(--navy);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.78rem;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
}

.topbar__badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.7);
}

.topbar__badge svg { color: var(--teal-light); flex-shrink: 0; }

.topbar__phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: #fff;
  transition: color 0.2s;
}

.topbar__phone:hover { color: var(--teal-light); }

/* Header */
.header {
  position: fixed;
  top: calc(var(--topbar-h) + var(--safe-top));
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s, border-color 0.3s, background 0.3s;
}

.header::before {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: -1;
  pointer-events: none;
}

.header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav__logo-img {
  height: 58px;
  width: auto;
  max-width: 200px;
  display: block;
  object-fit: contain;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav__links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
  position: relative;
}

.nav__links a:not(.nav__cta)::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
  transition: width 0.25s;
}

.nav__links a:not(.nav__cta):hover {
  color: var(--navy);
}

.nav__links a:not(.nav__cta):hover::after { width: 100%; }

.nav__cta {
  background: var(--navy) !important;
  color: #fff !important;
  padding: 0.6rem 1.35rem;
  border-radius: 10px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s !important;
  box-shadow: 0 4px 14px rgba(10, 22, 40, 0.2);
}

.nav__cta::after { display: none !important; }

.nav__cta:hover {
  background: var(--teal) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-glow);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  -webkit-tap-highlight-color: transparent;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* Mobile nav panel (outside header to avoid clipping) */
.nav__links--mobile {
  display: none;
}

.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  top: var(--total-header);
  background: rgba(10, 22, 40, 0.45);
  z-index: 104;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.nav-backdrop.is-visible {
  opacity: 1;
  pointer-events: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.15s, box-shadow 0.25s;
}

.btn:active { transform: scale(0.98); }

.btn--primary {
  background: linear-gradient(135deg, var(--teal) 0%, #0f766e 100%);
  color: #fff;
  box-shadow: 0 4px 16px var(--teal-glow);
}

.btn--primary:hover {
  background: linear-gradient(135deg, var(--teal-light) 0%, var(--teal) 100%);
  box-shadow: 0 8px 24px var(--teal-glow);
  transform: translateY(-2px);
}

.btn--glow:hover { box-shadow: 0 8px 28px var(--teal-glow); }

.btn--ghost {
  background: rgba(255, 255, 255, 0.7);
  color: var(--navy);
  border-color: var(--border);
  backdrop-filter: blur(8px);
}

.btn--ghost:hover {
  background: #fff;
  border-color: var(--teal);
  color: var(--teal);
}

.btn--white {
  background: #fff;
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn--white:hover {
  background: var(--teal-pale);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

.btn--lg { padding: 1rem 2rem; font-size: 1rem; }
.btn--full { width: 100%; }

/* Hero */
.hero {
  position: relative;
  padding: calc(var(--total-header) + 3.5rem) 0 0;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(13, 148, 136, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 10% 80%, rgba(201, 168, 76, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, var(--bg-warm) 0%, #fff 60%, var(--teal-pale) 100%);
  z-index: -2;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
  pointer-events: none;
}

.hero__orb--1 {
  width: 400px;
  height: 400px;
  background: rgba(13, 148, 136, 0.15);
  top: 10%;
  right: -5%;
  animation: float 8s ease-in-out infinite;
}

.hero__orb--2 {
  width: 300px;
  height: 300px;
  background: rgba(201, 168, 76, 0.1);
  bottom: 20%;
  left: -5%;
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  flex: 1;
  padding-bottom: 4rem;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  border: 1px solid var(--border);
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-sm);
}

.hero__badge-dot {
  width: 7px;
  height: 7px;
  background: var(--teal-light);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.hero__eyebrow {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--navy);
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}

.hero h1 em {
  font-style: italic;
  color: var(--teal);
}

.hero__qual {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 0.3rem;
  letter-spacing: 0.02em;
}

.hero__title {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.hero__desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 500px;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.hero__tags span {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  background: rgba(13, 148, 136, 0.08);
  color: var(--teal);
  border-radius: 100px;
  border: 1px solid rgba(13, 148, 136, 0.15);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Hero visual */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__portrait {
  position: relative;
  width: 100%;
  max-width: 440px;
}

.hero__portrait-frame {
  background: linear-gradient(145deg, var(--navy) 0%, var(--teal) 100%);
  border-radius: var(--radius-lg);
  padding: 4px;
  box-shadow: var(--shadow-lg);
}

.hero__portrait-inner {
  background: #f1f5f9;
  border-radius: calc(var(--radius-lg) - 4px);
  overflow: hidden;
  position: relative;
  line-height: 0;
}

.hero__portrait-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10, 22, 40, 0.06) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero__doctor-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center top;
  aspect-ratio: 4 / 5;
  min-height: 380px;
}

.hero__float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.85rem 1.1rem;
  box-shadow: var(--shadow-md);
  font-size: 0.82rem;
  animation: float-card 6s ease-in-out infinite;
}

.hero__float-card svg {
  width: 22px;
  height: 22px;
  color: var(--teal);
  flex-shrink: 0;
}

.hero__float-card strong {
  display: block;
  font-size: 0.85rem;
  color: var(--navy);
}

.hero__float-card span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.hero__float-card--1 {
  top: 8%;
  left: -8%;
  animation-delay: 0s;
}

.hero__float-card--2 {
  bottom: 28%;
  right: -10%;
  animation-delay: 2s;
}

.hero__float-card--3 {
  bottom: 5%;
  left: -5%;
  animation-delay: 4s;
}

@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Trust strip */
.trust-strip {
  background: var(--navy);
  padding: 2.5rem 0;
  position: relative;
}

.trust-strip::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(13, 148, 136, 0.5), transparent);
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.trust-item {
  text-align: center;
  padding: 0.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-item:last-child { border-right: none; }

.trust-item__num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--teal-light);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.trust-item__label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

/* Sections */
.section { padding: 6rem 0; }

.section__label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--teal);
  margin-bottom: 0.85rem;
}

.section__label::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
}

.section__header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 3.5rem;
}

.section__header h2,
.about__text h2,
.contact__info h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 0.85rem;
  letter-spacing: -0.02em;
}

.section__header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* About */
.about { background: var(--bg-alt); }

.about__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.about__image-card {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, #1e4976 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 2.5rem;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  box-shadow: var(--shadow-lg);
}

.about__image-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(13, 148, 136, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(201, 168, 76, 0.15) 0%, transparent 40%);
}

.about__image-content {
  position: relative;
  color: #fff;
}

.about__image-icon {
  display: block;
  width: 56px;
  height: 56px;
  margin-bottom: 1.25rem;
  color: var(--teal-light);
}

.about__image-content h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.about__image-content p {
  font-size: 0.92rem;
  opacity: 0.8;
  line-height: 1.6;
}

.about__experience {
  margin-top: 1.25rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-sm);
}

.about__experience-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  display: block;
  margin-bottom: 0.75rem;
}

.about__experience-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.about__experience-tags span {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.8rem;
  background: var(--bg-alt);
  border-radius: 8px;
  color: var(--navy);
}

.about__text p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 1.02rem;
}

.about__highlights {
  margin: 1.75rem 0;
  display: grid;
  gap: 0.7rem;
}

.about__highlights li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--navy);
}

.about__highlights li::before {
  content: "";
  width: 20px;
  height: 20px;
  background: var(--teal);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpath d='M5 12l5 5L19 7'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}

.about__credentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.credential-card {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  transition: box-shadow 0.25s, transform 0.25s;
}

.credential-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.credential-card--accent {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a5c 100%);
  border-color: transparent;
  color: #fff;
}

.credential-card__icon {
  width: 40px;
  height: 40px;
  background: var(--teal-pale);
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--teal);
}

.credential-card--accent .credential-card__icon {
  background: rgba(255, 255, 255, 0.12);
  color: var(--teal-light);
}

.credential-card__icon svg { width: 20px; height: 20px; }

.credential-card h4 {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.7;
  margin-bottom: 0.2rem;
  font-weight: 600;
}

.credential-card p {
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0 !important;
  color: inherit;
}

/* Pillars */
.pillars { background: #fff; }

.pillars__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.pillar-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  transition: background 0.3s, box-shadow 0.3s, transform 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}

.pillar-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s;
}

.pillar-card:hover {
  background: #fff;
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: transparent;
}

.pillar-card:hover::before { transform: scaleX(1); }

.pillar-card__icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--teal-pale) 0%, #fff 100%);
  border: 1px solid rgba(13, 148, 136, 0.2);
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
  color: var(--teal);
}

.pillar-card__icon svg { width: 24px; height: 24px; }

.pillar-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.pillar-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.section__header--left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  max-width: 720px;
}

.section__header--left h2 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  letter-spacing: -0.02em;
}

/* Services */
.services { background: var(--bg-warm); }

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0 0 1.65rem;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: rgba(13, 148, 136, 0.25);
}

.service-card__image {
  height: 234px;
  overflow: hidden;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.service-card:hover .service-card__image img {
  transform: scale(1.04);
}

.service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
  padding: 1.25rem 1.5rem 0;
  color: var(--navy);
}

.service-card ul {
  display: grid;
  gap: 0.45rem;
  padding: 0 1.5rem;
}

.service-card li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding-left: 1rem;
  position: relative;
  line-height: 1.45;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  background: var(--teal);
  border-radius: 50%;
}

/* Process */
.process {
  padding: 5rem 0;
  background: #fff;
}

.process__steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 0 1.5rem;
}

.process-step__num {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 16px var(--teal-glow);
}

.process-step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.process-step__line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--border));
  margin-top: 26px;
  flex-shrink: 0;
}

/* CTA Banner */
.cta-banner {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, #0f3460 50%, #0d4f4f 100%);
  padding: 4.5rem 0;
  color: #fff;
  overflow: hidden;
}

.cta-banner__pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(13, 148, 136, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(201, 168, 76, 0.1) 0%, transparent 40%);
  pointer-events: none;
}

.cta-banner__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.cta-banner__eyebrow {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal-light);
  margin-bottom: 0.6rem;
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.cta-banner p {
  opacity: 0.8;
  font-size: 1rem;
  max-width: 480px;
}

.cta-banner__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.cta-banner__note {
  font-size: 0.8rem;
  opacity: 0.6;
}

/* Locations */
.locations { background: var(--bg-alt); }

.locations__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.location-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border);
  transition: box-shadow 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
}

.location-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.location-card--featured {
  background: linear-gradient(160deg, var(--navy) 0%, #1a3a5c 100%);
  border-color: transparent;
  color: #fff;
}

.location-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.location-card__icon {
  width: 44px;
  height: 44px;
  background: var(--teal-pale);
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--teal);
}

.location-card--featured .location-card__icon {
  background: rgba(255, 255, 255, 0.12);
  color: var(--teal-light);
}

.location-card__icon svg { width: 20px; height: 20px; }

.location-card__tag {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.7rem;
  background: var(--bg-alt);
  border-radius: 100px;
  color: var(--text-muted);
}

.location-card--featured .location-card__tag {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.8);
}

.location-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.location-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  flex: 1;
  line-height: 1.55;
}

.location-card--featured p { color: rgba(255, 255, 255, 0.7); }

.location-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--teal);
  transition: gap 0.2s;
}

.location-card--featured .location-card__link { color: var(--teal-light); }

.location-card__link:hover { gap: 0.65rem; }

/* Contact */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.contact__info p {
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  font-size: 1.02rem;
}

.contact__phone {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2.5rem;
  transition: color 0.2s;
}

.contact__phone:hover { color: var(--teal); }

.contact__phone-ring {
  width: 56px;
  height: 56px;
  background: var(--teal-pale);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--teal);
  flex-shrink: 0;
}

.contact__details {
  display: grid;
  gap: 1.25rem;
}

.contact__detail-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-left: 1rem;
  border-left: 3px solid var(--teal);
}

.contact__detail-item strong {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
}

.contact__detail-item span {
  font-weight: 600;
  color: var(--navy);
}

.contact__card {
  position: relative;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.75rem;
  overflow: hidden;
}

.contact__card-glow {
  position: absolute;
  top: -50%;
  right: -30%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.contact__card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 0.75rem;
  position: relative;
}

.contact__card > p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.75rem;
  position: relative;
}

.contact__card-divider {
  height: 1px;
  background: var(--border);
  margin: 1.5rem 0;
}

.contact__note {
  font-size: 0.85rem !important;
  text-align: center;
  color: var(--text-light) !important;
  margin: 0 !important;
}

/* FAQ — AEO */
.faq { background: #fff; }

.faq__list {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 0.75rem;
}

.faq__item {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.faq__item[open] {
  border-color: rgba(13, 148, 136, 0.3);
  box-shadow: var(--shadow-sm);
}

.faq__question {
  padding: 1.15rem 1.35rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq__question::-webkit-details-marker { display: none; }

.faq__question::after {
  content: "+";
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--teal);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq__item[open] .faq__question::after {
  content: "−";
}

.faq__answer {
  padding: 0 1.35rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq__answer a {
  color: var(--teal);
  font-weight: 600;
}

/* Footer */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.65);
  padding: 3rem 0 2rem;
}

.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.footer__logo-img {
  height: 72px;
  width: auto;
  max-width: min(280px, 100%);
  display: block;
  object-fit: contain;
}

.footer__brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.footer__brand-text span {
  display: block;
  font-size: 0.8rem;
}

.footer__nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer__nav a {
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer__nav a:hover { color: var(--teal-light); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.78rem;
  opacity: 0.5;
}

.footer__address {
  font-style: normal;
}

.footer__credit {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 0.75rem;
  opacity: 0.45;
}

.footer__credit a {
  color: var(--teal-light);
  font-weight: 600;
  transition: color 0.2s, opacity 0.2s;
}

.footer__credit a:hover {
  color: #fff;
  opacity: 1;
}

.footer__credit span {
  color: var(--teal-light);
  font-weight: 600;
}

body.nav-open .fab-stack {
  display: none;
}

/* Floating action buttons */
.fab-stack {
  position: fixed;
  right: 1rem;
  bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
  z-index: 95;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

.fab {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 2.5px solid #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 18px rgba(10, 22, 40, 0.22);
  transition: transform 0.2s, box-shadow 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.fab:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(10, 22, 40, 0.28);
}

.fab:active {
  transform: scale(0.96);
}

.fab--book {
  background: #f4c9a0;
  color: #6b3f1f;
}

.fab--whatsapp {
  background: #25d366;
  color: #fff;
}

.fab--call {
  background: #b8ddf5;
  color: #1a5f8a;
}

/* Responsive */
@media (max-width: 1024px) {
  .pillars__grid { grid-template-columns: repeat(2, 1fr); }
  .trust-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: none; }
  .locations__grid { grid-template-columns: 1fr; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root {
    --topbar-h: 40px;
    --header-h: 68px;
  }

  .container {
    width: min(1180px, 94vw);
  }

  .section { padding: 3.5rem 0; }
  .process { padding: 3.5rem 0; }

  .topbar__inner {
    justify-content: center;
  }

  .topbar__badge { display: none; }

  .topbar__phone {
    font-size: 0.85rem;
    padding: 0.35rem 0;
    min-height: 44px;
  }

  .nav__toggle {
    display: flex;
    position: relative;
    z-index: 106;
  }

  .nav__links--desktop { display: none; }

  .nav__links--mobile {
    display: flex;
    position: fixed;
    top: var(--total-header);
    left: 0;
    right: 0;
    z-index: 105;
    width: 100%;
    max-height: calc(100dvh - var(--total-header));
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem 1.25rem 2rem;
    padding-bottom: calc(2rem + env(safe-area-inset-bottom, 0px));
    gap: 0;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 12px 40px rgba(10, 22, 40, 0.15);
    transform: translateY(-110%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-backdrop { display: block; }

  .nav__links--mobile.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav__links--mobile li { width: 100%; }

  .nav__links--mobile a {
    display: flex;
    align-items: center;
    padding: 1rem 0.25rem;
    min-height: 52px;
    border-bottom: 1px solid var(--border);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--navy);
  }

  .nav__links--mobile a:not(.nav__cta):hover,
  .nav__links--mobile a:not(.nav__cta):active {
    color: var(--teal);
  }

  .nav__links--mobile a::after {
    display: none !important;
  }

  .nav__links--mobile li:last-child {
    margin-top: 0.75rem;
    padding-top: 0.25rem;
  }

  .nav__links--mobile .nav__cta {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 0;
    padding: 1rem 1.35rem !important;
    min-height: 52px;
    font-size: 1rem;
    border-bottom: none;
    border-radius: 12px;
  }

  .nav__toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__toggle.is-active span:nth-child(2) { opacity: 0; }
  .nav__toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero {
    min-height: auto;
    padding-top: calc(var(--total-header) + 1.5rem);
    padding-bottom: 0;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    padding-bottom: 2.5rem;
  }

  .hero__visual { order: -1; }
  .hero__portrait { max-width: min(100%, 360px); margin-inline: auto; }
  .hero__doctor-img { min-height: 280px; }

  .hero__float-card {
    padding: 0.65rem 0.85rem;
    font-size: 0.75rem;
    max-width: calc(100% - 1rem);
  }

  .hero__float-card strong { font-size: 0.78rem; }
  .hero__float-card span { font-size: 0.68rem; }
  .hero__float-card svg { width: 18px; height: 18px; }

  .hero__float-card--1 { left: 0.5rem; top: 4%; }
  .hero__float-card--2 { right: 0.5rem; bottom: 30%; left: auto; }
  .hero__float-card--3 { left: 0.5rem; bottom: 4%; }

  .hero h1 { font-size: clamp(2.2rem, 9vw, 2.8rem); }
  .hero__title { font-size: 1rem; }
  .hero__desc { font-size: 0.98rem; max-width: none; }

  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
    min-height: 48px;
    justify-content: center;
  }

  .hero__orb--1 { width: 220px; height: 220px; }
  .hero__orb--2 { width: 180px; height: 180px; }

  .about__grid { grid-template-columns: 1fr; gap: 2rem; }
  .about__image-card { min-height: 260px; padding: 2rem 1.5rem; }
  .about__credentials { grid-template-columns: 1fr; }
  .pillars__grid { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; gap: 2rem; }

  .contact__phone {
    font-size: clamp(1.25rem, 5.5vw, 1.5rem);
    flex-wrap: wrap;
    margin-bottom: 2rem;
  }

  .contact__card { padding: 2rem 1.5rem; }

  .process__steps { flex-direction: column; align-items: center; gap: 0; }
  .process-step__line { width: 2px; height: 40px; margin: 0; }
  .process-step { padding: 0 0 0.5rem; max-width: 320px; }

  .cta-banner { padding: 3rem 0; }
  .cta-banner__inner { flex-direction: column; text-align: center; }
  .cta-banner .btn { width: 100%; min-height: 52px; }

  .footer { padding: 2.5rem 0 1.5rem; }
  .footer__top { flex-direction: column; text-align: center; }
  .nav__logo-img { height: 46px; max-width: 160px; }
  .footer__logo-img { height: 58px; max-width: min(240px, 90vw); }
  .footer__brand { flex-direction: column; text-align: center; }
  .footer__nav {
    justify-content: center;
    gap: 1.25rem 1.75rem;
  }
  .footer__nav a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
  .footer__bottom { flex-direction: column; text-align: center; }

  .trust-strip { padding: 2rem 0; }
  .trust-strip__grid { grid-template-columns: 1fr 1fr; gap: 0; }
  .trust-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.25rem 0.75rem;
  }
  .trust-item:nth-child(3),
  .trust-item:nth-child(4) { border-bottom: none; }

  .trust-item__num { font-size: 1.85rem; }

  .services__grid { grid-template-columns: 1fr; }
  .section__header { margin-bottom: 2.5rem; }
  .section__header p { font-size: 0.98rem; }

  .location-card { padding: 1.5rem; }
  .location-card__link { min-height: 44px; align-items: center; }

  .fab-stack {
    right: calc(0.75rem + env(safe-area-inset-right, 0px));
    bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px));
    gap: 0.65rem;
  }

  .fab {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 480px) {
  .container { width: min(1180px, 96vw); }

  .hero__float-card--2 { display: none; }

  .hero__tags span {
    font-size: 0.72rem;
    padding: 0.3rem 0.7rem;
  }

  .trust-strip__grid { grid-template-columns: 1fr; }
  .trust-item { border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important; }
  .trust-item:last-child { border-bottom: none !important; }

  .pillar-card { padding: 1.5rem 1.25rem; }
  .service-card { padding: 0 0 1.25rem; }
  .service-card h3 { padding: 1rem 1.25rem 0; }
  .service-card ul { padding: 0 1.25rem; }
  .service-card__image { height: 195px; }

  .cta-banner h2 { font-size: 1.65rem; }

  .footer__nav {
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
  }
}
