/* ===========================
   ROOT & RESET
   =========================== */
:root {
  --primary: #1a6b8a;
  --primary-dark: #124f67;
  --primary-light: #e8f4f8;
  --accent: #c9a96e;
  --green: #25d366;
  --text: #1a1a2e;
  --muted: #6b7280;
  --light: #9ca3af;
  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --heading: #1a1a2e;
  --bg-dark: #0d1f2d;
  --border: #e5e7eb;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.16);
  --r: 12px;
  --r-lg: 20px;
  --r-xl: 28px;
  --font: 'Inter', sans-serif;
  --serif: 'Playfair Display', serif;
  /* Explicit properties only — avoids transitioning layout properties like height/padding */
  --ease: color 0.25s ease, background-color 0.25s ease, box-shadow 0.28s ease, border-color 0.25s ease, transform 0.28s cubic-bezier(0.4,0,0.2,1), opacity 0.25s ease;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
/* Respect user motion preferences — only smooth scroll for those who want it */
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}
body {
  font-family: var(--font); color: var(--text); background: var(--bg);
  line-height: 1.6; overflow-x: hidden;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility; font-feature-settings: "cv11", "ss01";
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ===========================
   SKIP NAVIGATION (a11y)
   =========================== */
.skip-nav {
  position: absolute;
  left: 16px;
  top: 0;
  z-index: 10000;
  background: var(--primary); color: #fff;
  padding: 12px 20px; border-radius: 0 0 8px 8px;
  font-weight: 700; font-size: 0.9rem;
  text-decoration: none;
  transform: translateY(-110%);
  transition: transform 0.2s ease;
}
.skip-nav:focus { transform: translateY(0); }

.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 20px; }
/* Accounts for announcement bar (≈40px) + sticky header (68px) + buffer */
section[id], div[id] { scroll-margin-top: 115px; }
.hidden { display: none !important; }
.text-center { text-align: center; }
.mt-8 { margin-top: 48px; }

/* ===========================
   TYPOGRAPHY
   =========================== */
.section-label {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--primary);
  background: var(--primary-light); padding: 5px 14px;
  border-radius: 50px; margin-bottom: 14px;
}
.light-label { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); }
.section-title {
  font-family: var(--serif); font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 700; line-height: 1.2; margin-bottom: 14px;
}
.light-title { color: #fff; }
.section-subtitle { font-size: 1rem; color: var(--muted); max-width: 520px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 52px; }

/* ===========================
   BUTTONS
   =========================== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary); color: #fff;
  padding: 13px 28px; border-radius: 50px;
  font-weight: 600; font-size: 0.95rem; transition: var(--ease);
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,107,138,0.35); }
.btn-glow { box-shadow: 0 0 0 0 rgba(26,107,138,0.4); animation: glowPulse 2.5s infinite; }
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(26,107,138,0.4); }
  50% { box-shadow: 0 0 0 10px rgba(26,107,138,0); }
}
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--primary);
  padding: 12px 28px; border-radius: 50px; font-weight: 600;
  font-size: 0.95rem; border: 2px solid var(--primary); transition: var(--ease);
}
.btn-outline:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }
.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: #fff; padding: 13px 24px;
  border-radius: 50px; font-weight: 600; font-size: 0.95rem; transition: var(--ease);
}
.btn-whatsapp:hover { background: #1ebe5e; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.4); }
.btn-lg { padding: 16px 34px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }
.btn-outline-sm {
  padding: 8px 16px; border-radius: 50px; border: 1.5px solid var(--primary);
  color: var(--primary); font-size: 0.85rem; font-weight: 600; transition: var(--ease);
}
.btn-outline-sm:hover { background: var(--primary); color: #fff; }
.btn-wa-sm {
  padding: 8px 16px; border-radius: 50px; background: var(--green);
  color: #fff; font-size: 0.85rem; font-weight: 600; transition: var(--ease);
}

/* ===========================
   SCROLL PROGRESS BAR
   =========================== */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  width: 0%; z-index: 9999; transition: width 0.1s linear;
  border-radius: 0 2px 2px 0;
}

/* ===========================
   ANNOUNCEMENT BAR (MARQUEE)
   =========================== */
.announcement-bar {
  background: var(--bg-dark); color: rgba(255,255,255,0.85);
  padding: 10px 0; overflow: hidden;
}
.marquee-track {
  display: flex; gap: 32px; white-space: nowrap;
  animation: marqueeScroll 28s linear infinite;
  font-size: 0.82rem; font-weight: 500;
  align-items: center;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 5px; }
.marquee-track svg { flex-shrink: 0; }
.marquee-track .sep { color: var(--accent); opacity: 0.6; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===========================
   HEADER
   =========================== */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border); transition: var(--ease);
}
.header.scrolled { box-shadow: var(--shadow); }
.nav-container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; height: 68px;
}
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-name { display: block; font-family: var(--serif); font-size: 1.1rem; font-weight: 700; line-height: 1.2; }
.logo-tag { display: block; font-size: 0.68rem; color: var(--muted); font-weight: 500; letter-spacing: 0.04em; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a { padding: 8px 12px; font-size: 0.88rem; font-weight: 500; color: var(--muted); border-radius: 8px; transition: var(--ease); }
.nav-links a:hover { color: var(--primary); background: var(--primary-light); }
.nav-mobile-cta { display: none; }
.nav-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-phone-link { display: flex; align-items: center; gap: 6px; font-size: 0.85rem; font-weight: 600; color: var(--primary); padding: 8px 10px; border-radius: 8px; transition: var(--ease); }
.nav-phone-link:hover { background: var(--primary-light); }
.nav-book { padding: 10px 20px; font-size: 0.88rem; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--ease); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  background: var(--bg-dark); overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(ellipse at 30% 60%, rgba(26,107,138,0.25) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(201,169,110,0.15) 0%, transparent 50%);
}
/* Mesh orbs */
.mesh-orb {
  position: absolute; border-radius: 50%; filter: blur(80px);
  animation: floatOrb 8s ease-in-out infinite;
}
.orb-1 { width: 600px; height: 600px; background: rgba(26,107,138,0.18); top: -200px; right: -100px; animation-delay: 0s; }
.orb-2 { width: 400px; height: 400px; background: rgba(201,169,110,0.12); bottom: -100px; left: 10%; animation-delay: -3s; }
.orb-3 { width: 300px; height: 300px; background: rgba(26,107,138,0.1); top: 30%; right: 30%; animation-delay: -6s; }
@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -30px); }
}
.hero-content {
  position: relative; z-index: 2;
  padding: clamp(60px, 10vh, 100px) 20px clamp(60px, 8vh, 80px);
  max-width: 700px;
}
.hero-pill-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.15); padding: 8px 18px;
  border-radius: 50px; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 24px;
  backdrop-filter: blur(10px);
}
.live-dot {
  width: 8px; height: 8px; background: #4ade80; border-radius: 50%;
  animation: livePulse 2s infinite;
}
@keyframes livePulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(74,222,128,0.5); }
  50% { box-shadow: 0 0 0 6px rgba(74,222,128,0); }
}
.hero-title {
  font-family: var(--serif); font-size: clamp(2.4rem, 6vw, 4.6rem);
  font-weight: 700; color: #fff; line-height: 1.1; margin-bottom: 20px;
}
.hero-title em {
  color: var(--accent); font-style: italic;
  position: relative; display: inline-block;
}
.hero-title em::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--accent), transparent);
  border-radius: 2px; opacity: 0.6;
}
.hero-subtitle {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem); color: rgba(255,255,255,0.72);
  max-width: 520px; margin-bottom: 36px; line-height: 1.75;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 44px; }

/* Glassmorphism trust pills */
.hero-trust-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.trust-pill {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(12px); border-radius: var(--r);
  padding: 10px 16px; transition: var(--ease);
}
.trust-pill:hover { background: rgba(255,255,255,0.12); }
.tp-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.9);
  display: flex; align-items: center; justify-content: center;
}
.trust-pill strong { display: block; color: #fff; font-size: 0.88rem; font-weight: 700; line-height: 1.2; }
.trust-pill span { display: block; font-size: 0.7rem; color: rgba(255,255,255,0.55); }

/* Hero floating doctor card */
.hero-doctor-card {
  position: absolute; bottom: 48px; right: 48px; z-index: 3;
  display: flex; align-items: center; gap: 12px;
  padding: 14px 20px; border-radius: var(--r-lg);
}
.glass-card {
  background: rgba(255,255,255,0.1); backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.18); box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.hdc-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem; color: #fff; flex-shrink: 0;
}
.hdc-info strong { display: block; color: #fff; font-size: 0.9rem; }
.hdc-info span { font-size: 0.75rem; color: rgba(255,255,255,0.6); }
.hdc-badge {
  background: rgba(74,222,128,0.2); color: #4ade80;
  font-size: 0.72rem; font-weight: 700; padding: 3px 10px; border-radius: 50px;
}

/* ===========================
   TRUST STRIP (scrolling)
   =========================== */
.trust-strip {
  background: var(--bg-soft); border-bottom: 1px solid var(--border);
  padding: 0; overflow: hidden;
}
.strip-inner { display: flex; align-items: stretch; overflow: hidden; }
.strip-label {
  flex-shrink: 0; padding: 16px 24px; font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted);
  border-right: 1px solid var(--border); background: #fff;
  display: flex; align-items: center; white-space: nowrap;
  position: relative; z-index: 2;
}
.strip-logos {
  display: flex; align-items: center; gap: 20px;
  padding: 14px 24px; overflow: hidden;
  animation: stripScroll 20s linear infinite;
  white-space: nowrap;
  flex: 1; min-width: 0;
}
.strip-logos span { font-size: 0.82rem; font-weight: 700; color: var(--muted); white-space: nowrap; }
.dot-sep { color: var(--accent); opacity: 0.5; }
@keyframes stripScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===========================
   ABOUT
   =========================== */
.about { padding: clamp(56px, 8vw, 96px) 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-img-col { position: relative; }
.about-img-frame { position: relative; margin-bottom: 20px; }
.doctor-photo {
  width: 100%; border-radius: var(--r-xl);
  object-fit: cover; display: block;
  box-shadow: var(--shadow-xl);
}
.doctor-img-placeholder {
  width: 100%; height: 480px; border-radius: var(--r-xl);
  background: linear-gradient(135deg, #e8f4f8, #c3dce8, #a8c8d8);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-xl);
}
.dip-inner { text-align: center; }
.dip-monogram {
  font-family: var(--serif); font-size: 3rem; font-weight: 700;
  color: var(--primary-dark); opacity: 0.4; margin-bottom: 8px;
}
.dip-inner p { font-size: 0.85rem; color: var(--primary-dark); opacity: 0.5; line-height: 1.5; }
.floating-award-badge {
  position: absolute; bottom: -16px; right: -16px;
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; border-radius: var(--r-lg);
  background: #fff; border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}
.floating-award-badge .glass-card { background: #fff; border: none; box-shadow: none; }
.award-emoji {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(245,158,11,0.12); color: #d97706;
  display: flex; align-items: center; justify-content: center;
}
.floating-award-badge strong { display: block; font-size: 0.85rem; font-weight: 700; }
.floating-award-badge span { font-size: 0.72rem; color: var(--muted); }
.floating-stat {
  position: absolute; top: 24px; left: -16px;
  background: var(--primary); border-radius: var(--r);
  padding: 14px 18px; text-align: center;
  box-shadow: var(--shadow-lg);
}
.fs-num { display: block; font-family: var(--serif); font-size: 1.8rem; font-weight: 700; color: #fff; line-height: 1; }
.fs-label { font-size: 0.7rem; color: rgba(255,255,255,0.75); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.about-creds-row { display: flex; flex-wrap: wrap; gap: 8px; }
.cred-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: 50px; font-size: 0.8rem; font-weight: 600; color: var(--text);
  transition: var(--ease);
}
.cred-chip:hover { border-color: var(--primary); color: var(--primary); }
.chip-icon { flex-shrink: 0; color: var(--primary); }
.about-specialty-tag { font-size: 0.88rem; color: var(--primary); font-weight: 600; margin-bottom: 18px; }
.about-desc { color: var(--muted); line-height: 1.8; margin-bottom: 14px; font-size: 0.95rem; }
.about-stats-row {
  display: flex; align-items: center; gap: 0;
  background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 20px 24px;
  margin: 28px 0;
}
.as-item { flex: 1; text-align: center; }
.as-num { display: block; font-family: var(--serif); font-size: 1.6rem; font-weight: 700; color: var(--primary); }
.as-label { font-size: 0.75rem; color: var(--muted); font-weight: 500; }
.as-div { width: 1px; height: 36px; background: var(--border); }
.about-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ===========================
   SERVICES
   =========================== */
.services { padding: clamp(56px, 8vw, 96px) 0; background: var(--bg-soft); }
.pill-tabs {
  display: flex; gap: 8px; justify-content: center;
  margin-bottom: 44px; flex-wrap: wrap;
}
.pill-tab {
  padding: 11px 26px; border-radius: 50px; font-weight: 600; font-size: 0.9rem;
  color: var(--muted); border: 2px solid var(--border); background: #fff; transition: var(--ease);
}
.pill-tab.active, .pill-tab:hover { background: var(--primary); color: #fff; border-color: var(--primary); box-shadow: 0 4px 16px rgba(26,107,138,0.25); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 44px; }
.sc-badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--primary); color: #fff;
  font-size: 0.68rem; font-weight: 700; padding: 4px 10px; border-radius: 50px;
}
.sc-icon-wrap {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--primary-light); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; transition: var(--ease);
}
.service-card:hover .sc-icon-wrap {
  background: var(--primary); color: #fff;
}
.service-card h3 { font-family: var(--serif); font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.service-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.7; margin-bottom: 18px; }
.sc-cta { font-size: 0.85rem; font-weight: 700; color: var(--primary); transition: var(--ease); }
.sc-cta:hover { letter-spacing: 0.03em; }
.services-bottom-cta { text-align: center; }
.services-bottom-cta p { color: var(--muted); margin-bottom: 16px; }

/* ===========================
   NUMBERS SECTION
   =========================== */
.numbers-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 56px 0;
}
.numbers-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; }
.number-item {
  text-align: center; padding: 28px 16px;
  position: relative;
}
.number-item:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 25%; height: 50%;
  width: 1px; background: rgba(255,255,255,0.15);
}
.n-num {
  font-family: var(--serif); font-size: 2.8rem; font-weight: 700;
  color: #fff; line-height: 1;
}
.n-sfx { font-size: 1.8rem; font-weight: 700; color: var(--accent); }
.n-label { display: block; font-size: 0.78rem; color: rgba(255,255,255,0.65); margin-top: 6px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; }

/* ===========================
   BEFORE / AFTER GALLERY — Interactive Slider
   =========================== */
.results { padding: 96px 0; background: var(--bg-soft); }

/* Shadcn-style info alert */
/* ===== TREATMENT OUTCOMES ===== */
.outcomes-stats {
  display: flex; justify-content: center; gap: 40px; flex-wrap: wrap;
  margin-bottom: 48px;
}
.os-stat {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.os-ring {
  position: relative; width: 80px; height: 80px;
}
.os-ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.os-ring circle {
  fill: none; stroke-width: 5; cx: 40; cy: 40; r: 34;
}
.os-ring circle:first-child { stroke: #e5e7eb; }
.os-ring .os-ring-fill {
  stroke: var(--primary); stroke-linecap: round;
  stroke-dasharray: 213.6; stroke-dashoffset: 213.6;
  transition: stroke-dashoffset 1.2s cubic-bezier(0.22,1,0.36,1);
}
.os-ring.animated .os-ring-fill { stroke-dashoffset: var(--offset); }
.os-ring-val {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.95rem; color: var(--heading);
}
.os-stat-label { font-size: 0.78rem; color: var(--muted); font-weight: 500; }

.outcomes-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 24px;
}
.outcome-card {
  background: #fff; border-radius: var(--r-lg); padding: 28px 24px;
  border: 1px solid var(--border); transition: var(--ease);
  position: relative; overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05), 0 1px 2px rgba(0,0,0,0.03);
}
.outcome-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 40px rgba(26,107,138,0.12), 0 4px 12px rgba(26,107,138,0.08);
  border-color: rgba(26,107,138,0.25);
}
.outcome-card::after {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px; background: var(--primary); opacity: 0; transition: var(--ease);
  border-radius: 0 4px 4px 0;
}
.outcome-card:hover::after { opacity: 1; }

.oc-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.oc-acne { background: rgba(239,68,68,0.08); color: #dc2626; }
.oc-aging { background: rgba(168,85,247,0.08); color: #7c3aed; }
.oc-pigment { background: rgba(245,158,11,0.08); color: #d97706; }
.oc-rosacea { background: rgba(236,72,153,0.08); color: #db2777; }

.oc-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 14px; color: var(--heading); }

.oc-bar-wrap {
  background: #f1f5f9; border-radius: 50px; height: 28px;
  overflow: hidden; margin-bottom: 8px; position: relative;
}
.oc-bar {
  height: 100%; border-radius: 50px;
  background: linear-gradient(135deg, var(--primary), #2d8db5);
  width: 0; transition: width 1.4s cubic-bezier(0.22,1,0.36,1);
  display: flex; align-items: center; justify-content: flex-end; padding-right: 12px;
}
.oc-bar.animated { width: var(--bar-w); }
.oc-bar span { font-size: 0.72rem; font-weight: 800; color: #fff; }
.oc-bar-label { font-size: 0.72rem; color: var(--muted); margin-bottom: 16px; }

.oc-details {
  display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px;
  padding-top: 16px; border-top: 1px solid var(--border);
}
.oc-detail {
  display: flex; justify-content: space-between; font-size: 0.78rem;
}
.oc-detail-key { color: var(--muted); font-weight: 500; }
.oc-detail span:last-child { color: var(--heading); font-weight: 600; }

.oc-book {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.82rem; font-weight: 700; color: var(--primary); transition: var(--ease);
}
.oc-book:hover { color: var(--primary-dark); gap: 10px; }

.outcomes-note {
  font-size: 0.72rem; color: var(--light); text-align: center;
  max-width: 640px; margin: 0 auto 32px; font-style: italic;
}

@media (max-width: 900px) {
  .outcomes-grid { grid-template-columns: repeat(2, 1fr); }
  .outcomes-stats { gap: 24px; }
}
@media (max-width: 600px) {
  .outcomes-grid { grid-template-columns: 1fr; }
  .outcomes-stats { gap: 16px; }
  .os-ring { width: 64px; height: 64px; }
  .os-ring-val { font-size: 0.82rem; }
}



/* ===========================
   SHADCN-INSPIRED ENHANCEMENTS
   =========================== */

/* Service cards — improved */
.service-card {
  background: #fff; border-radius: var(--r-lg);
  padding: 28px 24px; border: 1px solid var(--border); transition: var(--ease);
  position: relative; overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05), 0 1px 2px rgba(0,0,0,0.03);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 40px rgba(26,107,138,0.12), 0 4px 12px rgba(26,107,138,0.08);
  border-color: rgba(26,107,138,0.25);
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,107,138,0.04), transparent);
  opacity: 0; transition: var(--ease);
}
.service-card:hover::before { opacity: 1; }
/* Subtle left accent stripe on hover */
.service-card::after {
  content: ''; position: absolute; left: 0; top: 20%; bottom: 20%;
  width: 3px; background: var(--primary); border-radius: 0 3px 3px 0;
  opacity: 0; transition: var(--ease);
}
.service-card:hover::after { opacity: 1; }

/* Highlight card upgrade */
.highlight-card {
  border-color: var(--primary);
  background: linear-gradient(145deg, rgba(26,107,138,0.04) 0%, #fff 100%);
  box-shadow: 0 4px 20px rgba(26,107,138,0.12);
}

/* Process steps — shadcn card style */
.process-step {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 28px 20px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  transition: var(--ease);
  flex: 1; min-width: 180px; max-width: 220px; text-align: center;
}
.process-step:hover {
  border-color: rgba(26,107,138,0.2);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

/* Better form inputs — shadcn style */
.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px; border: 1.5px solid #e2e8f0;
  border-radius: 8px; font-size: 0.9rem; color: var(--text);
  background: #fafafa; transition: var(--ease); outline: none; resize: none;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary); background: #fff;
  box-shadow: 0 0 0 3px rgba(26,107,138,0.12);
}

/* Input placeholder color */
.form-group input::placeholder,
.form-group textarea::placeholder { color: #a0aec0; }

/* Custom select — larger tap area, custom caret */
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
  min-height: 48px;
}

/* Shadcn-style separator */
.section-sep {
  width: 48px; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px; margin: 16px auto 0;
}

/* Better credential chips */
.cred-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px; background: #fff; border: 1px solid var(--border);
  border-radius: var(--r); font-size: 0.8rem; font-weight: 600; color: var(--text);
  transition: var(--ease); box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.cred-chip:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-1px); }

/* Animated counter cards */
.number-item {
  text-align: center; padding: 32px 16px;
  position: relative; transition: var(--ease);
}
.number-item:hover { background: rgba(255,255,255,0.05); }

/* Platform review badges */
.pb {
  padding: 10px 18px; border-radius: var(--r);
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8); font-size: 0.82rem; font-weight: 600;
  transition: var(--ease); cursor: pointer;
}
.pb:hover { background: rgba(255,255,255,0.14); transform: translateY(-2px); }

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonials { padding: 96px 0; background: var(--bg-dark); }
.rating-bar { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 16px; }
.big-num { font-family: var(--serif); font-size: 3.2rem; font-weight: 700; color: var(--accent); }
.rating-meta .star-row { font-size: 1.4rem; color: var(--accent); }
.rating-meta span { font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.testimonials-slider { max-width: 780px; margin: 0 auto 32px; }
.tcard {
  display: none; padding: 40px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-xl); backdrop-filter: blur(12px);
  animation: fadeSlide 0.4s ease;
}
.tcard.active { display: block; }
@keyframes fadeSlide { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.tcard-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.tcard-stars { color: var(--accent); font-size: 1.1rem; }
.tcard-source { font-size: 0.72rem; font-weight: 700; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.08em; }
.tcard p { font-size: 1rem; color: rgba(255,255,255,0.82); line-height: 1.8; font-style: italic; margin-bottom: 24px; }
.tcard-author { display: flex; align-items: center; gap: 12px; }
.tca-av {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem; color: #fff; flex-shrink: 0;
}
.tcard-author strong { display: block; color: #fff; font-weight: 700; font-size: 0.9rem; }
.tcard-author span { font-size: 0.78rem; color: rgba(255,255,255,0.5); }
.slider-nav { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 40px; }
.snav-btn {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,0.08); color: #fff; font-size: 1.1rem;
  border: 1px solid rgba(255,255,255,0.15); transition: var(--ease);
}
.snav-btn:hover { background: var(--primary); border-color: var(--primary); }
.snav-dots { display: flex; gap: 8px; }
.sdot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.25); transition: var(--ease); cursor: pointer; }
.sdot.active { background: var(--accent); width: 24px; border-radius: 4px; }
.platform-badges { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
.pb {
  padding: 10px 18px; border-radius: var(--r);
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8); font-size: 0.82rem; font-weight: 600;
  transition: var(--ease);
}
.pb:hover { background: rgba(255,255,255,0.12); }

/* ===========================
   PROCESS
   =========================== */
.process { padding: clamp(56px, 8vw, 96px) 0; }
.process-track {
  display: flex; align-items: flex-start; justify-content: center;
  gap: 0; margin-bottom: 48px; flex-wrap: wrap;
}
.process-step { flex: 1; min-width: 180px; max-width: 220px; text-align: center; }
.ps-circle {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--primary-light); color: var(--primary);
  font-family: var(--serif); font-size: 1.1rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px; border: 2px solid rgba(26,107,138,0.2);
}
.ps-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--primary-light); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px; transition: var(--ease);
}
.process-step:hover .ps-icon {
  background: var(--primary); color: #fff;
}
.process-step h3 { font-weight: 700; font-size: 0.95rem; margin-bottom: 8px; }
.process-step p { font-size: 0.82rem; color: var(--muted); line-height: 1.6; }
.ps-connector {
  flex-shrink: 0; width: 40px; height: 2px; background: var(--border);
  margin-top: 36px; position: relative;
}
.ps-connector::after {
  content: '→'; position: absolute; right: -12px; top: -12px;
  color: var(--primary); font-size: 1rem; opacity: 0.5;
}

/* ===========================
   FAQ
   =========================== */
.faq { padding: clamp(56px, 8vw, 96px) 0; background: var(--bg-soft); }
.faq-layout { display: grid; grid-template-columns: 1fr 1.8fr; gap: 72px; align-items: start; }
.faq-sub { color: var(--muted); margin-bottom: 24px; font-size: 0.95rem; }
.faq-cta-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.faq-items { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: #fff; border-radius: var(--r); border: 1px solid var(--border); overflow: hidden; transition: var(--ease); }
.faq-item.open { border-color: var(--primary); box-shadow: 0 4px 20px rgba(26,107,138,0.1); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px; font-weight: 600; font-size: 0.92rem; text-align: left;
  color: var(--text); transition: var(--ease);
}
.faq-q:hover { color: var(--primary); }
.faq-icon {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--primary-light); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 700; flex-shrink: 0; transition: var(--ease);
}
.faq-item.open .faq-icon { background: var(--primary); color: #fff; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a p { padding: 0 20px 18px; font-size: 0.88rem; color: var(--muted); line-height: 1.75; }

/* ===========================
   BOOKING SECTION
   =========================== */
.booking { padding: clamp(56px, 8vw, 96px) 0; background: linear-gradient(135deg, var(--primary-dark) 0%, #1a6b8a 100%); }
.booking-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; }
.booking-sub { color: rgba(255,255,255,0.7); margin-bottom: 32px; font-size: 0.95rem; }
.contact-cards { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.cc-card {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r); padding: 14px 18px; transition: var(--ease); color: #fff;
}
.cc-card:hover:not(.no-hover) { background: rgba(255,255,255,0.15); transform: translateX(4px); }
.cc-icon {
  width: 42px; height: 42px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.call-bg { background: rgba(255,255,255,0.15); }
.wa-bg { background: var(--green); }
.email-bg { background: rgba(255,255,255,0.1); }
.hours-bg { background: rgba(201,169,110,0.25); }
.cc-card strong { display: block; font-weight: 700; font-size: 0.88rem; }
.cc-card span { font-size: 0.78rem; color: rgba(255,255,255,0.65); }
.location-card {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 16px 18px; border-radius: var(--r);
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
}
.glass-card-light { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); }
.lc-pin {
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--primary-light); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.location-card strong { display: block; color: #fff; font-weight: 700; font-size: 0.9rem; margin-bottom: 4px; }
.location-card span { font-size: 0.8rem; color: rgba(255,255,255,0.6); display: block; line-height: 1.6; }
.lc-dir { color: var(--accent); font-size: 0.82rem; font-weight: 600; margin-top: 6px; display: inline-block; }
.lc-hours { font-size: 0.75rem; color: var(--accent); font-weight: 600; margin-top: 2px; }
.location-cards { display: flex; flex-direction: column; gap: 10px; }
.online-bg { background: rgba(139, 92, 246, 0.25); }
.cc-card > div:last-child span { display: block; }

/* Booking Form */
.booking-form-wrap { background: #fff; border-radius: var(--r-xl); padding: 36px; box-shadow: var(--shadow-xl); }
.bf-header { margin-bottom: 24px; }
.bf-header h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 700; margin-bottom: 4px; }
.bf-header p { font-size: 0.85rem; color: var(--muted); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.form-group label { font-size: 0.78rem; font-weight: 700; color: var(--text); text-transform: uppercase; letter-spacing: 0.04em; }
.form-group input, .form-group select, .form-group textarea {
  padding: 12px 14px; border: 1.5px solid var(--border); border-radius: 8px;
  /* 16px minimum prevents iOS Safari auto-zoom on input focus */
  font-size: 1rem; color: var(--text); background: var(--bg-soft); transition: var(--ease); outline: none; resize: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--primary); background: #fff; box-shadow: 0 0 0 3px rgba(26,107,138,0.1);
}
.form-checks { display: flex; gap: 20px; margin-bottom: 18px; flex-wrap: wrap; }
.check-lbl { display: flex; align-items: center; gap: 7px; cursor: pointer; font-size: 0.85rem; color: var(--muted); }
.form-privacy { text-align: center; font-size: 0.72rem; color: var(--light); margin-top: 12px; }

/* ===========================
   FOOTER
   =========================== */
.footer { background: var(--bg-dark); color: rgba(255,255,255,0.65); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 44px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer .logo-name { color: #fff; }
.footer .logo-tag { color: rgba(255,255,255,0.4); }
.footer-brand p { font-size: 0.875rem; line-height: 1.7; margin: 14px 0 20px; color: rgba(255,255,255,0.5); }
.footer-socials { display: flex; gap: 8px; }
.fs-btn {
  width: 44px; height: 44px; border-radius: 8px;
  background: rgba(255,255,255,0.07); display: flex; align-items: center;
  justify-content: center; transition: var(--ease); color: rgba(255,255,255,0.65);
}
.fs-btn:hover { background: var(--primary); color: #fff; }
.footer-col h4 { color: #fff; font-weight: 700; font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul a { font-size: 0.85rem; color: rgba(255,255,255,0.5); transition: var(--ease); }
.footer-col ul a:hover { color: #fff; padding-left: 4px; }
.footer-info { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.footer-info p, .footer-info a { font-size: 0.85rem; color: rgba(255,255,255,0.5); transition: var(--ease); margin-bottom: 6px; }
.footer-info a:hover { color: #fff; }
.footer-hours { display: flex; flex-direction: column; gap: 6px; }
.fh-row { display: flex; justify-content: space-between; font-size: 0.8rem; color: rgba(255,255,255,0.45); }
.fh-row.closed span:last-child { color: #f87171; }
.footer-bottom { background: rgba(0,0,0,0.3); padding: 18px 0; }
.fb-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.fb-inner p { font-size: 0.75rem; color: rgba(255,255,255,0.35); }

/* ===========================
   FLOATING ACTION BUTTONS
   =========================== */
.fabs {
  position: fixed; bottom: 28px; right: 24px;
  z-index: 200; display: flex; flex-direction: column; gap: 10px; align-items: flex-end;
}
.fab {
  width: 54px; height: 54px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25); transition: var(--ease); position: relative;
}
.fab:hover { transform: scale(1.12); }
.fab:hover .fab-tip { opacity: 1; transform: translateX(0); }
.fab-tip {
  position: absolute; right: 64px;
  background: rgba(0,0,0,0.72); color: #fff; font-size: 0.75rem; font-weight: 600;
  padding: 5px 12px; border-radius: 6px; white-space: nowrap;
  opacity: 0; transform: translateX(8px); transition: var(--ease); pointer-events: none;
}
.fab-wa { background: var(--green); color: #fff; }
.fab-wa:hover { box-shadow: 0 4px 24px rgba(37,211,102,0.5); }
.fab-call { background: var(--primary); color: #fff; }
.fab-call:hover { box-shadow: 0 4px 24px rgba(26,107,138,0.5); }
.fab-book { background: var(--accent); color: #fff; }
.fab-book:hover { box-shadow: 0 4px 24px rgba(201,169,110,0.5); }

/* ===========================
   MOBILE STICKY BOTTOM BAR
   =========================== */
.mobile-cta-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 150; background: #fff; border-top: 1px solid var(--border);
  padding: 10px 16px 12px; gap: 8px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}
.mcb-btn {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 12px 8px; border-radius: 10px; font-size: 0.88rem; font-weight: 700; transition: var(--ease);
}
.mcb-call { background: var(--primary-light); color: var(--primary); }
.mcb-call:hover { background: var(--primary); color: #fff; }
.mcb-wa { background: rgba(37,211,102,0.12); color: #1a8a42; }
.mcb-wa:hover { background: var(--green); color: #fff; }
.mcb-book { background: var(--primary); color: #fff; }
.mcb-book:hover { background: var(--primary-dark); }

/* ===========================
   TOAST
   =========================== */
.toast {
  position: fixed; bottom: 28px; left: 24px; z-index: 300;
  background: #fff; border-radius: var(--r); padding: 14px 18px;
  display: flex; align-items: center; gap: 12px; box-shadow: var(--shadow-xl);
  border: 1px solid var(--border); transform: translateY(120px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); max-width: 300px;
}
.toast.show { transform: translateY(0); }
.toast-check {
  width: 34px; height: 34px; background: #d1fae5; color: #065f46;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 700; flex-shrink: 0; font-size: 0.9rem;
}
.toast strong { display: block; font-size: 0.88rem; }
.toast span { font-size: 0.76rem; color: var(--muted); }

/* ===========================
   RIPPLE EFFECT (shadcn-inspired)
   =========================== */
.btn-primary, .btn-whatsapp, .btn-outline, .mcb-btn {
  position: relative; overflow: hidden;
}
.ripple {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,0.35);
  transform: scale(0); animation: rippleAnim 0.55s linear;
  pointer-events: none;
}
@keyframes rippleAnim {
  to { transform: scale(4); opacity: 0; }
}

/* ===========================
   STAGGER REVEAL — delay injected dynamically by script.js
   =========================== */
.service-card, .process-step, .number-item, .cred-chip {
  will-change: opacity, transform;
}

/* ===========================
   FLOATING LABELS (shadcn-inspired)
   =========================== */
.form-group { position: relative; }
.form-group label {
  font-size: 0.78rem; font-weight: 700; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.04em;
  display: block; margin-bottom: 5px;
  transition: color 0.2s;
}
.form-group:focus-within label { color: var(--primary); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(26,107,138,0.1);
}

/* Service card icon — subtle spin on hover */
.service-card:hover .sc-icon-wrap {
  transform: scale(1.15) rotate(-6deg);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.sc-icon-wrap { transition: transform 0.3s ease; display: inline-block; }

/* Active nav link */
.nav-links a.nav-active { color: var(--primary) !important; background: var(--primary-light); }

/* ===========================
   RESPONSIVE — MOBILE FIRST
   =========================== */
@media (max-width: 1024px) {
  .about-grid, .faq-layout, .booking-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
  /* Nav — smooth slide-down animation */
  .nav-links {
    flex-direction: column; position: absolute;
    top: 68px; left: 0; right: 0; background: #fff;
    border-bottom: 1px solid var(--border); padding: 0 16px;
    gap: 4px; box-shadow: var(--shadow); z-index: 100;
    max-height: 0; overflow: hidden; opacity: 0; pointer-events: none;
    transition: max-height 0.38s cubic-bezier(0.4,0,0.2,1), opacity 0.28s ease, padding 0.3s ease;
  }
  .nav-links.open {
    max-height: 520px; opacity: 1; pointer-events: auto; padding: 12px 16px;
  }
  .hamburger { display: flex; }
  .nav-cta .nav-phone-link { display: none; }
  .nav-links a { padding: 12px 14px; border-radius: 8px; }
  .nav-mobile-cta { display: flex; gap: 8px; padding: 12px 14px 4px; }
  .header { position: sticky; }
  .nav-container { position: relative; }

  /* Hide desktop FABs on mobile (use bottom bar instead) */
  .fabs { display: none; }
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 72px; }

  /* Section spacing already handled by clamp() on each section */
  .section-header { margin-bottom: 36px; }

  /* Hero */
  .hero { min-height: auto; }
  .hero-title { font-size: clamp(2rem, 8vw, 3.2rem); }
  .hero-content { padding: 36px 20px 90px; }
  .hero-doctor-card { display: none; }
  .hero-trust-pills { gap: 8px; }
  .trust-pill { padding: 8px 12px; }

  /* About */
  .about-img-col { max-width: 100%; }
  .about-img-frame { margin-bottom: 16px; padding: 0; overflow: hidden; }
  .doctor-img-placeholder { height: 340px; }
  .doctor-photo { max-height: 380px; }
  .floating-stat { left: 8px; top: 16px; }
  .about-stats-row { flex-wrap: wrap; gap: 12px; padding: 16px; justify-content: center; }
  .as-item { min-width: 80px; }
  .as-div { display: none; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }


  /* Process */
  .process-track { flex-direction: column; align-items: center; gap: 0; }
  .ps-connector { width: 2px; height: 32px; margin: 4px auto; }
  .ps-connector::after { content: '↓'; right: -14px; top: 6px; }
  .process-step { max-width: 100%; width: 100%; }

  /* Trust strip label — hide on mobile to prevent crowding */
  .strip-label { display: none; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .fb-inner { flex-direction: column; text-align: center; }

  /* Booking form */
  .booking-form-wrap { padding: 24px 16px; }
  .form-row { grid-template-columns: 1fr; }
  .form-row .form-group { margin-bottom: 0; }

  /* Hero actions */
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-lg { width: 100%; justify-content: center; }

  .toast { left: 12px; right: 12px; max-width: none; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .hero-pill-badge { font-size: 0.68rem; }
  .about-creds-row { flex-direction: column; }

  /* Trust pills: single column on very small screens */
  .hero-trust-pills { flex-direction: column; }
  .trust-pill { width: 100%; }

  /* About stats: tighter on very small screens */
  .about-stats-row { padding: 14px 12px; }
  .as-num { font-size: 1.35rem; }

  /* Service pill tabs — stack vertically, full width */
  .pill-tabs { flex-direction: column; gap: 8px; }
  .pill-tab { width: 100%; justify-content: center; }

  /* FAQ CTA buttons — full width */
  .faq-cta-btns { flex-direction: column; gap: 10px; }
  .faq-cta-btns a { width: 100%; justify-content: center; text-align: center; }

  /* Footer hours rows — stack label and time on tiny screens */
  .footer-hours .fh-row { flex-direction: column; gap: 1px; }
  .footer-hours .fh-row span:first-child { font-weight: 600; }

  /* Section titles — slightly smaller */
  .section-title { font-size: clamp(1.5rem, 6vw, 2rem); }

  /* Process steps — tighter padding */
  .process-step { padding: 20px 14px; }

  /* Booking form — remove extra gap */
  .booking-form-wrap { padding: 20px 12px; }

  /* Contact cards — stack vertically */
  .contact-cards { flex-direction: column; }
  .cc-card { width: 100%; }

  /* Nav book button — hide on very small screens */
  .nav-book { display: none; }

  /* Services grid — single column on tiny screens */
  .services-grid { grid-template-columns: 1fr; }

  /* Process — hide connectors and tighten layout */
  .ps-connector { display: none; }

  /* FAQ layout — tighter spacing */
  .faq-layout { gap: 24px; }

  /* Footer — single column on tiny screens */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  /* Booking form rows — stack vertically */
  .form-row { flex-direction: column; gap: 0; }
}

/* ===========================
   MODERN SUBTLE EFFECTS
   =========================== */

/* Smooth section transitions — fade-in on scroll */
.scroll-reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.scroll-reveal.revealed {
  opacity: 1; transform: translateY(0);
}

/* Subtle gradient divider between sections */
section + section::before {
  content: ''; display: block; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  max-width: 600px; margin: 0 auto;
}
.booking + footer::before { display: none; }

/* Hover glow on CTA buttons */
.btn-primary { position: relative; overflow: hidden; }
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0; transition: opacity 0.3s ease;
}
.btn-primary:hover::before { opacity: 1; }

/* Card focus ring for accessibility */
.outcome-card:focus-within,
.service-card:focus-within,
.faq-item:focus-within {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Smooth image loading — fade in only after JS marks them loaded.
   Default state stays visible so images never get stuck invisible if JS fails. */
img[loading="lazy"].loaded { opacity: 1; transition: opacity 0.4s ease; }

/* Text selection color */
::selection { background: rgba(26,107,138,0.15); color: var(--heading); }

/* Pill tab SVG alignment */
.pill-tab { display: inline-flex; align-items: center; gap: 6px; }
.pill-tab svg { flex-shrink: 0; }

/* Better letter-spacing for headings */
.section-title { letter-spacing: -0.02em; }
.hero-title { letter-spacing: -0.03em; }

/* Smooth scrollbar (webkit) */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-soft); }
::-webkit-scrollbar-thumb {
  background: #c4cdd5; border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: #9ca3af; }

/* Mobile touch feedback */
@media (hover: none) {
  .service-card:active,
  .outcome-card:active,
  .faq-q:active,
  .cc-card:active { transform: scale(0.98); }
  .btn-primary:active,
  .btn-whatsapp:active { transform: scale(0.97); }
}

/* ===========================
   ACCESSIBILITY — FOCUS-VISIBLE
   =========================== */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}
.btn-primary:focus-visible,
.btn-whatsapp:focus-visible,
.btn-outline:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
}
.mcb-btn:focus-visible,
.fab:focus-visible { outline: 3px solid #fff; outline-offset: 2px; }
.pill-tab:focus-visible,
.faq-q:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; border-radius: 8px; }
.nav-links a:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }
.fs-btn:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; border-radius: 50%; }
a:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; border-radius: 4px; }

/* ===========================
   TOUCH TARGETS & INTERACTION
   =========================== */
.btn-primary, .btn-whatsapp, .btn-outline, .mcb-btn, .fab,
.pill-tab, .faq-q, .hamburger, .nav-links a, .fs-btn,
.lc-dir, .cc-card, .nav-book { touch-action: manipulation; }

/* Ensure minimum 44px touch targets (Apple HIG) */
.btn-primary, .btn-whatsapp, .btn-outline { min-height: 44px; }
.mcb-btn { min-height: 48px; }
.fs-btn { min-width: 44px; min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }
.hamburger { min-width: 44px; min-height: 44px; display: flex; align-items: center; justify-content: center; }

/* Safe-area inset for iPhone notch / home indicator */
.mobile-cta-bar { padding-bottom: max(12px, env(safe-area-inset-bottom)); }

/* ===========================
   PERFORMANCE HINTS
   =========================== */
.mesh-orb { will-change: transform; }
.live-dot { will-change: box-shadow; }
.marquee-track { will-change: transform; }
.scroll-progress { will-change: width; }

/* ===========================
   REDUCED MOTION
   — Respects prefers-reduced-motion: reduce
   — Disables all decorative animations for vestibular/motion-sensitive users
   =========================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .mesh-orb, .live-dot, .marquee-track, .scroll-progress,
  .btn-glow, .os-ring-fill, .oc-bar { animation: none !important; }
  .marquee-track { animation: none; overflow: hidden; }
  .scroll-reveal, .section-header { opacity: 1 !important; transform: none !important; }
}
