/* ============================================================
   ASTRO DR. RAAMJI — MAIN STYLESHEET
   Theme: Premium Vedic Cosmic Dark
   Fonts: Cinzel (headings) + Cormorant Garamond (body) + Lato (ui)
   ============================================================ */

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  /* Colours */
  --navy:        #050814;
  --navy-mid:    #0a0f2e;
  --navy-light:  #0d1640;
  --purple:      #1a0a3a;
  --purple-mid:  #2d1060;
  --purple-light:#4a1a8c;
  --gold:        #c9a84c;
  --gold-light:  #e8c87a;
  --gold-bright: #f5d98a;
  --gold-dim:    #8a6e32;
  --white:       #ffffff;
  --off-white:   #f0eadc;
  --silver:      #a8a8c0;
  --text-body:   #c8c0d8;
  --text-muted:  #7a7090;
  --card-bg:     rgba(15, 10, 40, 0.85);
  --card-border: rgba(201, 168, 76, 0.2);
  --card-hover-border: rgba(201, 168, 76, 0.6);
  --green-success: #4caf8c;

  /* Typography */
  --font-display: 'Cinzel', serif;
  --font-body:    'Cormorant Garamond', serif;
  --font-ui:      'Lato', sans-serif;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  6rem;

  /* Radii */
  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-xl: 40px;

  /* Transitions */
  --transition-fast:   0.2s ease;
  --transition-mid:    0.35s ease;
  --transition-slow:   0.6s cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadows */
  --shadow-gold:    0 0 24px rgba(201,168,76,0.25), 0 0 60px rgba(201,168,76,0.1);
  --shadow-purple:  0 8px 40px rgba(74,26,140,0.4);
  --shadow-card:    0 4px 30px rgba(0,0,0,0.5);

  /* Sizes */
  --header-h: 80px;
  --container-max: 1200px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--navy);
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.7;
  overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* Selection */
::selection { background: var(--gold); color: var(--navy); }

/* ===== STAR CANVAS ===== */
#starCanvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.6;
}

/* ===== CONTAINER ===== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-md);
  position: relative;
  z-index: 1;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--off-white);
  line-height: 1.2;
  letter-spacing: 0.03em;
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--gold); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--gold-bright); }

address { font-style: normal; }

/* ===== GOLD GRADIENT TEXT ===== */
.gold-gradient {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-bright) 40%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* ===== SECTION COMMON ===== */
.section {
  padding: var(--space-xl) 0;
  position: relative;
  z-index: 1;
}

.section-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60vw;
  height: 60vw;
  max-width: 700px;
  max-height: 700px;
  background: radial-gradient(circle, rgba(74,26,140,0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-lg);
}

.section-tag {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 0.3rem 1rem;
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-sm);
}

.section-title {
  margin-bottom: var(--space-sm);
}

.section-desc {
  color: var(--text-body);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-xl);
  cursor: pointer;
  border: none;
  transition: all var(--transition-mid);
  text-decoration: none;
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 60%, var(--gold-light) 100%);
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.6);
  color: var(--navy);
}
.btn-gold:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: var(--gold-light);
  border: 1.5px solid var(--gold);
}
.btn-outline:hover {
  background: rgba(201,168,76,0.1);
  color: var(--gold-bright);
  transform: translateY(-2px);
}

.btn-service {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-xl);
  transition: all var(--transition-mid);
  margin-top: auto;
  text-decoration: none;
}
.btn-service:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.btn-full { width: 100%; justify-content: center; padding: 1rem; font-size: 1rem; }

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25d366;
  color: white;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-xl);
  transition: all var(--transition-mid);
  text-decoration: none;
}
.btn-whatsapp:hover {
  background: #1da851;
  color: white;
  transform: translateY(-2px);
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 1000;
  transition: all var(--transition-mid);
  background: transparent;
}

.header.scrolled {
  background: rgba(5, 8, 20, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  box-shadow: 0 4px 30px rgba(0,0,0,0.6);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-symbol {
  font-size: 2rem;
  color: var(--gold);
  filter: drop-shadow(0 0 8px rgba(201,168,76,0.6));
  line-height: 1;
}

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

.logo-main {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--off-white);
  letter-spacing: 0.05em;
  line-height: 1.1;
}

.logo-sub {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Navigation */
.nav-list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-link {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--silver);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  text-decoration: none;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold-bright);
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy) !important;
  font-weight: 700;
  padding: 0.55rem 1.2rem;
  border-radius: var(--radius-xl);
  margin-left: 0.5rem;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(201,168,76,0.4);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all var(--transition-mid);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-h) + 2rem) var(--space-md) var(--space-lg);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(45,16,96,0.5) 0%, rgba(5,8,20,0.85) 60%, var(--navy) 100%);
  z-index: 1;
}

.constellation-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 15% 25%, rgba(201,168,76,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 85% 15%, rgba(201,168,76,0.3) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 40% 60%, rgba(201,168,76,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 70% 75%, rgba(201,168,76,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 25% 80%, rgba(201,168,76,0.2) 0%, transparent 100%),
    radial-gradient(2px 2px at 60% 30%, rgba(255,255,255,0.15) 0%, transparent 100%);
  z-index: 1;
  animation: constellationPulse 8s ease-in-out infinite alternate;
}

@keyframes constellationPulse {
  from { opacity: 0.5; }
  to   { opacity: 1; }
}

.hero-content {
  text-align: center;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.25);
  padding: 0.4rem 1.2rem;
  border-radius: var(--radius-xl);
  backdrop-filter: blur(10px);
  margin-bottom: 0.5rem;
}

.badge-star {
  animation: spin 8s linear infinite;
  display: inline-block;
}

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

.hero-title {
  color: var(--off-white);
  font-weight: 700;
  text-shadow: 0 2px 20px rgba(0,0,0,0.6);
  margin-bottom: 0.5rem;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text-body);
  max-width: 600px;
  margin-bottom: 0.5rem;
}

.hero-ctas {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  justify-content: center;
  margin: var(--space-sm) 0;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-top: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
}

.stat-item strong {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold-bright);
  line-height: 1;
}

.stat-item span {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.3), transparent);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.hero-scroll-hint span {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-arrow {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold-dim), transparent);
  animation: scrollDown 1.8s ease-in-out infinite;
}

@keyframes scrollDown {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

/* ===== ABOUT SECTION ===== */
.about-section {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 50%, var(--navy) 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-image-wrap {
  display: flex;
  justify-content: center;
}

.about-image-frame {
  position: relative;
  width: 380px;
  max-width: 100%;
}

.about-image-placeholder {
  width: 320px;
  height: 320px;
  margin: 60px auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.astrologer-icon {
  position: relative;
  z-index: 2;
  width: 130px;
  height: 130px;
  background: radial-gradient(circle, var(--purple-mid) 0%, var(--purple) 100%);
  border: 2px solid var(--gold-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
}

.big-symbol { font-size: 3.5rem; }

.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.2);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: orbit 20s linear infinite;
}

.ring-1 { width: 180px; height: 180px; animation-duration: 15s; }
.ring-2 { width: 240px; height: 240px; animation-duration: 22s; animation-direction: reverse; border-color: rgba(201,168,76,0.12); }
.ring-3 { width: 310px; height: 310px; animation-duration: 30s; border-color: rgba(201,168,76,0.08); }

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

.zodiac-float {
  position: absolute;
  font-size: 1.4rem;
  color: var(--gold);
  opacity: 0.6;
  animation: floatZodiac 6s ease-in-out infinite;
}
.z1 { top: 10px; left: 30px; animation-delay: 0s; }
.z2 { top: 30px; right: 20px; animation-delay: 1.5s; }
.z3 { bottom: 20px; left: 20px; animation-delay: 3s; }
.z4 { bottom: 10px; right: 30px; animation-delay: 4.5s; }

@keyframes floatZodiac {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-12px) rotate(15deg); }
}

.about-text .section-tag { margin-bottom: 0.75rem; }

.about-intro {
  font-size: 1.2rem;
  color: var(--off-white);
  font-weight: 400;
  margin-bottom: 1rem;
}

.about-body {
  color: var(--text-body);
  margin-bottom: 0.75rem;
}

.about-mission {
  padding: var(--space-sm) var(--space-md);
  border-left: 3px solid var(--gold);
  background: rgba(201,168,76,0.06);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: var(--space-sm) 0;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: var(--gold-light);
  font-size: 1.05rem;
  font-style: italic;
}

.mission-icon { color: var(--gold); margin-top: 0.1rem; flex-shrink: 0; }

.about-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-top: var(--space-sm);
}

.cred-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-light);
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-xl);
}

/* ===== SERVICES SECTION ===== */
.services-section {
  background: var(--navy-mid);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-sm);
}

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: all var(--transition-mid);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

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

.service-card:hover {
  border-color: var(--card-hover-border);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}

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

.service-card--highlight {
  border-color: rgba(201,168,76,0.4);
  background: linear-gradient(135deg, rgba(45,16,96,0.6) 0%, rgba(15,10,40,0.9) 100%);
}

.service-icon {
  font-size: 2.5rem;
  line-height: 1;
  filter: drop-shadow(0 0 8px rgba(201,168,76,0.5));
  transition: transform var(--transition-mid);
}

.service-card:hover .service-icon {
  transform: scale(1.15) rotate(5deg);
}

.service-title {
  font-size: 1.1rem;
  color: var(--off-white);
  font-weight: 600;
}

.service-desc {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.6;
  flex-grow: 1;
  margin: 0;
}

/* ===== WHY SECTION ===== */
.why-section {
  background: var(--navy);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--space-sm);
}

.why-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  text-align: center;
  transition: all var(--transition-mid);
}

.why-card:hover {
  border-color: var(--card-hover-border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.why-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.75rem;
}

.why-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--gold-light);
}

.why-card p {
  font-size: 0.95rem;
  color: var(--text-body);
  margin: 0;
}

/* ===== PROCESS SECTION ===== */
.process-section {
  background: var(--navy-mid);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm);
  position: relative;
  align-items: start;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  position: relative;
}

.step-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(201,168,76,0.1);
  line-height: 1;
  letter-spacing: -0.02em;
}

.step-connector {
  position: absolute;
  top: 1.2rem;
  left: calc(50% + 60px);
  right: calc(-50% + 60px);
  height: 1px;
  background: linear-gradient(to right, var(--gold-dim), transparent);
  display: none;
}

.process-step:not(:last-child) .step-connector { display: block; }

.step-icon {
  font-size: 2rem;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 50%;
}

.process-step h3 {
  font-size: 1rem;
  color: var(--off-white);
}

.process-step p {
  font-size: 0.9rem;
  color: var(--text-body);
  margin: 0;
}

/* ===== FREE KUNDALI SECTION ===== */
.kundali-section {
  background: var(--navy);
}

.kundali-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-xl);
  align-items: start;
}

.kundali-info .section-tag { margin-bottom: 0.75rem; }

.kundali-info p {
  font-size: 1.05rem;
  color: var(--text-body);
  margin-bottom: var(--space-sm);
}

.kundali-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.kundali-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  color: var(--off-white);
}

.kundali-features li span {
  color: var(--gold);
  font-size: 0.7rem;
}

/* ===== FORMS ===== */
.cosmic-form {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  backdrop-filter: blur(20px);
}

.form-title {
  font-size: 1.3rem;
  font-family: var(--font-display);
  color: var(--off-white);
  margin-bottom: var(--space-sm);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

label {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

input, textarea, select {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  color: var(--off-white);
  font-family: var(--font-body);
  font-size: 1rem;
  width: 100%;
  transition: all var(--transition-fast);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

input::placeholder, textarea::placeholder {
  color: var(--text-muted);
  font-style: italic;
}

input:focus, textarea:focus, select:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,0.05);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}

input.error, textarea.error, select.error {
  border-color: #e55a5a;
  box-shadow: 0 0 0 3px rgba(229,90,90,0.1);
}

select option {
  background: var(--navy-mid);
  color: var(--off-white);
}

textarea { resize: vertical; min-height: 100px; }

.field-error {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: #e55a5a;
  min-height: 1em;
  display: block;
}

.form-success {
  background: rgba(76,175,140,0.12);
  border: 1px solid rgba(76,175,140,0.3);
  border-radius: var(--radius-md);
  padding: var(--space-sm);
  color: #7de8c2;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  margin-top: var(--space-sm);
  text-align: center;
  line-height: 1.5;
}

/* Date input calendar icon colour fix */
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
  filter: invert(0.7) sepia(1) saturate(3) hue-rotate(5deg);
  cursor: pointer;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
  background: var(--navy-mid);
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform var(--transition-slow);
  will-change: transform;
}

.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  flex: 0 0 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  backdrop-filter: blur(10px);
  margin: 0 auto;
}

/* Multi-item visible at once via clipping */
@media (min-width: 900px) {
  .testimonial-slider { overflow: hidden; }
  .testimonial-track {
    gap: var(--space-sm);
  }
  .testimonial-card {
    flex: 0 0 calc(50% - 0.5rem);
  }
}

@media (min-width: 1100px) {
  .testimonial-card {
    flex: 0 0 calc(33.333% - 0.67rem);
  }
}

.testi-stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
}

.testi-text {
  font-style: italic;
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.7;
  flex-grow: 1;
  margin: 0;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid rgba(201,168,76,0.1);
  padding-top: var(--space-sm);
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-light), var(--gold-dim));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--off-white);
  flex-shrink: 0;
  border: 1px solid rgba(201,168,76,0.3);
}

.testi-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--off-white);
  font-style: normal;
  display: block;
}

.testi-role {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.25);
  color: var(--gold);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}
.slider-btn:hover {
  background: var(--gold);
  color: var(--navy);
}

.slider-dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(201,168,76,0.2);
  border: 1px solid rgba(201,168,76,0.3);
  cursor: pointer;
  transition: all var(--transition-fast);
  padding: 0;
}

.slider-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* ===== FAQ SECTION ===== */
.faq-section { background: var(--navy); }

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

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

.faq-item:hover {
  border-color: rgba(201,168,76,0.35);
}

.faq-item.open {
  border-color: rgba(201,168,76,0.4);
  box-shadow: 0 0 20px rgba(201,168,76,0.08);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.1rem var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  cursor: pointer;
  text-align: left;
  color: var(--off-white);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color var(--transition-fast);
}

.faq-question:hover { color: var(--gold-light); }

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--gold);
  transition: all var(--transition-mid);
  line-height: 1;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--gold);
  color: var(--navy);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow), padding var(--transition-mid);
  padding: 0 var(--space-md);
}

.faq-answer.open {
  padding: 0 var(--space-md) var(--space-md);
}

.faq-answer p {
  color: var(--text-body);
  font-size: 1rem;
  line-height: 1.75;
  margin: 0;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(201,168,76,0.1);
}

/* ===== BOOKING SECTION ===== */
.booking-section { background: var(--navy-mid); }

.booking-wrap {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.booking-info {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  backdrop-filter: blur(20px);
}

.booking-info-title {
  font-size: 1.2rem;
  margin-bottom: var(--space-sm);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

.consult-option {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(201,168,76,0.08);
}

.consult-option:last-of-type { border-bottom: none; }

.consult-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.consult-option strong {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--off-white);
  display: block;
}

.consult-option p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0.2rem 0 0;
}

.quick-contact {
  margin-top: var(--space-md);
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(201,168,76,0.15);
}

.quick-contact p {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

/* ===== CONTACT SECTION ===== */
.contact-section { background: var(--navy); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.contact-item h3 {
  font-size: 0.85rem;
  font-family: var(--font-ui);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.contact-item address,
.contact-item a,
.contact-item span {
  font-size: 0.95rem;
  color: var(--text-body);
}

.contact-note {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.map-placeholder {
  background: rgba(201,168,76,0.04);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-lg);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.map-inner { color: var(--text-muted); }
.map-inner span { font-size: 3rem; display: block; margin-bottom: 0.5rem; }
.map-inner p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }
.map-inner small { font-size: 0.75rem; }

/* ===== CTA BANNER ===== */
.cta-banner {
  position: relative;
  background: linear-gradient(135deg, var(--purple) 0%, var(--navy-mid) 50%, var(--purple-mid) 100%);
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: var(--space-xl) var(--space-md);
  text-align: center;
  overflow: hidden;
  z-index: 1;
}

.cta-stars {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(1px 1px at 20% 40%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 80% 20%, rgba(255,255,255,0.2) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 60% 80%, rgba(201,168,76,0.3) 0%, transparent 100%);
  z-index: 0;
}

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

.cta-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  color: var(--off-white);
  margin-bottom: var(--space-xs);
}

.cta-content p {
  font-size: 1.1rem;
  color: var(--text-body);
  margin-bottom: var(--space-md);
}

.cta-buttons {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
  position: relative;
  z-index: 1;
  background: var(--navy);
  border-top: 1px solid rgba(201,168,76,0.1);
}

.footer-top {
  padding: var(--space-xl) 0 var(--space-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-lg);
}

.footer-logo { margin-bottom: var(--space-sm); }

.footer-tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}

.social-links {
  display: flex;
  gap: 0.5rem;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.2);
  background: rgba(201,168,76,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--silver);
  transition: all var(--transition-fast);
}

.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

.footer-nav-title {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

.footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-nav ul li a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.footer-nav ul li a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

.footer-contact { display: flex; flex-direction: column; gap: 0.75rem; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.footer-contact-item span { flex-shrink: 0; margin-top: 0.1rem; }

.footer-contact-item a {
  color: var(--text-muted);
}

.footer-contact-item a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  padding: var(--space-sm) 0;
  border-top: 1px solid rgba(201,168,76,0.08);
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-align: center;
}

.footer-bottom p {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0;
}

.footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: var(--gold); }

.footer-disclaimer {
  font-style: italic;
  opacity: 0.6;
  font-size: 0.72rem !important;
}

/* ===== FLOATING BUTTONS ===== */
.back-to-top {
  position: fixed;
  bottom: 7rem;
  right: 1.5rem;
  z-index: 999;
  width: 44px;
  height: 44px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  color: var(--gold);
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-mid);
  backdrop-filter: blur(10px);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #25d366;
  color: white;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.65rem 1.2rem 0.65rem 0.85rem;
  border-radius: var(--radius-xl);
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all var(--transition-mid);
  text-decoration: none;
}

.whatsapp-float:hover {
  background: #1da851;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Staggered children */
.services-grid .reveal:nth-child(2) { transition-delay: 0.05s; }
.services-grid .reveal:nth-child(3) { transition-delay: 0.1s; }
.services-grid .reveal:nth-child(4) { transition-delay: 0.15s; }
.services-grid .reveal:nth-child(5) { transition-delay: 0.2s; }
.services-grid .reveal:nth-child(6) { transition-delay: 0.25s; }
.services-grid .reveal:nth-child(7) { transition-delay: 0.3s; }
.services-grid .reveal:nth-child(8) { transition-delay: 0.35s; }

.why-grid .reveal:nth-child(2) { transition-delay: 0.06s; }
.why-grid .reveal:nth-child(3) { transition-delay: 0.12s; }
.why-grid .reveal:nth-child(4) { transition-delay: 0.18s; }
.why-grid .reveal:nth-child(5) { transition-delay: 0.24s; }
.why-grid .reveal:nth-child(6) { transition-delay: 0.3s; }

.process-steps .reveal:nth-child(2) { transition-delay: 0.1s; }
.process-steps .reveal:nth-child(3) { transition-delay: 0.2s; }
.process-steps .reveal:nth-child(4) { transition-delay: 0.3s; }

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 1024px) {
  :root { --header-h: 70px; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .about-image-wrap { display: none; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
  }

  .booking-wrap {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }
}

/* Mobile Large */
@media (max-width: 768px) {
  :root {
    --header-h: 64px;
    --space-xl: 4rem;
    --space-lg: 2.5rem;
  }

  /* Mobile Nav */
  .hamburger { display: flex; }

  .nav {
    position: fixed;
    top: 0; right: 0;
    width: min(320px, 85vw);
    height: 100vh;
    background: rgba(5,8,20,0.98);
    backdrop-filter: blur(20px);
    transform: translateX(100%);
    transition: transform var(--transition-slow);
    z-index: 1000;
    overflow-y: auto;
    border-left: 1px solid rgba(201,168,76,0.15);
    padding: calc(var(--header-h) + 1rem) 0 2rem;
  }

  .nav.open { transform: translateX(0); }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0 var(--space-md);
  }

  .nav-list li { width: 100%; }

  .nav-link {
    display: block;
    width: 100%;
    padding: 0.9rem 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(201,168,76,0.08);
  }

  .nav-cta {
    margin: var(--space-sm) 0 0;
    text-align: center;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy) !important;
    padding: 0.75rem;
    border-radius: var(--radius-md);
  }

  /* Forms */
  .form-row { grid-template-columns: 1fr; }

  /* Sections */
  .kundali-wrap,
  .contact-grid,
  .booking-wrap {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
  }

  .step-connector { display: none !important; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .hero-stats {
    gap: var(--space-sm);
    padding: var(--space-xs) var(--space-sm);
    flex-wrap: wrap;
    justify-content: center;
  }

  .stat-divider { display: none; }

  /* Testimonials */
  .testimonial-card { flex: 0 0 100%; }

  /* Footer */
  .footer-bottom-inner { text-align: center; }
}

/* Mobile Small */
@media (max-width: 480px) {
  :root { --space-xl: 3rem; }

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

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

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

  .about-credentials { flex-direction: column; }

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

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

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.2s !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
