/* ===== MAULI CLINIC — GREEN THEME ===== */

:root {
  /* GREEN PALETTE */
  --primary: #2E8B57;
  --primary-light: #C8E6D9;
  --primary-dark: #1E6B40;
  --primary-glow: rgba(46,139,87,0.18);
  --primary-border: rgba(46,139,87,0.25);

  /* BACKGROUNDS */
  --bg: #F7FAF8;
  --bg2: #EDF4F0;
  --bg3: #E2EDE7;
  --bg4: #D6E6DD;

  /* TEXT — darkened for contrast compliance */
  --text: #1C3529;
  --text-muted: #4A6355;       /* darkened from #6B8070 for WCAG AA */
  --cream: #1C3529;

  /* BORDERS */
  --border: #C5DDD0;

  /* ACCENT */
  --green: #25D366;

  /* FONTS */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --radius: 6px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100%; }
img, svg, video, canvas { max-width: 100%; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 2px; }

/* ===== CONTAINER ===== */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 24px 0;
  transition: background var(--transition), padding var(--transition), backdrop-filter var(--transition);
}
.nav.scrolled {
  background: rgba(247,250,248,0.95);
  backdrop-filter: blur(20px);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(46,139,87,0.08);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}
.nav-logo .logo-symbol { color: var(--primary); font-size: 1rem; }
.nav-logo em { color: var(--primary); font-style: italic; }
.nav-links {
  display: flex;
  list-style: none;
  gap: 22px;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--primary); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.nav-admin {
  color: var(--text-muted);
  font-size: 0.75rem;
  opacity: 0.5;
}
.btn-book {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: var(--primary);
  padding: 9px 16px;
  border-radius: var(--radius);
  font-weight: 500;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-book:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px var(--primary-glow);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  transition: transform 0.3s;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--bg);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.77,0,0.18,1);
  padding: 80px 32px 48px;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu ul { list-style: none; text-align: center; width: 100%; }
.mobile-menu ul li { 
  margin: 0;
  border-bottom: 1px solid var(--border);
}
.mobile-menu ul li:first-child { border-top: 1px solid var(--border); }
.mobile-menu ul li a {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text);
  transition: color 0.3s, padding-left 0.3s;
  display: block;
  padding: 16px 8px;
  letter-spacing: 0.02em;
}
.mobile-menu ul li a:hover { color: var(--primary); padding-left: 12px; }
.mobile-menu .mobile-book {
  display: inline-block;
  margin-top: 32px;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--primary);
  color: #fff;
  padding: 14px 40px;
  border-radius: var(--radius);
  font-weight: 500;
  border: none;
}

/* NAV LOGO IMAGE */
.nav-logo-img {
  height: 36px;
  width: auto;
  max-width: 120px;
  display: block;
  mix-blend-mode: multiply;
  flex-shrink: 0;
  object-fit: contain;
}
@media (max-width: 768px) {
  .nav-logo-img {
    height: 30px;
    max-width: 90px;
    mix-blend-mode: normal;
  }
  .nav-logo {
    font-size: 1.1rem;
    gap: 7px;
    flex-shrink: 0;
    min-width: 0;
  }
  .nav-logo .logo-text {
    display: inline; /* show Mauli Clinic text on mobile */
    font-size: 1rem;
  }
  .nav-inner {
    padding: 0 16px;
    gap: 12px;
  }
}
@media (max-width: 480px) {
  .nav-logo-img {
    height: 28px;
    max-width: 80px;
  }
}

/* MOBILE MENU CLOSE BUTTON */
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  padding: 8px;
  color: var(--text);
  line-height: 1;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-close:hover { background: var(--bg2); }
.mobile-menu-close svg { display: block; }

/* ACH-ICON SVG SIZING */
.achievement-item .ach-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(46,139,87,0.08);
  border-radius: 12px;
  color: var(--primary);
  padding: 10px;
  margin-bottom: 12px;
}

/* CONTACT ICON SVG SIZING */
.contact-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(46,139,87,0.08);
  border-radius: 10px;
  color: var(--primary);
  padding: 9px;
  flex-shrink: 0;
}

/* FOOTER LOGO IMAGE */
.footer-logo-img {
  height: 44px;
  width: auto;
  margin-bottom: 12px;
  display: block;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #EAF4EE 0%, #F7FAF8 60%, #E2EDE7 100%);
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.52;
  filter: saturate(0.55) brightness(1.08);
}
#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  opacity: 0.18;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(46,139,87,0.10) 0%, transparent 65%),
              linear-gradient(180deg, rgba(234,244,238,0.38) 0%, rgba(247,250,248,0.48) 55%, var(--bg) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 120px 24px 80px;
}

/* ── Desktop: side-by-side layout ── */
.hero-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.hero-left {
  flex: 1;
  min-width: 0;
}
.hero-right {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* Opaque box around the two buttons */
.hero-cta-box {
  background: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(24px) saturate(1.8) brightness(1.1);
  -webkit-backdrop-filter: blur(24px) saturate(1.8) brightness(1.1);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-bottom-color: rgba(255,255,255,0.2);
  border-right-color: rgba(255,255,255,0.2);
  border-radius: 20px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 280px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.22),
    0 2px 8px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    inset 0 -1px 0 rgba(255, 255, 255, 0.1);
}
.hero-cta-label {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: #1C3529;
  margin: 0;
  line-height: 1.2;
  text-shadow: 0 1px 2px rgba(255,255,255,0.5);
}
.hero-cta-sub {
  font-size: 0.78rem;
  color: #3a5a48;
  letter-spacing: 0.05em;
  margin: 0 0 6px;
  text-shadow: 0 1px 2px rgba(255,255,255,0.4);
}
.btn-hero-cta {
  width: 100%;
  justify-content: center;
  text-align: center;
}

/* Mobile: hide right panel, show buttons inline */
@media (max-width: 900px) {
  .hero-layout {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }
  .hero-right { display: none; }
  /* show a simple inline buttons row on mobile instead */
  .hero-left::after {
    content: '';
  }
}

/* Mobile inline buttons (shown only on mobile) */
.hero-actions-mobile {
  display: none;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
@media (max-width: 900px) {
  .hero-actions-mobile { display: flex; }
}


.hero-tag {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 24px;
  font-weight: 500;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 300;
  line-height: 1.0;
  color: var(--text);
  margin-bottom: 28px;
}
.hero-title em {
  font-style: italic;
  color: var(--primary);
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 48px;
  max-width: 480px;
  line-height: 1.8;
}
.hero-sub span {
  color: var(--text);
  font-size: 0.9rem;
}
.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}
.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  right: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.hero-scroll-hint span {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--primary), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.3; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: #fff;
  padding: 14px 28px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: var(--radius);
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--primary-glow);
}
.btn-primary.btn-large { padding: 18px 36px; font-size: 1rem; }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  color: var(--text);
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
}
.btn-ghost:hover { color: var(--primary); border-color: var(--primary); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  background: transparent;
  border: 1.5px solid var(--primary-border);
  padding: 12px 28px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: var(--radius);
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}
.btn-secondary:hover {
  background: var(--primary-light);
  border-color: var(--primary);
}
.btn-line {
  display: inline-flex;
  align-items: center;
  color: var(--primary);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  gap: 8px;
  transition: gap 0.3s;
}
.btn-line:hover { gap: 14px; }

/* ===== MARQUEE ===== */
.intro-strip {
  background: var(--primary);
  padding: 14px 0;
  overflow: hidden;
}
.marquee-track { overflow: hidden; }
.marquee-inner {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}
.marquee-inner span {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}
.marquee-inner .dot { font-size: 0.6rem; opacity: 0.7; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== SECTIONS ===== */
.section { padding: 100px 0; }
.section-dark { background: var(--bg2); }
.section-tag {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
  font-weight: 600;
}
.section-tag.light { color: var(--primary); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--text);
}
.section-title em { font-style: italic; color: var(--primary); }
.section-title.light { color: var(--text); }
.section-body {
  color: var(--text-muted);
  line-height: 1.85;
  margin-top: 20px;
  max-width: 520px;
  font-size: 0.97rem;
}
.section-header.centered { text-align: center; margin-bottom: 60px; }

/* ===== ABOUT TEASER ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-stack { position: relative; }
.img-frame { border-radius: var(--radius); overflow: hidden; }
.img-frame-main { aspect-ratio: 4/5; max-width: 380px; }
.img-frame-accent {
  position: absolute;
  bottom: -30px;
  right: -40px;
  width: 180px;
  aspect-ratio: 1;
  border: 4px solid var(--bg);
}
.img-placeholder {
  width: 100%;
  height: 100%;
  background: var(--bg3);
  border: 2px dashed var(--primary-border);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}
.img-placeholder-sm { min-height: 120px; }
.placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  padding: 20px;
}
.ph-icon { font-size: 2rem; }
.placeholder-inner span { font-size: 0.82rem; color: var(--text-muted); font-weight: 500; }
.placeholder-inner small { font-size: 0.68rem; color: var(--text-muted); opacity: 0.5; }
.about-badge {
  position: absolute;
  top: 30px;
  right: -20px;
  background: var(--primary);
  color: #fff;
  padding: 16px 20px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 8px 30px var(--primary-glow);
}
.badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
}
.badge-text {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
  line-height: 1.4;
}
/* Stats card below the clinic image */
.about-stats-card {
  position: absolute;
  bottom: -24px;
  left: -20px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  z-index: 2;
}
.stat-item { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}
@media (max-width: 600px) {
  .about-stats-card {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: 16px;
    justify-content: center;
    width: 100%;
  }
  .about-badge {
    top: 16px;
    right: 10px;
  }
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 48px;
}
.service-card {
  background: #fff;
  padding: 40px 32px;
  border: 1px solid var(--border);
  transition: background 0.4s, border-color 0.4s, transform 0.3s, box-shadow 0.3s;
  cursor: default;
  border-radius: var(--radius);
}
.service-card:hover {
  background: var(--bg2);
  border-color: var(--primary-border);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px var(--primary-glow);
}
.service-icon { 
  font-size: 2rem; 
  margin-bottom: 20px; 
  width: 90px; height: 90px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(46,139,87,0.08);
  border-radius: 16px;
  color: var(--primary);
  overflow: hidden;
  padding: 0;
}
.service-icon img,
.service-full-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 12px;
}
.service-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.75; }
.centered-cta { text-align: center; }

/* ===== TRANSFORMATION TEASER ===== */
.transform-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.before-after-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--border);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(46,139,87,0.06);
}
.ba-side { flex: 1; position: relative; }
.ba-side .img-placeholder { aspect-ratio: 3/4; min-height: 180px; }
.ba-label {
  display: block;
  text-align: center;
  margin-top: 10px;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.ba-label.after-label { color: var(--primary); }
.ba-divider { font-size: 1.5rem; color: var(--primary); flex-shrink: 0; }

/* ===== GOOGLE REVIEWS SECTION ===== */
.reviews-section { background: var(--bg2); }

.google-reviews-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 28px;
  margin-bottom: 28px;
  gap: 16px;
  flex-wrap: wrap;
}
.google-reviews-left {
  display: flex;
  align-items: center;
  gap: 18px;
}
.google-logo-svg { width: 74px; height: 24px; flex-shrink: 0; }
.google-reviews-info { display: flex; flex-direction: column; gap: 4px; }
.google-reviews-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}
.google-reviews-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.google-rating-number {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.google-stars-row { display: flex; gap: 1px; }
.gstar { font-size: 0.95rem; color: #ccc; }
.gstar.filled { color: #F5A623; }
.google-reviews-count {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.view-on-google {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}
.view-on-google:hover { color: var(--primary-dark); }

/* Reviews Slider */
.reviews-slider-wrapper { position: relative; overflow: hidden; }
.reviews-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.review-card:hover {
  border-color: var(--primary-border);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px var(--primary-glow);
}
.review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.review-stars-dots { display: flex; gap: 2px; }
.google-dots { display: flex; gap: 4px; align-items: center; }
.gdot { width: 9px; height: 9px; border-radius: 50%; display: inline-block; }
.review-text {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 20px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.review-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.review-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}
.review-source {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  margin-top: 2px;
}

/* Slider dots — hidden on desktop */
.reviews-dots { display: none; }

/* ===== CTA ===== */
.cta-box {
  position: relative;
  text-align: center;
  padding: 80px 40px;
  border: 1px solid var(--primary-border);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(234,244,238,0.92) 0%, rgba(247,250,248,0.88) 100%),
    url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?w=1200&auto=format&fit=crop') center/cover no-repeat;
}
.cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, var(--primary-glow) 0%, transparent 70%);
  pointer-events: none;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--text);
  margin: 16px 0 20px;
  line-height: 1.1;
}
.cta-title em { font-style: italic; color: var(--primary); }
.cta-sub { color: var(--text-muted); margin-bottom: 36px; font-size: 0.97rem; }

/* ===== FOOTER ===== */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 40px;
}
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: 16px;
}
.footer-brand .logo-symbol { color: var(--primary); font-size: 0.9rem; }
.footer-brand em { color: var(--primary); font-style: italic; }
.footer-brand p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; max-width: 300px; }
.footer-links h4,
.footer-contact h4 {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 20px;
  font-weight: 600;
}
.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 10px; }
.footer-links ul li a { font-size: 0.88rem; color: var(--text-muted); transition: color 0.3s; }
.footer-links ul li a:hover { color: var(--primary); }
.footer-contact p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 10px; }
.footer-contact a { color: var(--primary); }
.footer-hours { font-size: 0.78rem; color: var(--text-muted); opacity: 0.6; margin-top: 8px !important; }
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--border);
  color: var(--text-muted);
  transition: background 0.3s, color 0.3s, transform 0.2s;
}
.footer-social a:hover { transform: translateY(-2px); }
.footer-social a[aria-label="Facebook"]:hover { background: #1877F2; color: white; }
.footer-social a[aria-label="Instagram"]:hover { background: #E1306C; color: white; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  opacity: 0.8;
}

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  background: var(--green);
  color: white;
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
.wa-label {
  display: none;
  position: absolute;
  right: 68px;
  background: var(--bg2);
  color: var(--text);
  font-size: 0.75rem;
  padding: 6px 12px;
  border-radius: var(--radius);
  white-space: nowrap;
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.wa-float:hover .wa-label { display: block; }

/* ===== REVEAL ANIMATIONS ===== */
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  animation: revealUp 0.8s ease forwards;
  animation-delay: var(--d, 0s);
}
@keyframes revealUp {
  to { opacity: 1; transform: translateY(0); }
}
.scroll-reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.7s ease var(--sd, 0s), transform 0.7s ease var(--sd, 0s);
}
.scroll-reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== PAGE HEADER (inner pages) ===== */
.page-header {
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  background: linear-gradient(180deg, #EAF4EE 0%, var(--bg) 100%);
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(46,139,87,0.10) 0%, transparent 60%);
}
.page-header .section-tag { margin-bottom: 16px; }
.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text);
}
.page-header h1 em { font-style: italic; color: var(--primary); }
.page-header p {
  color: var(--text-muted);
  max-width: 520px;
  margin: 20px auto 0;
  font-size: 1rem;
  line-height: 1.8;
}

/* ===== DOCTOR CARD ===== */
.doctor-section { padding: 100px 0; }
.doctor-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.doctor-photo {
  aspect-ratio: 3/4;
  background: var(--bg3);
  border: 2px dashed var(--primary-border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.doctor-photo img { width: 100%; height: 100%; object-fit: cover; }
.doctor-photo-placeholder .placeholder-inner { gap: 12px; }
.doctor-photo-placeholder .ph-icon { font-size: 3rem; }
.doctor-info h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 6px;
}
.doctor-title {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 28px;
  font-weight: 600;
}
.doctor-bio { color: var(--text-muted); line-height: 1.85; margin-bottom: 16px; font-size: 0.97rem; }
.achievements {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 36px 0;
}
.achievement-item {
  background: #fff;
  border: 1px solid var(--border);
  padding: 20px;
  border-radius: var(--radius);
}
.achievement-item .ach-icon { font-size: 1.5rem; margin-bottom: 10px; }
.achievement-item h4 { font-size: 0.85rem; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.achievement-item p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; }

/* ===== SERVICES PAGE ===== */
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-full-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 40px 36px;
  border-radius: var(--radius);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  display: flex;
  gap: 24px;
}
.service-full-card:hover {
  border-color: var(--primary-border);
  transform: translateX(4px);
  box-shadow: 0 4px 20px var(--primary-glow);
}
.service-full-icon { 
  font-size: 2.4rem; 
  flex-shrink: 0;
  width: 90px; height: 90px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(46,139,87,0.08);
  border-radius: 16px;
  color: var(--primary);
  overflow: hidden;
  padding: 0;
}
.service-full-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 10px;
}
.service-full-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; }

/* ===== TRANSFORMATION PAGE ===== */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-bottom: 80px;
}
.case-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.case-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-border);
  box-shadow: 0 12px 32px var(--primary-glow);
}
.case-images { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.case-img {
  aspect-ratio: 4/5;
  background: var(--bg3);
  border: 1px dashed var(--primary-border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.case-img .placeholder-inner { padding: 12px; }
.case-img .ph-icon { font-size: 1.5rem; }
.case-body { padding: 24px; }
.case-condition {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
  font-weight: 600;
}
.case-body h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--text);
  margin-bottom: 10px;
}
.case-body p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; }
.case-duration {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.72rem;
  background: var(--primary-light);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid var(--primary-border);
  font-weight: 500;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  padding: 80px 0;
}
.contact-details h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--text);
  margin-bottom: 32px;
  font-weight: 300;
}
.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}
.contact-icon {
  width: 44px; height: 44px;
  background: var(--primary-light);
  border: 1px solid var(--primary-border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-item-text h4 {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 4px;
  font-weight: 600;
}
.contact-item-text p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }
.contact-item-text a { color: var(--primary); transition: opacity 0.3s; }
.contact-item-text a:hover { opacity: 0.7; }
.contact-wa-box {
  background: #fff;
  border: 1px solid var(--border);
  padding: 40px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 4px 20px rgba(46,139,87,0.06);
}
.contact-wa-box h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--text);
  margin-bottom: 12px;
}
.contact-wa-box p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 28px; line-height: 1.7; }
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: white;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  transition: opacity 0.3s, transform 0.2s;
}
.btn-wa:hover { opacity: 0.9; transform: translateY(-2px); }

/* ===== ADMIN PAGE ===== */
.admin-coming {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.admin-coming-inner {
  padding: 60px 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  max-width: 480px;
  box-shadow: 0 4px 24px rgba(46,139,87,0.08);
}
.admin-coming-inner .ph-icon { font-size: 3rem; margin-bottom: 20px; display: block; }
.admin-coming-inner h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--text);
  margin-bottom: 12px;
}
.admin-coming-inner p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 80px; }
  .about-img-stack { max-width: 420px; margin: 0 auto; }
  .transform-inner { grid-template-columns: 1fr; }
  .doctor-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .btn-book { display: none; }
  .nav-toggle { display: flex; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  /* Reviews mobile slider */
  .reviews-slider-wrapper { overflow: visible; }
  .reviews-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding-bottom: 4px;
    scrollbar-width: none;
  }
  .reviews-slider::-webkit-scrollbar { display: none; }
  .review-card {
    min-width: calc(85vw - 36px);
    max-width: calc(85vw - 36px);
    scroll-snap-align: start;
    flex-shrink: 0;
  }
  .reviews-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
  }
  .rdot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
  }
  .rdot.active {
    background: var(--primary);
    transform: scale(1.25);
  }
  .google-reviews-bar { padding: 14px 16px; }
  .google-reviews-count { display: none; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .footer-brand p { max-width: 100%; }
  .footer { padding: 40px 0 24px; }
  .cases-grid { grid-template-columns: 1fr; }
  .services-full-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-scroll-hint { display: none; }
  .achievements { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .before-after-card { flex-direction: column; }
  .hero-stats { gap: 20px; }
  .stat-num { font-size: 1.7rem; }
  .about-img-stack { max-width: 100%; }
  .about-badge { top: 12px; right: 8px; padding: 12px 14px; }
  .badge-num { font-size: 1.5rem; }
  .section { padding: 60px 0; }
  .hero-title { font-size: clamp(2.4rem, 8vw, 3.6rem); }
  .hero-sub { font-size: 0.95rem; }
  .container { padding: 0 18px; }
  .footer-grid { grid-template-columns: 1fr; }
}
/* ===== VIDEO EMBED ===== */
.video-section { padding-top: 80px; padding-bottom: 80px; }
.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0,0,0,0.15);
  background: #000;
}
.video-wrapper::before {
  content: '';
  display: block;
  padding-top: 56.25%; /* 16:9 */
}
.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.centered-text { text-align: center; max-width: 600px; margin-left: auto; margin-right: auto; }
.clinic-photos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 600px) {
  .clinic-photos-grid { grid-template-columns: 1fr; }
  .video-wrapper { border-radius: 10px; }
}

/* ===== CONTACT PAGE VIDEO SECTION ===== */
.contact-video-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.contact-video-embed .video-wrapper {
  max-width: 100%;
}
.contact-video-text .section-title.light {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}
.contact-video-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 28px;
}
.contact-video-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cvp-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.cvp-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.cvp-item strong {
  display: block;
  color: var(--text);
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.cvp-item p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 900px) {
  .contact-video-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
