/* ==========================================================================
   TaqdeerNama by Shubham: Stylesheet
   Design System: Google Stitch meets Spiritual Luxury & Vedic Geometry
   ========================================================================== */

:root {
  /* Rich Brand Palette */
  --bg-dark: #160812;
  --bg-dark-card: #240d1e;
  --bg-dark-accent: #33132a;
  --bg-paper: #faf5eb;
  --bg-paper-subtle: #f3ece0;
  --bg-paper-card: #ffffff;
  
  /* Text Colors */
  --text-dark: #220b1a;
  --text-dark-muted: #5c4b56;
  --text-light: #faf5eb;
  --text-light-muted: rgba(250, 245, 235, 0.72);
  
  /* Gold & Sacred Accents */
  --gold-primary: #d49234;
  --gold-hover: #e7a74a;
  --gold-light: #f5dc9e;
  --gold-dark: #b17420;
  --gold-glow: rgba(212, 146, 52, 0.22);
  
  /* Functional Colors */
  --wa-green: #25d366;
  --wa-green-hover: #20ba5a;
  --wa-dark: #128c7e;
  --border-dark: rgba(250, 245, 235, 0.14);
  --border-light: rgba(34, 11, 26, 0.12);
  --border-gold: rgba(212, 146, 52, 0.35);

  /* Typography */
  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: "DM Mono", monospace;
  
  /* Spacing & Layout */
  --container-max: 1200px;
  --container-pad: 24px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 9999px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   Reset & Base Elements
   ========================================================================== */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-paper);
}

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background-color: var(--bg-paper);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button, input, select, textarea {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  background: none;
  border: none;
}

/* Accessibility Focus Rings */
:focus-visible {
  outline: 3px solid var(--gold-primary);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: -60px;
  left: 20px;
  z-index: 1000;
  padding: 12px 20px;
  background: var(--gold-primary);
  color: var(--bg-dark);
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: 20px;
}

/* Container Utility */
.section-container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.section-dark {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

/* Section Header Typography */
.section-header {
  margin-bottom: 56px;
}

.section-header.text-center {
  text-align: center;
}

.section-header.text-center p {
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold-dark);
  margin-bottom: 14px;
}

.section-tag span {
  display: inline-block;
  padding: 2px 6px;
  background: rgba(212, 146, 52, 0.12);
  border-radius: 4px;
  color: var(--gold-primary);
}

.section-tag.light-tag {
  color: var(--gold-light);
}

.section-tag.light-tag span {
  background: rgba(245, 220, 158, 0.15);
  color: var(--gold-light);
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.15;
  color: inherit;
}

h2 {
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}

h2 em, h3 em, h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-primary);
}

.section-header p {
  font-size: 17px;
  color: var(--text-dark-muted);
  max-width: 620px;
  line-height: 1.65;
}

.section-dark .section-header p {
  color: var(--text-light-muted);
}

/* ==========================================================================
   Buttons & Links
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all var(--transition-smooth);
  white-space: nowrap;
}

.btn-gold {
  background-color: var(--gold-primary);
  color: var(--bg-dark);
  border: 1px solid var(--gold-primary);
  box-shadow: 0 4px 18px rgba(212, 146, 52, 0.25);
}

.btn-gold:hover {
  background-color: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 146, 52, 0.35);
}

.btn-outline-light {
  background: transparent;
  color: var(--text-light);
  border: 1px solid var(--border-dark);
}

.btn-outline-light:hover {
  background: rgba(250, 245, 235, 0.1);
  border-color: var(--text-light);
  transform: translateY(-2px);
}

.btn-card-action {
  width: 100%;
  background: var(--bg-paper);
  color: var(--text-dark);
  border: 1px solid var(--border-light);
  font-size: 13px;
  padding: 12px 18px;
}

.btn-card-action:hover {
  background: var(--gold-primary);
  color: var(--bg-dark);
  border-color: var(--gold-primary);
}

.btn-gold-card {
  width: 100%;
  background: var(--gold-primary);
  color: var(--bg-dark);
  border: 1px solid var(--gold-primary);
  font-size: 13px;
  padding: 12px 18px;
  font-weight: 600;
}

.btn-gold-card:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
}

.btn-sm-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--gold-primary);
  color: var(--bg-dark);
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.btn-sm-gold:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
}

.btn-arrow {
  display: inline-block;
  transition: transform var(--transition-fast);
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* ==========================================================================
   Top Announcement Bar
   ========================================================================== */

.top-bar {
  background: #10050d;
  border-bottom: 1px solid rgba(212, 146, 52, 0.15);
  padding: 10px 0;
  font-size: 13px;
  color: var(--text-light-muted);
}

.top-bar-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.top-bar-badge {
  display: inline-block;
  padding: 2px 8px;
  background: rgba(212, 146, 52, 0.2);
  color: var(--gold-light);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  border-radius: 4px;
  text-transform: uppercase;
}

.top-bar p a {
  color: var(--gold-light);
  font-weight: 600;
  margin-left: 4px;
}

.top-bar p a:hover {
  text-decoration: underline;
}

.top-bar-link {
  color: var(--gold-primary);
  font-weight: 600;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.top-bar-link:hover {
  color: var(--gold-hover);
}

/* ==========================================================================
   Site Header
   ========================================================================== */

.site-header {
  background: var(--bg-dark);
  border-bottom: 1px solid var(--border-dark);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background var(--transition-fast);
}

.header-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 16px var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-light);
}

.wordmark-symbol {
  color: var(--gold-primary);
  font-size: 20px;
}

.wordmark-text {
  display: flex;
  flex-direction: column;
}

.wordmark-text strong {
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.16em;
  font-weight: 600;
}

.wordmark-text small {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.04em;
  color: var(--gold-light);
  opacity: 0.85;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-light);
}

.site-nav a:not(.nav-whatsapp-btn) {
  opacity: 0.8;
  transition: opacity var(--transition-fast), color var(--transition-fast);
}

.site-nav a:not(.nav-whatsapp-btn):hover {
  opacity: 1;
  color: var(--gold-light);
}

.nav-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  background: var(--wa-green);
  color: #ffffff;
  font-weight: 600;
  border-radius: var(--radius-pill);
  font-size: 13px;
  transition: all var(--transition-smooth);
}

.nav-whatsapp-btn:hover {
  background: var(--wa-green-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.wa-icon {
  flex-shrink: 0;
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  position: relative;
  color: var(--text-light);
}

.menu-lines, .menu-lines::before, .menu-lines::after {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  position: absolute;
  left: 9px;
  transition: all var(--transition-fast);
}

.menu-lines {
  top: 19px;
}

.menu-lines::before {
  content: "";
  top: -7px;
  left: 0;
}

.menu-lines::after {
  content: "";
  top: 7px;
  left: 0;
}

.menu-toggle.is-open .menu-lines {
  background: transparent;
}

.menu-toggle.is-open .menu-lines::before {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open .menu-lines::after {
  transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0 100px;
  border-bottom: 1px solid var(--border-dark);
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(212, 146, 52, 0.12), transparent 45%),
              radial-gradient(circle at 10% 80%, rgba(80, 20, 60, 0.25), transparent 40%);
  pointer-events: none;
}

.hero-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  background: rgba(212, 146, 52, 0.12);
  border: 1px solid rgba(212, 146, 52, 0.25);
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  margin-bottom: 24px;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  background: var(--gold-primary);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--gold-primary);
  animation: pulse 2.5s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.5; }
}

.hero-heading {
  font-size: clamp(3rem, 6.2vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}

.hero-subtext {
  font-size: clamp(16px, 1.8vw, 18px);
  color: var(--text-light-muted);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}

.hero-trust-badges {
  display: flex;
  align-items: center;
  gap: 24px;
  border-top: 1px solid var(--border-dark);
  padding-top: 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-light-muted);
}

.trust-icon {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  background: rgba(212, 146, 52, 0.2);
  color: var(--gold-primary);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
}

/* ==========================================================================
   Hero Media: Navagraha Moving Planets & Kundli Planetarium Animation
   ========================================================================== */

.hero-media {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
}

.planetarium-container {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 50% 50%, rgba(51, 19, 42, 0.6) 0%, rgba(22, 8, 18, 0.85) 65%, transparent 72%);
  border: 1px solid rgba(212, 146, 52, 0.2);
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.6), inset 0 0 50px rgba(212, 146, 52, 0.08);
}

/* Background Cosmic Starfield & Kundli Geometry */
.cosmos-stars {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(245, 220, 158, 0.8) 0 1px, transparent 1.5px),
    radial-gradient(circle at 75% 25%, rgba(250, 245, 235, 0.7) 0 1px, transparent 1.5px),
    radial-gradient(circle at 85% 70%, rgba(212, 146, 52, 0.75) 0 1.2px, transparent 2px),
    radial-gradient(circle at 35% 80%, rgba(245, 220, 158, 0.6) 0 1px, transparent 1.5px),
    radial-gradient(circle at 15% 65%, rgba(250, 245, 235, 0.5) 0 1px, transparent 1.5px),
    radial-gradient(circle at 60% 85%, rgba(212, 146, 52, 0.6) 0 1px, transparent 1.5px);
  background-size: 140px 140px;
  opacity: 0.75;
  animation: twinkle 6s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes twinkle {
  0% { opacity: 0.55; transform: scale(0.98); }
  100% { opacity: 0.9; transform: scale(1.02); }
}

.kundli-grid-bg {
  position: absolute;
  inset: 40px;
  display: grid;
  place-items: center;
  opacity: 0.45;
  pointer-events: none;
  animation: slow-kundli-pulse 12s ease-in-out infinite alternate;
}

.kundli-svg-geom {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 6px rgba(212, 146, 52, 0.2));
}

@keyframes slow-kundli-pulse {
  0% { transform: rotate(0deg) scale(0.97); opacity: 0.35; }
  100% { transform: rotate(8deg) scale(1.03); opacity: 0.55; }
}

/* Central Golden Sun (Surya) */
.sun-core {
  position: absolute;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.sun-corona {
  position: absolute;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 220, 158, 0.5) 0%, rgba(212, 146, 52, 0.25) 50%, transparent 75%);
  animation: sun-pulse 4s ease-in-out infinite alternate;
}

.sun-body {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff6df 0%, #f5dc9e 25%, #d49234 65%, #8f4d1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 25px rgba(212, 146, 52, 0.8), inset 0 0 10px rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.sun-symbol {
  font-family: var(--font-serif);
  font-size: 24px;
  color: #3b1408;
  font-weight: 700;
  line-height: 1;
}

.planet-tag.tag-surya {
  margin-top: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

@keyframes sun-pulse {
  0% { transform: scale(0.92); opacity: 0.6; }
  100% { transform: scale(1.15); opacity: 0.95; }
}

/* Concentric Revolving Orbit Tracks */
.orbit-track {
  position: absolute;
  border: 1px dashed rgba(212, 146, 52, 0.28);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.track-1 { width: 120px; height: 120px; animation: orbit-revolve 12s linear infinite; }
.track-2 { width: 180px; height: 180px; animation: orbit-revolve 19s linear infinite; }
.track-3 { width: 245px; height: 245px; animation: orbit-revolve 27s linear infinite; }
.track-4 { width: 310px; height: 310px; animation: orbit-revolve 36s linear infinite; }
.track-5 { width: 380px; height: 380px; animation: orbit-revolve 48s linear infinite; }
.track-6 { width: 450px; height: 450px; animation: orbit-revolve 64s linear infinite; border-color: rgba(212, 146, 52, 0.35); }

@keyframes orbit-revolve {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Planet Holders & Counter-Rotation */
.planet-holder {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  pointer-events: auto;
  cursor: pointer;
}

/* Counter-rotate label so text stays upright */
.holder-budh { animation: counter-spin 12s linear infinite; }
.holder-shukra { animation: counter-spin 19s linear infinite; }
.holder-chandra { animation: counter-spin 27s linear infinite; }
.holder-mangal { animation: counter-spin 36s linear infinite; }
.holder-guru { animation: counter-spin 48s linear infinite; }
.holder-shani { animation: counter-spin 64s linear infinite; }

@keyframes counter-spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(-360deg); }
}

.orbit-dot-label {
  font-family: var(--font-mono);
  font-size: 8.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold-light);
  opacity: 0.85;
  white-space: nowrap;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
  pointer-events: none;
}

/* Planetary Spheres with 3D Radial Lighting */
.planet-sphere {
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.planet-holder:hover .planet-sphere {
  transform: scale(1.35);
  box-shadow: 0 0 14px var(--gold-light);
}

/* 1. Budh (Mercury) */
.planet-budh {
  width: 11px;
  height: 11px;
  background: radial-gradient(circle at 35% 30%, #b4e3cb 0%, #589b7b 50%, #214d3a 100%);
  box-shadow: 0 0 8px rgba(88, 155, 123, 0.7);
}

/* 2. Shukra (Venus) */
.planet-shukra {
  width: 15px;
  height: 15px;
  background: radial-gradient(circle at 35% 30%, #fff7eb 0%, #e8c89b 45%, #9c6c39 100%);
  box-shadow: 0 0 10px rgba(232, 200, 155, 0.6);
}

/* 3. Chandra (Moon) */
.planet-chandra {
  width: 14px;
  height: 14px;
  background: radial-gradient(circle at 30% 30%, #ffffff 0%, #e2e8f0 40%, #7e8c9f 80%, #3a4556 100%);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.8);
}

/* 4. Mangal (Mars) */
.planet-mangal {
  width: 14px;
  height: 14px;
  background: radial-gradient(circle at 35% 30%, #ff9e80 0%, #d84315 50%, #5c1404 100%);
  box-shadow: 0 0 10px rgba(216, 67, 21, 0.7);
}

/* 5. Guru (Jupiter) */
.planet-guru {
  width: 22px;
  height: 22px;
  background: radial-gradient(circle at 35% 30%, #fff0d4 0%, #e5a93c 40%, #a66518 75%, #4a2806 100%);
  box-shadow: 0 0 14px rgba(229, 169, 60, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* 6. Shani (Saturn) & Ring */
.planet-shani {
  width: 18px;
  height: 18px;
  background: radial-gradient(circle at 35% 30%, #eadaa2 0%, #9e8248 50%, #42361b 100%);
  box-shadow: 0 0 12px rgba(158, 130, 72, 0.7);
}

.saturn-ring {
  position: absolute;
  width: 38px;
  height: 10px;
  top: 4px;
  left: -10px;
  border: 1.5px solid rgba(234, 218, 162, 0.85);
  border-radius: 50%;
  transform: rotate(-28deg);
  pointer-events: none;
  box-shadow: 0 0 5px rgba(234, 218, 162, 0.5);
}

/* Rahu & Ketu Cosmic Nodal Axis */
.node-axis {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  pointer-events: none;
  animation: node-drift 80s linear infinite reverse;
}

.node-point {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.node-point span {
  font-family: var(--font-mono);
  font-size: 8px;
  color: rgba(245, 220, 158, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.node-point::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(212, 146, 52, 0.7);
  box-shadow: 0 0 6px var(--gold-primary);
}

.node-rahu {
  top: 15%;
  left: 15%;
  animation: node-counter-spin 80s linear infinite;
}

.node-ketu {
  bottom: 15%;
  right: 15%;
  animation: node-counter-spin 80s linear infinite;
}

@keyframes node-counter-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes node-drift {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Standalone Auspicious Badge Below Planetarium */
.planetarium-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.hero-badge-standalone {
  margin-top: 28px;
  background: rgba(22, 8, 18, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-pill);
  padding: 9px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
  position: relative;
  z-index: 20;
}

.devanagari-quote {
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--gold-light);
  font-style: italic;
}

.hero-badge-standalone small {
  font-family: var(--font-mono);
  font-size: 9.5px;
  color: var(--text-light-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-left: 1px solid var(--border-gold);
  padding-left: 12px;
}

/* ==========================================================================
   Trust Strip Section
   ========================================================================== */

.trust-strip {
  background: var(--bg-paper-subtle);
  border-bottom: 1px solid var(--border-light);
  padding: 60px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.trust-card {
  padding: 24px;
  background: var(--bg-paper-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(34, 11, 26, 0.07);
  border-color: var(--border-gold);
}

.trust-number {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--gold-dark);
  margin-bottom: 14px;
}

.trust-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.trust-card p {
  font-size: 14px;
  color: var(--text-dark-muted);
  line-height: 1.6;
}

/* ==========================================================================
   Consultation Services Grid
   ========================================================================== */

.services-section {
  padding: 100px 0;
  background: var(--bg-paper);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}

.service-card {
  background: var(--bg-paper-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
  position: relative;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(34, 11, 26, 0.08);
  border-color: var(--border-gold);
}

.service-card.featured-service {
  background: var(--bg-dark-card);
  color: var(--text-light);
  border-color: var(--gold-dark);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.service-card.featured-service:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 30px var(--gold-glow);
}

.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.service-pill {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(34, 11, 26, 0.06);
  color: var(--text-dark);
  font-size: 11px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.service-pill-gold {
  display: inline-block;
  padding: 4px 12px;
  background: var(--gold-primary);
  color: var(--bg-dark);
  font-size: 11px;
  font-weight: 700;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.service-tag-mono {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold-dark);
}

.featured-service .service-tag-mono {
  color: var(--gold-light);
}

.service-card h3 {
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.service-desc {
  font-size: 15px;
  color: var(--text-dark-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.featured-service .service-desc {
  color: var(--text-light-muted);
}

.service-highlights {
  margin-top: auto;
  border-top: 1px solid var(--border-light);
  padding-top: 20px;
  margin-bottom: 24px;
}

.featured-service .service-highlights {
  border-top-color: var(--border-dark);
}

.service-highlights h4 {
  font-family: var(--font-sans);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: var(--gold-dark);
  margin-bottom: 10px;
}

.featured-service .service-highlights h4 {
  color: var(--gold-light);
}

.service-highlights ul {
  list-style: none;
}

.service-highlights li {
  font-size: 13.5px;
  color: var(--text-dark-muted);
  padding: 4px 0;
  position: relative;
  padding-left: 18px;
}

.featured-service .service-highlights li {
  color: var(--text-light-muted);
}

.service-highlights li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold-primary);
  font-size: 11px;
}

.services-quick-cta {
  background: var(--bg-paper-subtle);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px 32px;
  text-align: center;
}

.quick-cta-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.quick-cta-content p {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
}

.text-cta-link {
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 14px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: color var(--transition-fast);
}

.text-cta-link:hover {
  color: var(--gold-primary);
}

/* ==========================================================================
   Lal Kitab Spotlight Section
   ========================================================================== */

.spotlight-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.spotlight-media {
  position: relative;
}

.spotlight-image {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-gold);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 35px var(--gold-glow);
}

.spotlight-caption {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 13px;
  color: var(--text-light-muted);
}

.spotlight-caption strong {
  color: var(--gold-light);
  font-family: var(--font-serif);
  font-size: 15px;
}

.spotlight-lead {
  font-size: 17px;
  color: var(--text-light-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.spotlight-points {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}

.point-item {
  display: flex;
  gap: 16px;
}

.point-icon {
  color: var(--gold-primary);
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.point-item h4 {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 4px;
}

.point-item p {
  font-size: 14px;
  color: var(--text-light-muted);
  line-height: 1.6;
}

/* ==========================================================================
   Interactive Lal Kitab Upay & Graha Dosh Finder Tool
   ========================================================================== */

.upay-tool-section {
  padding: 100px 0;
  background: var(--bg-paper);
}

.upay-tool-card {
  background: var(--bg-paper-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 45px rgba(34, 11, 26, 0.08);
  overflow: hidden;
}

.tool-categories {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  background: var(--bg-paper-subtle);
  border-bottom: 1px solid var(--border-light);
}

.tool-cat-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px 12px;
  background: transparent;
  border: 0;
  border-right: 1px solid var(--border-light);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark-muted);
  transition: all var(--transition-fast);
  text-align: center;
}

.tool-cat-btn:last-child {
  border-right: 0;
}

.cat-icon {
  font-size: 20px;
}

.tool-cat-btn:hover {
  background: rgba(212, 146, 52, 0.08);
  color: var(--text-dark);
}

.tool-cat-btn.active {
  background: var(--bg-paper-card);
  color: var(--gold-dark);
  box-shadow: inset 0 3px 0 var(--gold-primary);
}

/* Tool Result Panel */
.tool-result-panel {
  padding: 44px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.result-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
  flex-wrap: wrap;
}

.result-graha-badge {
  display: flex;
  align-items: center;
  gap: 16px;
}

.graha-icon-wrap {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff7eb 0%, #f5dc9e 40%, #d49234 85%);
  color: #3b1408;
  font-size: 26px;
  box-shadow: 0 4px 14px rgba(212, 146, 52, 0.35);
  flex-shrink: 0;
}

.result-graha-badge h3 {
  font-size: 24px;
  margin-bottom: 3px;
  color: var(--text-dark);
}

.result-graha-badge span {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gold-dark);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.result-meta-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.meta-pill {
  display: inline-block;
  padding: 6px 14px;
  background: var(--bg-paper-subtle);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 500;
  color: var(--text-dark);
}

.result-body-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 40px;
}

.result-col-cause h4, .result-col-upay h4 {
  font-family: var(--font-sans);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 12px;
}

.result-col-cause p {
  font-size: 15px;
  color: var(--text-dark-muted);
  line-height: 1.7;
}

.upay-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.upay-list li {
  font-size: 14.5px;
  color: var(--text-dark-muted);
  line-height: 1.6;
  position: relative;
  padding-left: 24px;
}

.upay-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold-primary);
  font-size: 13px;
  top: 1px;
}

.upay-list strong {
  color: var(--text-dark);
}

/* Tool CTA Footer */
.result-cta-footer {
  margin-top: 10px;
  padding: 24px 28px;
  background: var(--bg-dark);
  color: var(--text-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.result-cta-text strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--gold-light);
  margin-bottom: 4px;
}

.result-cta-text p {
  font-size: 13.5px;
  color: var(--text-light-muted);
  max-width: 540px;
}

/* ==========================================================================
   How It Works (3-Step Process)
   ========================================================================== */

.process-section {
  padding: 100px 0;
  background: var(--bg-paper-subtle);
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  margin-bottom: 56px;
}

.process-step {
  background: var(--bg-paper-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 35px rgba(34, 11, 26, 0.08);
  border-color: var(--border-gold);
}

.step-badge {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(212, 146, 52, 0.12);
  color: var(--gold-dark);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}

.step-icon-wrap {
  font-size: 32px;
  margin-bottom: 16px;
}

.process-step h3 {
  font-size: 21px;
  margin-bottom: 10px;
}

.process-step p {
  font-size: 14px;
  color: var(--text-dark-muted);
  line-height: 1.6;
}

.process-connector {
  font-size: 24px;
  color: var(--gold-dark);
  opacity: 0.6;
}

.process-cta-banner {
  background: var(--bg-dark);
  color: var(--text-light);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border: 1px solid var(--border-dark);
}

.banner-text h3 {
  font-size: 24px;
  margin-bottom: 6px;
  color: var(--text-light);
}

.banner-text p {
  font-size: 15px;
  color: var(--text-light-muted);
}

/* ==========================================================================
   Courses Section
   ========================================================================== */

.courses-section {
  padding: 100px 0;
  background: var(--bg-paper);
}

.courses-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: flex-start;
}

.courses-intro p {
  font-size: 16px;
  color: var(--text-dark-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.course-visual-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  background: var(--bg-paper-card);
}

.course-thumb {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.course-visual-caption {
  padding: 14px 18px;
  font-size: 13px;
  color: var(--text-dark-muted);
  font-style: italic;
  background: var(--bg-paper-subtle);
}

.courses-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.course-item-card {
  background: var(--bg-paper-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.course-item-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 35px rgba(34, 11, 26, 0.08);
  border-color: var(--border-gold);
}

.course-badge {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(212, 146, 52, 0.15);
  color: var(--gold-dark);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
  text-transform: uppercase;
}

.course-item-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.course-summary {
  font-size: 14.5px;
  color: var(--text-dark-muted);
  line-height: 1.65;
  margin-bottom: 18px;
}

.course-meta-points {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  color: var(--text-dark-muted);
  margin-bottom: 22px;
  padding-left: 2px;
}

.course-meta-points span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ==========================================================================
   About Shubham Section
   ========================================================================== */

.about-section {
  padding: 100px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}

.about-lead {
  font-size: 18px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 18px;
}

.about-content p {
  color: var(--text-light-muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.about-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 24px 0;
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  margin-bottom: 32px;
}

.metric-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.metric-num {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--gold-light);
  font-weight: 600;
}

.metric-label {
  font-size: 12px;
  color: var(--text-light-muted);
}

.social-connect-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--text-light-muted);
}

.social-pill {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(250, 245, 235, 0.08);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-pill);
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 500;
  transition: all var(--transition-fast);
}

.social-pill:hover {
  background: var(--gold-primary);
  color: var(--bg-dark);
  border-color: var(--gold-primary);
}

/* Promise Box */
.guarantee-card {
  background: var(--bg-dark-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 38px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.quote-symbol {
  color: var(--gold-primary);
  font-size: 24px;
  display: inline-block;
  margin-bottom: 12px;
}

.guarantee-card h3 {
  font-size: 24px;
  color: var(--text-light);
  margin-bottom: 20px;
}

.promise-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

.promise-list li {
  font-size: 14px;
  color: var(--text-light-muted);
  line-height: 1.55;
}

.promise-list strong {
  color: var(--gold-light);
  display: block;
  margin-bottom: 2px;
}

.promise-cta .btn {
  width: 100%;
}

/* ==========================================================================
   Simplified Booking Section (Dual-Mode)
   ========================================================================== */

.booking-section {
  padding: 100px 0;
  background: var(--bg-paper-subtle);
}

.booking-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.booking-quick-panel, .booking-form-panel {
  background: var(--bg-paper-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
}

.panel-header {
  margin-bottom: 28px;
}

.panel-badge {
  display: inline-block;
  padding: 4px 10px;
  background: var(--wa-green);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.panel-badge-secondary {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(34, 11, 26, 0.08);
  color: var(--text-dark);
  font-size: 11px;
  font-weight: 700;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.panel-header h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.panel-header p {
  font-size: 14px;
  color: var(--text-dark-muted);
}

/* Option 1: Quick Topics */
.quick-topics-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 28px;
}

.topic-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--bg-paper);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  transition: all var(--transition-fast);
}

.topic-btn:hover {
  background: var(--gold-primary);
  color: var(--bg-dark);
  border-color: var(--gold-primary);
  transform: translateX(4px);
}

.topic-icon {
  color: var(--gold-dark);
  font-size: 14px;
}

.topic-btn:hover .topic-icon {
  color: var(--bg-dark);
}

.quick-contact-direct {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-dark-muted);
}

.direct-wa-link {
  color: var(--wa-dark);
  font-weight: 700;
  font-size: 14px;
}

.direct-wa-link:hover {
  text-decoration: underline;
}

/* Option 2: Fast Form */
.fast-booking-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg-paper);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text-dark);
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold-primary);
  background: #ffffff;
  outline: none;
}

.form-group select {
  cursor: pointer;
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-note {
  font-size: 11.5px;
  color: var(--text-dark-muted);
  text-align: center;
  line-height: 1.5;
}

.form-feedback {
  min-height: 20px;
  font-size: 12px;
  font-weight: 600;
  color: #c62828;
  text-align: center;
}

/* Success Card */
.form-success-card {
  text-align: center;
  padding: 30px 20px;
  background: var(--bg-paper);
  border-radius: var(--radius-md);
  border: 1px solid var(--gold-primary);
  margin-top: 10px;
}

.success-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  background: var(--wa-green);
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 16px;
}

.form-success-card h4 {
  font-size: 20px;
  margin-bottom: 8px;
}

.form-success-card p {
  font-size: 14px;
  color: var(--text-dark-muted);
  margin-bottom: 20px;
}

.btn-reset-form {
  margin-top: 16px;
  font-size: 12px;
  color: var(--text-dark-muted);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */

.faq-section {
  padding: 100px 0;
  background: var(--bg-paper);
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--bg-paper-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item:hover {
  border-color: var(--border-gold);
}

.faq-trigger {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  transition: color var(--transition-fast);
}

.faq-trigger:hover {
  color: var(--gold-dark);
}

.faq-chevron {
  font-size: 22px;
  font-weight: 400;
  color: var(--gold-dark);
  transition: transform var(--transition-smooth);
}

.faq-trigger[aria-expanded="true"] .faq-chevron {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 24px 22px;
  font-size: 14.5px;
  color: var(--text-dark-muted);
  line-height: 1.7;
}

/* ==========================================================================
   Site Footer
   ========================================================================== */

.site-footer {
  background: #11050e;
  color: var(--text-light);
  padding: 80px 0 0;
  border-top: 1px solid var(--border-dark);
}

.footer-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 60px;
}

.footer-brand .wordmark {
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--text-light-muted);
  line-height: 1.6;
  max-width: 320px;
}

.footer-nav h4, .footer-social h4 {
  font-family: var(--font-sans);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 18px;
}

.footer-nav ul, .footer-social ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a, .footer-social a {
  font-size: 13.5px;
  color: var(--text-light-muted);
  transition: color var(--transition-fast);
}

.footer-nav a:hover, .footer-social a:hover {
  color: var(--gold-primary);
}

.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding: 24px 0;
  font-size: 12px;
  color: var(--text-light-muted);
}

.bottom-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.disclaimer-text {
  font-size: 11px;
  opacity: 0.7;
}

/* ==========================================================================
   Floating WhatsApp Button
   ========================================================================== */

.floating-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
}

.floating-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--wa-green);
  color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
  position: relative;
}

.floating-wa-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

.floating-tooltip {
  position: absolute;
  right: 70px;
  background: var(--bg-dark);
  color: var(--text-light);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateX(10px);
  transition: all var(--transition-fast);
  border: 1px solid var(--border-gold);
}

.floating-wa-btn:hover .floating-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ==========================================================================
   Scroll Reveal Animations
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-trust-badges {
    justify-content: center;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .spotlight-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .courses-layout {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-layout {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --container-pad: 18px;
  }

  .top-bar {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg-dark);
    border-bottom: 1px solid var(--border-dark);
    padding: 24px var(--container-pad);
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    display: none;
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-whatsapp-btn {
    width: 100%;
    justify-content: center;
  }

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

  .process-steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .process-connector {
    display: none;
  }

  .process-cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }

  .booking-wrapper {
    grid-template-columns: 1fr;
  }

  .booking-quick-panel, .booking-form-panel {
    padding: 28px 20px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .about-metrics {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .bottom-flex {
    flex-direction: column;
    text-align: center;
  }

  .tool-categories {
    grid-template-columns: repeat(3, 1fr);
  }

  .tool-result-panel {
    padding: 32px 24px;
  }

  .result-body-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .result-cta-footer {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
  }

  .result-cta-footer .btn {
    width: 100%;
  }

  .floating-wa {
    bottom: 20px;
    right: 20px;
  }
  
  .floating-wa-btn {
    width: 52px;
    height: 52px;
  }

  .planetarium-container {
    max-width: 380px;
    margin: 20px auto 0;
  }

  .track-1 { width: 90px; height: 90px; }
  .track-2 { width: 140px; height: 140px; }
  .track-3 { width: 190px; height: 190px; }
  .track-4 { width: 240px; height: 240px; }
  .track-5 { width: 290px; height: 290px; }
  .track-6 { width: 340px; height: 340px; }
  .node-axis { width: 360px; height: 360px; }
  
  .hero-badge-standalone {
    margin-top: 18px;
    padding: 7px 16px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .hero-heading {
    font-size: 2.8rem;
  }

  .tool-categories {
    grid-template-columns: repeat(2, 1fr);
  }

  .tool-cat-btn {
    padding: 14px 8px;
    font-size: 11.5px;
  }

  .planetarium-container {
    max-width: 300px;
  }

  .track-1 { width: 75px; height: 75px; }
  .track-2 { width: 115px; height: 115px; }
  .track-3 { width: 155px; height: 155px; }
  .track-4 { width: 195px; height: 195px; }
  .track-5 { width: 235px; height: 235px; }
  .track-6 { width: 275px; height: 275px; }
  .node-axis { width: 285px; height: 285px; }
  
  .sun-body {
    width: 40px;
    height: 40px;
  }
  
  .sun-symbol {
    font-size: 18px;
  }
  
  .hero-badge-standalone {
    white-space: normal;
    text-align: center;
    border-radius: var(--radius-md);
    flex-direction: column;
    gap: 4px;
  }

  .hero-badge-standalone small {
    border-left: 0;
    padding-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
