/* ============================================================
   JOGI ASTRO HEAL — Revamped Stylesheet
   Design System: Libre Baskerville (headings) + EB Garamond (body)
   Style: Sacred Earth & Stars | Conversion-Optimised
   ============================================================ */

/* 1. CUSTOM PROPERTIES */
:root {
  /* Brand Colors — Sacred Earth & Stars */
  --bg:          #0E0A08;
  --bg-surface:  #130E0A;
  --bg-card:     #1A1208;
  --bg-card-alt: #1F1510;
  --gold:        #C8892A;
  --gold-light:  #E09A35;
  --gold-pale:   #EFCB7D;
  --gold-dim:    rgba(200, 137, 42, 0.10);
  --gold-border: rgba(200, 137, 42, 0.22);
  --cream:       #F5ECD7;
  --cream-body:  #C4A882;
  --cream-muted: #7A6A52;
  --white:       #F9F4EC;
  --danger:      #E05454;
  --success:     #4DAB7A;

  /* Fonts — Sacred Earth & Stars pairing */
  --font-display: 'Libre Baskerville', Georgia, serif;
  --font-body:    'EB Garamond', Georgia, serif;

  /* Spacing — 8pt grid */
  --sp-1: 8px;
  --sp-2: 16px;
  --sp-3: 24px;
  --sp-4: 32px;
  --sp-5: 40px;
  --sp-6: 48px;
  --sp-8: 64px;
  --sp-10: 80px;
  --sp-12: 96px;
  --sp-16: 128px;

  /* Layout */
  --header-h: 78px;
  --max-w:    1200px;
  --radius:   16px;
  --radius-sm: 10px;

  /* Motion — from Motion lib principles */
  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in:     cubic-bezier(0.5, 0, 1, 0.5);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-micro:   160ms;
  --dur-fast:    240ms;
  --dur-mid:     380ms;
  --dur-slow:    560ms;
}

/* 2. RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 1.125rem; /* 18px — EB Garamond reads larger, needs slightly more base size */
  font-weight: 400;
  line-height: 1.8;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--dur-micro) var(--ease-out);
}
a:hover { color: var(--gold-light); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--cream);
  letter-spacing: -0.01em;
}

p { color: var(--cream-body); }

/* 3. UTILITIES */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-3);
}

.section { padding: var(--sp-16) 0; }
.section-sm { padding: var(--sp-10) 0; }

.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

.eyebrow {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: var(--sp-2);
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin-bottom: var(--sp-2);
  font-weight: 700;
}

.section-subtitle {
  color: var(--cream-body);
  font-size: 1.1rem;
  max-width: 600px;
  line-height: 1.8;
}

.gold-line {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: var(--sp-2) auto;
}

/* Fade-in scroll animations */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fd1 { transition-delay: 80ms; }
.fd2 { transition-delay: 160ms; }
.fd3 { transition-delay: 240ms; }
.fd4 { transition-delay: 320ms; }
.fd5 { transition-delay: 400ms; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 1rem 2.25rem;
  border-radius: 50px;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease-out);
  white-space: nowrap;
  line-height: 1;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 60%, #8A5A10 100%);
  color: #1A0800;
  border-color: transparent;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(200, 137, 42, 0.25);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(200, 137, 42, 0.4);
  color: #100500;
  background: linear-gradient(135deg, var(--gold-pale) 0%, var(--gold-light) 60%, var(--gold) 100%);
}

.btn-primary:active { transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold-dim);
  color: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(200, 137, 42, 0.12);
}

.btn svg { flex-shrink: 0; }

/* ============================================================
   URGENCY STRIP — fixed at very top
   ============================================================ */
:root { --strip-h: 42px; }

.urgency-strip {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--strip-h);
  background: linear-gradient(90deg, #100B08, var(--bg-surface), #100B08);
  border-bottom: 1px solid var(--gold-border);
  padding: 0 var(--sp-6);
  z-index: 1002;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  flex-wrap: nowrap;
}

.urgency-strip p {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--cream-body);
  white-space: nowrap;
  margin: 0;
}

.urgency-strip strong { color: var(--gold-light); }

/* ============================================================
   HEADER — sits below urgency strip
   ============================================================ */
.header {
  position: fixed;
  top: var(--strip-h); left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(14, 10, 8, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(200,137,42,0.08);
  transition: background var(--dur-mid) var(--ease-out),
              box-shadow var(--dur-mid) var(--ease-out),
              top var(--dur-mid) var(--ease-out);
}

.header.scrolled {
  background: rgba(14, 10, 8, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--gold-border);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
}

/* When strip is removed or absent, header slides to top */
.header.no-strip { top: 0; }

/* Inner pages have no strip — handled via JS on load */

/* CRITICAL: container inside header must fill full width so
   justify-content: space-between separates logo from nav-links */
.header .container {
  width: 100%;
  display: flex;
  align-items: center;
}

.header .nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.01em;
}

.logo-mark {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}

.logo-text span { color: var(--gold); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.25rem;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-body);
  position: relative;
  padding-bottom: 4px;
  transition: color var(--dur-micro) var(--ease-out);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--dur-fast) var(--ease-out);
}

.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--cream);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
}

.hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 768px) {
  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: calc(var(--strip-h) + var(--header-h));
    left: 0; right: 0;
    flex-direction: column;
    background: rgba(14, 10, 8, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 1.5rem var(--sp-3);
    gap: 0;
    max-height: calc(100vh - var(--strip-h) - var(--header-h));
    overflow-y: auto;
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--dur-mid) var(--ease-out), opacity var(--dur-fast) var(--ease-out);
    border-bottom: 1px solid var(--gold-border);
    z-index: 999;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-links a {
    font-size: 1rem;
    color: var(--cream);
    padding: 10px 0;
    display: block;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .nav-links a:last-child { border-bottom: none; }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--bg);
  padding-top: calc(var(--strip-h) + var(--header-h));
}

#star-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(60px);
}
.hg-top {
  width: 80vw; height: 60vh; max-width: 900px;
  top: -10vh; left: 50%; transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(200,137,42,0.08) 0%, transparent 65%);
}
.hg-bl {
  width: 500px; height: 600px;
  bottom: -100px; left: -80px;
  background: radial-gradient(ellipse, rgba(139,69,19,0.18) 0%, transparent 65%);
}
.hg-br {
  width: 400px; height: 500px;
  bottom: 0; right: -60px;
  background: radial-gradient(ellipse, rgba(200,137,42,0.08) 0%, transparent 65%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
  padding: 0 var(--sp-3);
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-border);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: var(--sp-4);
  backdrop-filter: blur(10px);
  background: rgba(200,137,42,0.05);
}

.hero-pill-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 2.5s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.hero h1 {
  font-size: clamp(2.75rem, 7.5vw, 5.5rem);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: var(--sp-3);
  color: var(--white);
  text-shadow: 0 2px 40px rgba(0,0,0,0.5);
}

.hero h1 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-pale) 0%, var(--gold-light) 40%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: var(--cream-body);
  max-width: 620px;
  margin: 0 auto var(--sp-5);
  line-height: 1.8;
  font-weight: 400;
}

.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero-trust {
  margin-top: var(--sp-5);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--cream-muted);
  letter-spacing: 0.04em;
}

.hero-trust-item svg { color: var(--gold); flex-shrink: 0; }

.scroll-hint {
  position: absolute;
  bottom: var(--sp-4);
  left: 50%;
  transform: translateX(-50%);
  color: rgba(200,137,42,0.45);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: scrollBounce 2.5s ease-in-out infinite;
  z-index: 1;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   PAIN POINT SECTION (PAS Formula)
   ============================================================ */
.pain-section {
  background: var(--bg-surface);
  padding: var(--sp-12) 0;
  position: relative;
  overflow: hidden;
}

.pain-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(200,137,42,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.pain-intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--sp-8);
}

.pain-intro .section-title { font-size: clamp(1.75rem, 4vw, 2.6rem); }
.pain-intro p { font-size: 1.05rem; margin-top: var(--sp-2); }

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
}

.pain-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: var(--radius);
  padding: var(--sp-5) var(--sp-4);
  position: relative;
  transition: all var(--dur-mid) var(--ease-out);
}

.pain-card::before {
  content: '';
  position: absolute;
  top: 0; left: var(--sp-5);
  width: 32px; height: 2px;
  background: var(--gold);
  border-radius: 0 0 2px 2px;
}

.pain-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-border);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}

.pain-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(200,137,42,0.12);
  line-height: 1;
  margin-bottom: var(--sp-2);
}

.pain-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--cream);
}

.pain-card p { font-size: 0.95rem; color: var(--cream-body); line-height: 1.7; }

.pain-solution {
  text-align: center;
  margin-top: var(--sp-8);
  padding: var(--sp-5) var(--sp-4);
  background: linear-gradient(135deg, rgba(200,137,42,0.06) 0%, transparent 70%);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.pain-solution p {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-style: italic;
  color: var(--cream);
  line-height: 1.6;
}

.pain-solution strong { color: var(--gold-light); }

@media (max-width: 768px) { .pain-grid { grid-template-columns: 1fr; } }

/* ============================================================
   ABOUT SNIPPET (BAB Formula)
   ============================================================ */
.about-snippet { background: var(--bg); }

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--sp-12);
  align-items: center;
}

.about-img-side { position: relative; }

.about-img-box {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  background: linear-gradient(145deg, #1F1610 0%, #130E0A 100%);
  border: 1px solid var(--gold-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--cream-muted);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-img-box svg { opacity: 0.3; }

.about-img-accent {
  position: absolute;
  inset: -12px;
  border: 1px solid rgba(200,137,42,0.12);
  border-radius: calc(var(--radius) + 10px);
  pointer-events: none;
}

.about-stat-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  padding: var(--sp-2) var(--sp-3);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.about-stat-badge .stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.about-stat-badge .stat-lbl {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--cream-muted);
  line-height: 1.4;
  max-width: 70px;
}

.about-text-side { display: flex; flex-direction: column; gap: var(--sp-3); }

.about-text-side h2 { font-size: clamp(1.9rem, 4vw, 3rem); }

.about-text-side p { font-size: 1.05rem; line-height: 1.85; }

.about-text-side .highlight {
  background: linear-gradient(135deg, rgba(200,137,42,0.08) 0%, transparent 80%);
  border-left: 2px solid var(--gold);
  padding: var(--sp-2) var(--sp-3);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.about-text-side .highlight p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--cream);
}

@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; gap: var(--sp-8); }
  .about-stat-badge { bottom: var(--sp-2); right: var(--sp-2); }
}

/* ============================================================
   SERVICES SECTION (FAB Formula)
   ============================================================ */
.services { background: var(--bg-surface); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-2);
  margin-top: var(--sp-8);
}

.service-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: var(--radius);
  padding: var(--sp-5) var(--sp-3) var(--sp-4);
  text-align: left;
  transition: all var(--dur-mid) var(--ease-out);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--dur-fast) var(--ease-out);
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(200,137,42,0.3);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 40px rgba(200,137,42,0.04);
  background: var(--bg-card-alt);
}

.service-card:hover::after { opacity: 1; }

.service-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(200,137,42,0.1) 0%, rgba(200,137,42,0.03) 100%);
  border: 1px solid rgba(200,137,42,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-2);
  color: var(--gold);
  transition: all var(--dur-fast) var(--ease-out);
}

.service-card:hover .service-icon-wrap {
  background: linear-gradient(135deg, rgba(200,137,42,0.18) 0%, rgba(200,137,42,0.06) 100%);
  border-color: rgba(200,137,42,0.3);
}

.service-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 6px;
}

.service-desc {
  font-size: 0.875rem;
  color: var(--cream-body);
  line-height: 1.65;
}

.service-arrow {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-8px);
  transition: all var(--dur-fast) var(--ease-out);
}

.service-card:hover .service-arrow {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

/* ============================================================
   HOW IT WORKS (Process Section)
   ============================================================ */
.process-section { background: var(--bg); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
  margin-top: var(--sp-8);
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(100% / 6);
  width: calc(100% * 2 / 3);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
  pointer-events: none;
}

.process-step {
  text-align: center;
  padding: var(--sp-5) var(--sp-3);
  position: relative;
}

.step-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-3);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
  transition: all var(--dur-mid) var(--ease-out);
}

.process-step:hover .step-num {
  background: linear-gradient(135deg, rgba(200,137,42,0.15) 0%, rgba(200,137,42,0.05) 100%);
  border-color: var(--gold);
  transform: scale(1.08);
}

.process-step h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.process-step p { font-size: 0.92rem; color: var(--cream-body); line-height: 1.7; }

@media (max-width: 768px) {
  .process-steps { grid-template-columns: 1fr; }
  .process-steps::before { display: none; }
}

/* ============================================================
   WHY CHOOSE US (Counter Animations)
   ============================================================ */
.why-us {
  background: var(--bg-surface);
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 80% 50%, rgba(200,137,42,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-2);
  margin-top: var(--sp-8);
}

.why-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: var(--radius);
  padding: var(--sp-5) var(--sp-3);
  text-align: center;
  transition: all var(--dur-mid) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--dur-fast) var(--ease-out);
}

.why-card:hover {
  transform: translateY(-5px);
  border-color: rgba(200,137,42,0.2);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}

.why-card:hover::before { opacity: 1; }

.why-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--gold-dim);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--sp-3);
  color: var(--gold);
}

.why-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  display: block;
  margin-bottom: 4px;
}

.why-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--cream-body);
  line-height: 1.4;
  letter-spacing: 0.02em;
}

@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .why-grid { grid-template-columns: 1fr; } }

/* ============================================================
   TESTIMONIALS (Social Proof Pattern)
   ============================================================ */
.testimonials { background: var(--bg); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
  margin-top: var(--sp-8);
}

.t-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius);
  padding: var(--sp-5) var(--sp-4);
  position: relative;
  transition: all var(--dur-mid) var(--ease-out);
  display: flex;
  flex-direction: column;
}

.t-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200,137,42,0.25);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}

.t-quote-mark {
  font-family: Georgia, serif;
  font-size: 5rem;
  color: rgba(200,137,42,0.1);
  line-height: 1;
  position: absolute;
  top: var(--sp-2);
  right: var(--sp-3);
  pointer-events: none;
  user-select: none;
}

.t-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  margin-bottom: var(--sp-2);
}

.t-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--cream);
  line-height: 1.75;
  margin-bottom: var(--sp-3);
  flex: 1;
  position: relative;
  z-index: 1;
}

.t-result {
  background: rgba(200,137,42,0.07);
  border-left: 2px solid var(--gold);
  padding: 8px 12px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: var(--sp-3);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.02em;
}

.t-author { display: flex; align-items: center; gap: 10px; }

.t-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #5A2E08);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: #160800;
  flex-shrink: 0;
}

.t-name { font-weight: 600; font-size: 0.9rem; color: var(--cream); }
.t-location { font-size: 0.78rem; color: var(--cream-muted); }
.t-service { font-size: 0.72rem; font-weight: 500; color: var(--gold); margin-top: 2px; }

@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; } }
@media (min-width: 600px) and (max-width: 899px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   CONTACT / FORM (Cost of Inaction + AIDA)
   ============================================================ */
.contact-section { background: var(--bg-surface); }

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: var(--sp-12);
  align-items: start;
}

.contact-text { display: flex; flex-direction: column; gap: var(--sp-3); }

.contact-text h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }

.contact-text p { font-size: 1.05rem; line-height: 1.85; }

.inaction-box {
  background: linear-gradient(135deg, rgba(224,84,84,0.08) 0%, transparent 80%);
  border: 1px solid rgba(224,84,84,0.2);
  border-radius: var(--radius-sm);
  padding: var(--sp-3) var(--sp-4);
}

.inaction-box p {
  font-size: 0.92rem;
  color: #F09090;
  line-height: 1.65;
}

.inaction-box strong { color: #FFAAAA; }

.contact-details { display: flex; flex-direction: column; gap: var(--sp-2); margin-top: var(--sp-1); }

.contact-detail {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.cd-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.cd-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
}

.cd-val { color: var(--cream-body); font-size: 0.95rem; }

/* Form Card */
.form-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: var(--sp-6) var(--sp-5);
  position: relative;
  overflow: hidden;
}

.form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.form-card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--sp-4);
  color: var(--cream);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2);
  margin-bottom: var(--sp-2);
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: var(--sp-2);
}

.form-group label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  outline: none;
  width: 100%;
  transition: border-color var(--dur-fast) var(--ease-out),
              background var(--dur-fast) var(--ease-out);
  -webkit-appearance: none;
  appearance: none;
  min-height: 48px; /* touch target */
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(200,137,42,0.5);
  background: rgba(200,137,42,0.04);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(181, 170, 153, 0.35);
}

.form-group select { cursor: pointer; }
.form-group select option { background: var(--bg-card); color: var(--cream); }
.form-group textarea { resize: vertical; min-height: 120px; }

.form-submit-btn {
  width: 100%;
  justify-content: center;
  padding: 1.1rem;
  font-size: 0.88rem;
  margin-top: var(--sp-1);
  border-radius: var(--radius-sm);
}

.form-privacy {
  margin-top: 10px;
  text-align: center;
  font-size: 0.75rem;
  color: var(--cream-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.form-privacy svg { color: var(--gold); flex-shrink: 0; }

.form-success {
  display: none;
  text-align: center;
  padding: var(--sp-2);
  color: var(--gold);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  margin-top: var(--sp-2);
}

@media (max-width: 900px) {
  .contact-wrap { grid-template-columns: 1fr; gap: var(--sp-8); }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: var(--sp-4) var(--sp-3); }
}

/* ============================================================
   PAGE HERO BANNER (inner pages)
   ============================================================ */
.page-hero {
  padding-top: calc(var(--strip-h) + var(--header-h) + 80px);
  padding-bottom: 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(200,137,42,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 50% 60% at 10% 100%, rgba(139,69,19,0.09) 0%, transparent 55%);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,248,200,0.3) 1px, transparent 1px),
    radial-gradient(circle, rgba(255,248,200,0.15) 1px, transparent 1px);
  background-size: 80px 80px, 40px 40px;
  background-position: 0 0, 20px 20px;
  opacity: 0.15;
  pointer-events: none;
}

.page-hero-content { position: relative; z-index: 1; }

.page-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: var(--sp-2);
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--cream-muted);
  margin-top: var(--sp-2);
}

.breadcrumb a { color: var(--gold); }
.breadcrumb span { opacity: 0.4; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.story-section { background: var(--bg); }

.story-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--sp-12);
  align-items: start;
}

.story-text p { font-size: 1.05rem; color: var(--cream-body); margin-bottom: var(--sp-3); line-height: 1.85; }

.story-text h2 { font-size: clamp(1.9rem, 4vw, 3rem); margin-bottom: var(--sp-3); }

.story-img-sticky {
  position: sticky;
  top: calc(var(--strip-h) + var(--header-h) + 2rem);
}

.story-img-box {
  width: 100%; aspect-ratio: 3/4;
  border-radius: var(--radius);
  background: linear-gradient(160deg, #1F1610 0%, #130E0A 100%);
  border: 1px solid var(--gold-border);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px;
  color: var(--cream-muted);
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
}

.story-img-box svg { opacity: 0.35; }

.mv-section { background: var(--bg-surface); }

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3);
  margin-top: var(--sp-6);
}

.mv-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: var(--radius);
  padding: var(--sp-6) var(--sp-5);
  position: relative;
  overflow: hidden;
  transition: all var(--dur-mid) var(--ease-out);
}

.mv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.mv-card:hover { transform: translateY(-4px); border-color: var(--gold-border); }

.mv-icon { color: var(--gold); margin-bottom: var(--sp-3); }
.mv-card h3 { font-size: 1.4rem; color: var(--gold); margin-bottom: var(--sp-2); }
.mv-card p { color: var(--cream-body); font-size: 1.02rem; line-height: 1.8; }

.healer-section { background: var(--bg); }

.healer-grid {
  display: grid;
  grid-template-columns: 0.75fr 2fr;
  gap: var(--sp-10);
  align-items: start;
}

.healer-photo-box {
  width: 100%; aspect-ratio: 3/4;
  border-radius: var(--radius);
  background: linear-gradient(160deg, #1F1610 0%, #130E0A 100%);
  border: 1px solid var(--gold-border);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px;
  color: var(--cream-muted);
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  position: sticky;
  top: calc(var(--strip-h) + var(--header-h) + 2rem);
}

.healer-photo-box svg { opacity: 0.35; }

.healer-bio { display: flex; flex-direction: column; gap: var(--sp-3); }
.healer-name { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
.healer-title { color: var(--gold); font-family: var(--font-display); font-style: italic; font-size: 1.1rem; margin-top: -var(--sp-2); }
.healer-bio p { color: var(--cream-body); font-size: 1.05rem; line-height: 1.85; }

.cert-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }

.cert-badge {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border: 1px solid var(--gold-border);
  border-radius: 50px;
  color: var(--gold);
  background: var(--gold-dim);
}

.about-cta-section {
  background: var(--bg-surface);
  text-align: center;
  padding: var(--sp-16) 0;
  position: relative;
  overflow: hidden;
}

.about-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(200,137,42,0.05) 0%, transparent 70%);
}

.about-cta-content { position: relative; z-index: 1; }
.about-cta-content h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: var(--sp-2); }
.about-cta-content p { color: var(--cream-body); margin-bottom: var(--sp-5); font-size: 1.1rem; }

@media (max-width: 900px) {
  .story-grid { grid-template-columns: 1fr; gap: var(--sp-6); }
  .story-img-sticky { position: static; }
  .mv-grid { grid-template-columns: 1fr; }
  .healer-grid { grid-template-columns: 1fr; gap: var(--sp-6); }
  .healer-photo-box { position: static; aspect-ratio: 4/3; }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-page-section { background: var(--bg); }
.contact-page-wrap { max-width: 760px; margin: 0 auto; }

.contact-details-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
  margin-top: var(--sp-8);
}

.cdc {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius);
  padding: var(--sp-5) var(--sp-3);
  text-align: center;
  transition: all var(--dur-mid) var(--ease-out);
}

.cdc:hover {
  transform: translateY(-4px);
  border-color: var(--gold-border);
  box-shadow: 0 12px 32px rgba(0,0,0,0.35);
}

.cdc-icon { color: var(--gold); margin: 0 auto var(--sp-2); display: block; }
.cdc-label {
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 4px;
}
.cdc-val { color: var(--cream-body); font-size: 0.95rem; }
.cdc-val a { color: var(--cream-body); transition: color var(--dur-micro) var(--ease-out); }
.cdc-val a:hover { color: var(--gold); }

@media (max-width: 680px) { .contact-details-row { grid-template-columns: 1fr; } }

/* ============================================================
   PRIVACY POLICY
   ============================================================ */
.privacy-section { background: var(--bg); }
.privacy-body { max-width: 760px; margin: 0 auto; }

.privacy-last-updated {
  font-size: 0.82rem; color: var(--cream-muted);
  font-style: italic; margin-bottom: var(--sp-6);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.policy-block { margin-bottom: var(--sp-6); }

.policy-block h2 {
  font-size: 1.35rem; color: var(--gold);
  margin-bottom: var(--sp-2);
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(200,137,42,0.15);
}

.policy-block h3 { font-size: 1.1rem; color: var(--cream); margin-bottom: 8px; margin-top: var(--sp-3); }

.policy-block p { color: var(--cream-body); font-size: 1.02rem; margin-bottom: 10px; line-height: 1.8; }

.policy-block ul { list-style: none; margin-bottom: 10px; }

.policy-block ul li {
  color: var(--cream-body); font-size: 1.02rem;
  padding-left: 22px; position: relative;
  margin-bottom: 8px; line-height: 1.75;
}

.policy-block ul li::before {
  content: '◆'; position: absolute; left: 0;
  color: var(--gold); font-size: 0.4rem; top: 0.65rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-surface);
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: var(--sp-12) 0 var(--sp-6);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--sp-8);
  margin-bottom: var(--sp-8);
}

.footer-brand { display: flex; flex-direction: column; gap: var(--sp-2); }

.footer-tagline {
  color: var(--cream-muted);
  font-size: 0.92rem;
  line-height: 1.75;
  max-width: 240px;
}

.footer-col-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-3);
}

.footer-nav { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { color: var(--cream-muted); font-size: 0.92rem; transition: color var(--dur-micro) var(--ease-out); }
.footer-nav a:hover { color: var(--gold); }

.social-row { display: flex; gap: 10px; }

.social-btn {
  width: 40px; height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  color: var(--cream-muted);
  transition: all var(--dur-fast) var(--ease-out);
}

.social-btn:hover {
  border-color: var(--gold-border);
  color: var(--gold);
  background: var(--gold-dim);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: var(--sp-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-2);
}

.footer-copy { color: var(--cream-muted); font-size: 0.82rem; }

.footer-legal { display: flex; gap: var(--sp-3); }
.footer-legal a { color: var(--cream-muted); font-size: 0.82rem; transition: color var(--dur-micro) var(--ease-out); }
.footer-legal a:hover { color: var(--gold); }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: var(--sp-5); }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: var(--sp-4);
  right: var(--sp-4);
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  z-index: 990;
  box-shadow: 0 4px 24px rgba(37,211,102,0.45);
  transition: all var(--dur-fast) var(--ease-spring);
  color: #fff;
}

.whatsapp-float:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 10px 36px rgba(37,211,102,0.55);
  color: #fff;
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.3);
  animation: wa-ring 2.5s ease-in-out infinite;
}

@keyframes wa-ring {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.2); opacity: 0; }
}

/* ============================================================
   ORNAMENT
   ============================================================ */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  color: rgba(200,137,42,0.45);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  margin-bottom: var(--sp-2);
}

.ornament::before,
.ornament::after {
  content: '';
  flex: 1;
  max-width: 50px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,137,42,0.4));
}

.ornament::after { background: linear-gradient(90deg, rgba(200,137,42,0.4), transparent); }

/* ============================================================
   RESPONSIVE GLOBAL
   ============================================================ */
@media (max-width: 768px) {
  .section { padding: var(--sp-12) 0; }
  .section-sm { padding: var(--sp-8) 0; }
  .about-cta-section { padding: var(--sp-10) 0; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.4rem; }
  .btn { padding: 0.9rem 1.75rem; font-size: 0.8rem; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   ASTRO CHATBOT WIDGET
   ============================================================ */
.chatbot-widget {
  position: fixed;
  bottom: var(--sp-4);
  right: var(--sp-4);
  z-index: 990;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  pointer-events: none; /* wrapper never intercepts clicks; children opt-in below */
}

.chatbot-trigger {
  pointer-events: auto; /* always tappable — overrides wrapper pointer-events:none */
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 20px 0 14px;
  height: 56px;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border: none;
  cursor: pointer;
  color: #1A0800;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 24px rgba(200,137,42,0.45);
  transition: all var(--dur-fast) var(--ease-spring);
  white-space: nowrap;
}

.chatbot-trigger:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 8px 32px rgba(200,137,42,0.55);
}

.chatbot-trigger::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 34px;
  border: 2px solid rgba(200,137,42,0.3);
  animation: wa-ring 2.5s ease-in-out infinite;
}

.chatbot-trigger-icon { font-size: 1.3rem; line-height: 1; }

.chatbot-panel {
  width: 360px;
  height: 530px;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.65);
  opacity: 0;
  transform: translateY(16px) scale(0.96);
  pointer-events: none;
  transition: all var(--dur-mid) var(--ease-spring);
  transform-origin: bottom right;
}

.chatbot-panel.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.chatbot-header {
  background: linear-gradient(135deg, var(--bg-card-alt), var(--bg-card));
  border-bottom: 1px solid var(--gold-border);
  padding: 14px var(--sp-3);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.chatbot-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: #1A0800;
  flex-shrink: 0;
}

.chatbot-header-info { flex: 1; }

.chatbot-name {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--cream);
}

.chatbot-online {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  color: var(--success);
  margin-top: 2px;
}

.chatbot-online-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--success);
  animation: pulse-dot 2s ease-in-out infinite;
}

.chatbot-close {
  background: none;
  border: none;
  color: var(--cream-muted);
  cursor: pointer;
  font-size: 1.1rem;
  padding: 4px 8px;
  line-height: 1;
  transition: color var(--dur-micro) var(--ease-out);
}
.chatbot-close:hover { color: var(--cream); }

.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: var(--sp-3);
  display: flex;
  flex-direction: column;
  gap: 10px;
  scroll-behavior: smooth;
}

.chatbot-messages::-webkit-scrollbar { width: 3px; }
.chatbot-messages::-webkit-scrollbar-track { background: transparent; }
.chatbot-messages::-webkit-scrollbar-thumb { background: var(--gold-border); border-radius: 2px; }

.cb-msg {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.6;
  animation: cb-pop 0.25s var(--ease-spring) forwards;
}

@keyframes cb-pop {
  from { opacity: 0; transform: scale(0.9) translateY(8px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.cb-bot {
  background: var(--bg-surface);
  border: 1px solid rgba(200,137,42,0.12);
  color: var(--cream);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}

.cb-user {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #1A0800;
  font-weight: 500;
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}

.cb-typing {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 12px 16px;
  background: var(--bg-surface);
  border: 1px solid rgba(200,137,42,0.12);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
  border-radius: 16px;
}

.cb-typing span {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.5;
  animation: cb-bounce 1.2s ease-in-out infinite;
}
.cb-typing span:nth-child(2) { animation-delay: 0.2s; }
.cb-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes cb-bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
  30% { transform: translateY(-6px); opacity: 1; }
}

.chatbot-footer {
  border-top: 1px solid var(--gold-border);
  padding: 12px var(--sp-3);
  background: var(--bg-card);
  flex-shrink: 0;
}

.chatbot-input-wrap {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.chatbot-input {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  resize: none;
  transition: border-color var(--dur-fast) var(--ease-out);
}

.chatbot-input:focus {
  border-color: rgba(200,137,42,0.45);
  background: rgba(200,137,42,0.04);
}

.chatbot-input::placeholder { color: var(--cream-muted); }
.chatbot-textarea { min-height: 68px; line-height: 1.55; }

.chatbot-send-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border: none;
  cursor: pointer;
  color: #1A0800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all var(--dur-fast) var(--ease-spring);
}

.chatbot-send-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 16px rgba(200,137,42,0.4);
}

.cb-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-height: 160px;
  overflow-y: auto;
}

.cb-chip {
  background: rgba(200,137,42,0.07);
  border: 1px solid var(--gold-border);
  border-radius: 50px;
  padding: 7px 14px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--gold);
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease-out);
}

.cb-chip:hover {
  background: rgba(200,137,42,0.18);
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-1px);
}

.cb-chip-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-color: var(--gold);
  color: #1A0800;
  font-weight: 600;
}

.cb-chip-primary:hover {
  background: linear-gradient(135deg, #f0b040, var(--gold-light));
  color: #1A0800;
}

.cb-error {
  color: #F09090;
  font-size: 0.78rem;
  margin-bottom: 6px;
  font-family: var(--font-body);
}

@media (max-width: 480px) {
  .chatbot-trigger { padding: 0; width: 56px; height: 56px; border-radius: 50%; justify-content: center; }
  .chatbot-trigger-label { display: none; }
  .chatbot-trigger::before { border-radius: 50%; inset: -4px; }
  .chatbot-panel { width: calc(100vw - 32px); height: 72vh; }
}

/* ============================================================
   ZODIAC GLYPH FLOAT ANIMATION
   ============================================================ */
.zodiac-glyph-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.zodiac-glyph {
  position: absolute;
  bottom: -40px;
  color: rgba(200, 137, 42, 0.18);
  font-style: normal;
  line-height: 1;
  animation: glyph-rise linear forwards;
  will-change: transform, opacity;
  user-select: none;
}

@keyframes glyph-rise {
  0%   { transform: translateY(0) rotate(0deg);   opacity: 0; }
  8%   { opacity: 1; }
  85%  { opacity: 0.22; }
  100% { transform: translateY(-110vh) rotate(25deg); opacity: 0; }
}

/* ============================================================
   MOON PHASE WIDGET
   ============================================================ */
.moon-phase-widget {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px 8px 14px;
  border: 1px solid rgba(200, 137, 42, 0.18);
  border-radius: 50px;
  background: rgba(200, 137, 42, 0.05);
  backdrop-filter: blur(8px);
}

.moon-symbol {
  font-size: 1.5rem;
  line-height: 1;
  transition: opacity 0.35s ease;
  display: inline-block;
}

.moon-symbol.moon-fade-out { opacity: 0; transform: scale(0.85); transition: opacity 0.35s ease, transform 0.35s ease; }
.moon-symbol.moon-fade-in  { opacity: 1; transform: scale(1);    transition: opacity 0.35s ease, transform 0.35s ease; }

.moon-name {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-style: italic;
  color: var(--cream-body);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

/* ============================================================
   CHAKRA WHEEL ANIMATION
   ============================================================ */
.chakra-wheel-wrap {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 480px;
  height: 480px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}

.chakra-wheel-left {
  right: auto;
  left: -80px;
  opacity: 0.38; /* slightly dimmer on left so hero text stays readable */
}

.chakra-wheel-wrap svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.cw-l3 {
  animation: cw-ccw 70s linear infinite;
  transform-origin: 120px 120px;
}
.cw-l2 {
  animation: cw-cw 40s linear infinite;
  transform-origin: 120px 120px;
}
.cw-l1 {
  animation: cw-ccw 22s linear infinite;
  transform-origin: 120px 120px;
}
.cw-l0 {
  animation: cw-cw 12s linear infinite;
  transform-origin: 120px 120px;
}

@keyframes cw-cw  { to { transform: rotate(360deg);  } }
@keyframes cw-ccw { to { transform: rotate(-360deg); } }

/* Smaller accent chakra for sections */
.chakra-accent {
  width: 240px;
  height: 240px;
  opacity: 0.18;
  pointer-events: none;
}
.chakra-accent .cw-l3 { animation-duration: 50s; }
.chakra-accent .cw-l2 { animation-duration: 28s; }
.chakra-accent .cw-l1 { animation-duration: 16s; }
.chakra-accent .cw-l0 { animation-duration: 9s; }

@media (max-width: 1100px) {
  .chakra-wheel-wrap {
    width: 320px; height: 320px;
    right: -60px; opacity: 0.35;
  }
  .chakra-wheel-left {
    left: -60px; right: auto; opacity: 0.25;
  }
}

@media (max-width: 768px) {
  .chakra-wheel-wrap:not(.chakra-wheel-left) {
    width: 240px; height: 240px;
    right: -40px;
    top: auto; bottom: 40px;
    transform: none;
    opacity: 0.18;
  }
  .chakra-wheel-left {
    width: 200px; height: 200px;
    left: -40px; right: auto;
    top: auto; bottom: 40px;
    transform: none;
    opacity: 0.12;
  }
}

/* ============================================================
   SUPPLEMENTARY STYLES — class aliases & new components
   ============================================================ */

/* Section tag / eyebrow */
.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-2);
}

/* Gold decorative divider */
.divider {
  width: 64px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: var(--sp-3) auto var(--sp-4);
  border-radius: 2px;
}

/* Gold text utility */
.gold { color: var(--gold); }

/* ============================================================
   URGENCY STRIP — extras
   ============================================================ */
.urgency-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  flex-wrap: wrap;
}
.urgency-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}
.urgency-cta {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid var(--gold-border);
  padding: 3px 12px;
  border-radius: 50px;
  transition: all var(--dur-micro) var(--ease-out);
}
.urgency-cta:hover { background: var(--gold-dim); color: var(--gold-pale); }
.urgency-close {
  background: none;
  border: none;
  color: var(--cream-muted);
  cursor: pointer;
  padding: 4px 8px;
  font-size: 0.85rem;
  line-height: 1;
  transition: color var(--dur-micro) var(--ease-out);
  position: absolute;
  right: var(--sp-3);
}
.urgency-close:hover { color: var(--cream); }

/* ============================================================
   HERO — alias fixes
   ============================================================ */
.hero-title {
  font-size: clamp(2.75rem, 7.5vw, 5.5rem);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: var(--sp-3);
  color: var(--white);
  text-shadow: 0 2px 40px rgba(0,0,0,0.5);
}
.hero-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-pale) 0%, var(--gold-light) 40%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: var(--sp-5); }

/* Trust items */
.hero-trust { margin-top: var(--sp-5); display: flex; justify-content: center; align-items: center; gap: var(--sp-4); flex-wrap: wrap; }
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--cream-muted);
  letter-spacing: 0.04em;
}
.trust-item svg { color: var(--gold); flex-shrink: 0; }

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: var(--sp-4);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.hero-scroll-hint span {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 0 auto;
  animation: scrollBounce 2.5s ease-in-out infinite;
}

/* ============================================================
   PAIN SECTION — icon wrapper
   ============================================================ */
.pain-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(200,137,42,0.07);
  border: 1px solid rgba(200,137,42,0.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  margin-bottom: var(--sp-2);
  transition: all var(--dur-fast) var(--ease-out);
}
.pain-card:hover .pain-icon { background: rgba(200,137,42,0.14); border-color: rgba(200,137,42,0.25); }

/* ============================================================
   SERVICE — link alias
   ============================================================ */
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: var(--sp-2);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-8px);
  transition: all var(--dur-fast) var(--ease-out);
}
.service-card:hover .service-link { opacity: 1; transform: translateX(0); }

/* Services section alias */
.services-section { background: var(--bg-surface); }

/* ============================================================
   PROCESS — icon + connector
   ============================================================ */
.step-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(200,137,42,0.07);
  border: 1px solid rgba(200,137,42,0.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  margin: var(--sp-2) auto var(--sp-2);
}
.process-connector {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
  align-self: center;
  display: none; /* hidden on mobile — shown in grid context */
}
@media (min-width: 769px) {
  .process-steps { grid-template-columns: 1fr auto 1fr auto 1fr; align-items: center; }
  .process-connector { display: block; width: 40px; }
}

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-section {
  background: var(--bg-surface);
  padding: var(--sp-10) 0;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-3);
  text-align: center;
}
.stat-item {
  padding: var(--sp-4) var(--sp-3);
  position: relative;
}
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(200,137,42,0.15);
}
.stats-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 6px;
  display: block;
}
.stats-label {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--cream-muted);
  text-transform: uppercase;
}
@media (max-width: 600px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item + .stat-item::before { display: none; }
}

/* Testimonials section alias */
.testimonials-section { background: var(--bg); }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--bg-surface);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(200,137,42,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.cta-title {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: var(--sp-4);
}
.cta-body {
  color: var(--cream-body);
  font-size: 1.05rem;
  line-height: 1.85;
  max-width: 640px;
  margin: 0 auto var(--sp-6);
}
.cta-actions { display: flex; flex-direction: column; align-items: center; gap: var(--sp-2); }
.cta-sub { font-size: 0.82rem; color: var(--cream-muted); font-style: italic; }
.btn-large { padding: 1.2rem 3rem; font-size: 1rem; }

/* ============================================================
   CONTACT STRIP (index page)
   ============================================================ */
/* ── Homepage Booking Form Section ── */
.home-form-section {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-surface) 40%, var(--bg) 100%);
  position: relative;
}

.home-form-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(200,137,42,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.home-form-wrap {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ── Contact Strip ── */
.contact-strip { background: var(--bg); }
.contact-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
  flex-wrap: wrap;
}
.contact-strip-text { flex: 1; min-width: 240px; }
.contact-strip-cards { display: flex; gap: var(--sp-2); flex-wrap: wrap; }
.contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 50px;
  background: #25D366;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all var(--dur-fast) var(--ease-out);
  box-shadow: 0 4px 18px rgba(37,211,102,0.3);
}
.contact-chip:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(37,211,102,0.45); color: #fff; }
.contact-chip-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold-border);
  box-shadow: none;
}
.contact-chip-outline:hover {
  background: var(--gold-dim);
  color: var(--gold-light);
  box-shadow: 0 8px 24px rgba(200,137,42,0.12);
}
@media (max-width: 768px) {
  .contact-strip-inner { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   WHATSAPP FLOAT — label + visibility toggle
   ============================================================ */
.whatsapp-float {
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  pointer-events: none;
  transition: all var(--dur-mid) var(--ease-spring);
  width: auto;
  padding: 0 18px 0 14px;
  gap: 10px;
  border-radius: 30px;
  min-height: 56px;
}
.whatsapp-float.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}
.wa-label {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ============================================================
   CONTACT DETAIL CARD (contact page)
   ============================================================ */
.contact-detail-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius);
  padding: var(--sp-5) var(--sp-3);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: all var(--dur-mid) var(--ease-out);
}
.contact-detail-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-border);
  box-shadow: 0 12px 32px rgba(0,0,0,0.35);
}
.card-icon { color: var(--gold); display: flex; align-items: center; justify-content: center; }
.card-label {
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); display: block;
}
.card-val { color: var(--cream-body); font-size: 0.95rem; line-height: 1.6; text-align: center; }
.card-val a { color: var(--cream-body); }
.card-val a:hover { color: var(--gold); }
@media (max-width: 680px) { .contact-details-row { grid-template-columns: 1fr; } }

/* ============================================================
   FORM SUCCESS — visible class
   ============================================================ */
.form-success { display: none; }
.form-success.visible { display: block; }

/* ============================================================
   MISC — logo-icon, footer-desc, bg-2, ph-icon, mv-card-icon
   ============================================================ */
.logo-icon { color: var(--gold); font-size: 1.2rem; }
.footer-desc { color: var(--cream-muted); font-size: 0.88rem; line-height: 1.75; margin-top: 4px; max-width: 260px; }
.bg-2 { background: var(--bg-surface) !important; }
.ph-icon { font-size: 2.5rem; opacity: 0.25; }
.mv-card-icon { color: var(--gold); margin-bottom: var(--sp-3); display: flex; align-items: center; justify-content: center; }
.contact-page-form-wrap { max-width: 800px; margin: 0 auto; }

/* ============================================================
   ADDITIONAL RESPONSIVE FIXES
   ============================================================ */
@media (max-width: 900px) {
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .pain-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-strip-cards { width: 100%; }
  .contact-chip { width: 100%; justify-content: center; }
  .whatsapp-float { padding: 0; width: 56px; height: 56px; border-radius: 50%; }
  .wa-label { display: none; }
}

/* ============================================================
   COMPREHENSIVE MOBILE OVERRIDES
   All issues: overflow, layout, spacing, typography, touch UX
   ============================================================ */

/* 1. Prevent horizontal overflow globally */
html, body { overflow-x: hidden; }

/* 2. Reduce header height on small screens */
@media (max-width: 480px) {
  :root { --header-h: 64px; }
}

/* 3. URGENCY STRIP — mobile layout fix */
@media (max-width: 768px) {
  :root { --strip-h: 68px; }

  .urgency-strip {
    height: auto;
    min-height: var(--strip-h);
    flex-direction: column;
    gap: 4px;
    padding: 8px 40px 8px var(--sp-3);
    text-align: center;
  }

  .urgency-strip p {
    font-size: 0.72rem;
    white-space: normal;
    line-height: 1.5;
  }

  .urgency-cta {
    display: inline-block;
    font-size: 0.65rem;
    padding: 3px 10px;
  }

  .urgency-dot { display: none; }

  .urgency-close {
    top: 50%;
    transform: translateY(-50%);
    right: var(--sp-2);
  }
}

@media (max-width: 400px) {
  :root { --strip-h: 76px; }
  .urgency-strip p { font-size: 0.68rem; }
}

/* 4. HERO SECTION */
/* Prevent chakra wheels & glyph layer causing horizontal scroll */
.hero { overflow: hidden; }

/* Remove forced <br> — let text wrap naturally on mobile */
@media (max-width: 640px) {
  .hero-title br { display: none; }
  .hero h1 br    { display: none; }
}

/* Hero sizing */
@media (max-width: 640px) {
  .hero-pill {
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    padding: 5px 14px;
    white-space: normal;
    text-align: center;
  }
  .hero-title,
  .hero h1 {
    font-size: clamp(1.9rem, 8vw, 2.6rem);
    line-height: 1.12;
  }
  .hero-sub {
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: var(--sp-4);
  }
}

/* Stack hero buttons vertically on mobile */
@media (max-width: 560px) {
  .hero-actions,
  .hero-cta {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .hero-actions .btn,
  .hero-cta .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
}

/* Hero trust items — tighten on mobile */
@media (max-width: 600px) {
  .hero-trust {
    gap: 12px;
    justify-content: center;
  }
  .trust-item,
  .hero-trust-item {
    font-size: 0.72rem;
    gap: 5px;
  }
}

/* Moon phase widget — hide on very small, reposition on medium mobile */
@media (max-width: 480px) {
  .moon-phase-widget { display: none; }
}
@media (min-width: 481px) and (max-width: 640px) {
  .moon-phase-widget {
    bottom: calc(var(--sp-4) + 56px) !important;
    font-size: 0.85rem;
  }
}

/* Hero scroll hint — hide when moon widget visible */
@media (max-width: 640px) {
  .hero-scroll-hint { display: none; }
}

/* 5. SECTION PADDING — reduce at all breakpoints */
@media (max-width: 768px) {
  .section      { padding: var(--sp-10) 0; }
  .section-sm   { padding: var(--sp-6) 0; }
  .pain-section { padding: var(--sp-8) 0; }
  .stats-section { padding: var(--sp-6) 0; }
  .about-cta-section { padding: var(--sp-8) 0; }
  .cta-section  { padding: var(--sp-8) 0; }
  .contact-strip { padding: var(--sp-6) 0; }
}
@media (max-width: 480px) {
  .section      { padding: var(--sp-8) 0; }
  .section-sm   { padding: var(--sp-5) 0; }
}

/* 6. PAGE HERO (inner pages) — reduce top padding on mobile */
@media (max-width: 768px) {
  .page-hero {
    padding-top: calc(var(--strip-h) + var(--header-h) + 48px);
    padding-bottom: 48px;
  }
  .page-hero h1 { font-size: clamp(1.8rem, 7vw, 2.4rem); }
  .ornament { font-size: 0.55rem; }
}

/* 7. SECTION TITLES — tighten on mobile */
@media (max-width: 640px) {
  .section-title { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .section-subtitle { font-size: 1rem; }
  .pain-intro .section-title { font-size: clamp(1.4rem, 5.5vw, 2rem); }
}

/* 8. PAIN CARDS — reduce padding on mobile */
@media (max-width: 560px) {
  .pain-card { padding: var(--sp-4) var(--sp-3); }
  .pain-number { font-size: 2.5rem; }
}

/* 9. SERVICE CARDS — reduce padding on mobile */
@media (max-width: 560px) {
  .service-card { padding: var(--sp-4) var(--sp-3); }
}

/* 10. PROCESS STEPS — reduce padding on mobile */
@media (max-width: 640px) {
  .process-step { padding: var(--sp-3) var(--sp-2); }
  .process-step h3 { font-size: 1.05rem; }
}

/* 11. STATS SECTION — smaller numbers on mobile */
@media (max-width: 480px) {
  .stats-num { font-size: 2.2rem; }
  .stats-label { font-size: 0.75rem; }
  .stat-item { padding: var(--sp-3) var(--sp-2); }
}

/* 12. CTA SECTION */
@media (max-width: 640px) {
  .cta-title { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .cta-body  { font-size: 1rem; }
  .btn-large { padding: 1rem 2rem; font-size: 0.9rem; width: 100%; max-width: 320px; justify-content: center; }
  .cta-actions { align-items: center; }
}

/* 13. CONTACT SECTION (home page) */
@media (max-width: 640px) {
  .contact-text h2 { font-size: 1.5rem; }
  .contact-text p  { font-size: 1rem; }
}

/* 14. FORM CARD */
@media (max-width: 640px) {
  .form-card { padding: var(--sp-4) var(--sp-3); }
  .form-card-title { font-size: 1.2rem; }
  .form-submit-btn { padding: 1rem; font-size: 0.88rem; }
}
@media (max-width: 480px) {
  .form-card { padding: var(--sp-3) var(--sp-2); border-radius: var(--radius-sm); }
}

/* iOS auto-zoom fix — inputs must be 16px on mobile or iOS zooms on tap */
@media (max-width: 768px) {
  .form-group input,
  .form-group select,
  .form-group textarea,
  .chatbot-input {
    font-size: 16px !important;
    -webkit-text-size-adjust: 100%;
    touch-action: manipulation;
  }
  .form-group input,
  .form-group select {
    min-height: 52px;
  }
}

/* 15. TESTIMONIAL CARDS */
@media (max-width: 640px) {
  .t-card { padding: var(--sp-4) var(--sp-3); }
  .t-text { font-size: 0.98rem; }
}

/* 16. ABOUT STAT BADGE — don't overlap on mobile */
@media (max-width: 640px) {
  .about-stat-badge {
    position: static;
    margin-top: var(--sp-3);
    width: fit-content;
  }
}

/* 17. ABOUT PAGE SECTIONS */
@media (max-width: 640px) {
  .mv-card { padding: var(--sp-4) var(--sp-3); }
  .healer-name { font-size: 1.5rem; }
  .healer-title { font-size: 1rem; }
  .cert-badge { font-size: 0.65rem; padding: 4px 10px; }
  .about-cta-content h2 { font-size: 1.6rem; }
  .about-cta-content p  { font-size: 1rem; }
}

/* 18. PRIVACY POLICY */
@media (max-width: 640px) {
  .policy-block h2 { font-size: 1.15rem; }
  .policy-block p, .policy-block ul li { font-size: 0.98rem; }
}

/* 19. FOOTER */
@media (max-width: 480px) {
  .footer { padding: var(--sp-8) 0 var(--sp-4); }
  .footer-grid { gap: var(--sp-4); }
  .footer-tagline { font-size: 0.88rem; }
}

/* 20. CHAKRA WHEELS — centered behind hero text on mobile */
@media (max-width: 768px) {
  .chakra-wheel-left { display: none; }

  .chakra-wheel-wrap:not(.chakra-wheel-left) {
    width: 340px;
    height: 340px;
    right: auto;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.55;
  }
}

@media (max-width: 480px) {
  .chakra-wheel-wrap:not(.chakra-wheel-left) {
    width: 300px;
    height: 300px;
    opacity: 0.50;
  }
}

/* 21. WHY/COUNTER CARDS */
@media (max-width: 640px) {
  .why-card { padding: var(--sp-4) var(--sp-3); }
  .why-num  { font-size: 2.2rem; }
}

/* 22. BREADCRUMB */
@media (max-width: 480px) {
  .breadcrumb { font-size: 0.78rem; flex-wrap: wrap; justify-content: center; }
}

/* 23. CONTAINER — tighter on very small screens */
@media (max-width: 400px) {
  .container { padding: 0 var(--sp-2); }
}

/* 26. LOGO — scale down on small screens */
@media (max-width: 400px) {
  .logo { font-size: 1rem; gap: 7px; }
  .logo-icon { font-size: 1rem; }
}

/* 24. BODY FONT SIZE — EB Garamond is optically large, scale down slightly */
@media (max-width: 480px) {
  body { font-size: 1.0625rem; line-height: 1.75; }
}

/* 25. CONTACT DETAIL CARDS (contact page) */
@media (max-width: 480px) {
  .contact-detail-card { padding: var(--sp-3) var(--sp-2); }
  .contact-details-row { gap: var(--sp-2); }
}
