@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Outfit:wght@300;400;500;600;700&display=swap');

/* CSS Variables */
:root {
  --bg-deep-blue: #030712;
  --bg-royal-blue: #070d1e;
  --bg-card: rgba(10, 20, 42, 0.65);
  --color-saffron: #f97316;
  --color-saffron-hover: #ea580c;
  --color-gold-light: #fef08a;
  --color-gold: #d4af37;
  --color-gold-dark: #b8860b;
  --color-cream: #fafaf9;
  --color-text-muted: #9ca3af;
  --border-gold: rgba(212, 175, 55, 0.25);
  --border-gold-focus: rgba(212, 175, 55, 0.6);
  --glow-saffron: 0 0 15px rgba(249, 115, 22, 0.4);
  --glow-gold: 0 0 15px rgba(212, 175, 55, 0.4);
  --font-title: 'Cinzel', Georgia, serif;
  --font-body: 'Outfit', sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset and Core Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scrollbar-width: thin;
  scrollbar-color: var(--color-gold) var(--bg-deep-blue);
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-deep-blue);
  color: var(--color-cream);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  line-height: 1.6;
}

/* Custom Scrollbar for Chrome/Safari/Edge */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-deep-blue);
}
::-webkit-scrollbar-thumb {
  background: var(--color-gold-dark);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-gold);
}

/* Background Elements */
#star-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
  pointer-events: none;
}

.nebula-glow {
  position: fixed;
  top: -20vh;
  left: -20vw;
  width: 70vw;
  height: 70vh;
  background: radial-gradient(circle, rgba(7, 26, 82, 0.5) 0%, rgba(3, 7, 18, 0) 70%);
  z-index: -2;
  pointer-events: none;
  filter: blur(100px);
}

.nebula-glow-right {
  position: fixed;
  bottom: -20vh;
  right: -20vw;
  width: 70vw;
  height: 70vh;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.1) 0%, rgba(3, 7, 18, 0) 70%);
  z-index: -2;
  pointer-events: none;
  filter: blur(100px);
}

/* Gold Typography & Gradient Texts */
.gold-text {
  background: linear-gradient(135deg, #ffe066 0%, #d4af37 50%, #b8860b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--color-gold);
  font-family: var(--font-title);
  letter-spacing: 1px;
}

.saffron-text {
  color: var(--color-saffron);
  text-shadow: 0 0 10px rgba(249, 115, 22, 0.2);
}

/* Header & Navigation */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(3, 7, 18, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.25rem 2rem;
  transition: var(--transition-smooth);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-icon {
  width: 40px;
  height: 40px;
  fill: var(--color-gold);
  filter: drop-shadow(var(--glow-gold));
}

.logo-text {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.logo-sub {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--color-saffron);
  display: block;
  font-family: var(--font-body);
  margin-top: -2px;
}

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

.nav-link {
  color: var(--color-cream);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: var(--transition-smooth);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: var(--transition-smooth);
  box-shadow: var(--glow-gold);
}

.nav-link:hover {
  color: var(--color-gold-light);
}

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

.nav-link.active {
  color: var(--color-gold);
  font-weight: 600;
}

/* Nav Button */
.cta-button {
  background: linear-gradient(135deg, var(--color-saffron) 0%, #ea580c 100%);
  color: var(--color-cream);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: var(--glow-saffron);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(249, 115, 22, 0.6);
  background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
}

.cta-button-gold {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  box-shadow: var(--glow-gold);
}

.cta-button-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.6);
  background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 100%);
  color: #030712;
}

/* Burger menu for Mobile */
.burger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--color-cream);
  font-size: 1.5rem;
}

/* Page Containers */
main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 2rem;
  position: relative;
  min-height: calc(100vh - 180px);
}

.page-section {
  display: none;
  animation: fadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.page-section.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Glassmorphism Card Style */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  transition: var(--transition-smooth);
}

.glass-card:hover {
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 55, 0.05);
}

/* Hero Section (Home) */
.hero-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
  padding: 2rem 0 5rem;
}

.hero-content h1 {
  font-family: var(--font-title);
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--color-cream);
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 600px;
}

.hero-tagline {
  color: var(--color-saffron);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 3px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-offer {
  display: inline-block;
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.3);
  color: var(--color-saffron);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 2.5rem;
  backdrop-filter: blur(5px);
  animation: pulseGlow 2s infinite ease-in-out;
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 5px rgba(249, 115, 22, 0.2);
  }
  50% {
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.5);
  }
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-gold);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Rotating Zodiac Wheel Design */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.zodiac-wheel-wrapper {
  position: relative;
  width: 420px;
  height: 420px;
}

.zodiac-wheel-svg {
  width: 100%;
  height: 100%;
  animation: rotateWheel 120s linear infinite;
  filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.15));
}

.zodiac-center-sun {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  background: radial-gradient(circle, rgba(255,224,102,1) 0%, rgba(249,115,22,0.8) 40%, rgba(3,7,18,0) 70%);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  box-shadow: 0 0 40px rgba(249, 115, 22, 0.6);
  animation: pulseSun 4s infinite ease-in-out;
}

.zodiac-center-sun svg {
  width: 45px;
  height: 45px;
  fill: var(--color-gold-light);
}

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

@keyframes pulseSun {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 30px rgba(249, 115, 22, 0.6);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 50px rgba(249, 115, 22, 0.9), 0 0 20px rgba(254, 240, 138, 0.4);
  }
}

/* Aura Ring around Zodiac */
.zodiac-ring-aura {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border-radius: 50%;
  border: 1px dashed rgba(212, 175, 55, 0.15);
  animation: rotateWheelReverse 90s linear infinite;
  pointer-events: none;
}

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

/* Features Grid */
.section-title-container {
  text-align: center;
  margin-bottom: 4rem;
}

.section-subtitle {
  color: var(--color-saffron);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  display: block;
}

.section-title {
  font-family: var(--font-title);
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-bottom: 6rem;
}

.feature-card {
  text-align: center;
  padding: 3rem 2rem;
}

.feature-icon-wrapper {
  width: 70px;
  height: 70px;
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--color-gold);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
  transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon-wrapper {
  background: rgba(249, 115, 22, 0.1);
  border-color: rgba(249, 115, 22, 0.4);
  color: var(--color-saffron);
  box-shadow: 0 0 20px rgba(249, 115, 22, 0.2);
  transform: scale(1.08);
}

.feature-icon-wrapper svg {
  width: 32px;
  height: 32px;
}

.feature-card h3 {
  font-family: var(--font-title);
  font-size: 1.35rem;
  margin-bottom: 1rem;
  color: var(--color-cream);
}

.feature-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* Why AI section */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
}

.about-img-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-glow-box {
  width: 80%;
  height: 350px;
  background: linear-gradient(135deg, rgba(7, 13, 30, 0.8) 0%, rgba(13, 27, 42, 0.6) 100%);
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3rem;
  text-align: center;
}

.about-glow-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 180deg at 50% 50%, rgba(212, 175, 55, 0.1) 0deg, transparent 90deg, rgba(249, 115, 22, 0.05) 180deg, transparent 270deg, rgba(212, 175, 55, 0.1) 360deg);
  animation: rotateWheel 20s linear infinite;
}

.about-glow-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  filter: drop-shadow(var(--glow-gold));
  z-index: 1;
}

.about-glow-text {
  font-family: var(--font-title);
  font-size: 1.5rem;
  color: var(--color-gold);
  margin-bottom: 1rem;
  z-index: 1;
}

.about-glow-sub {
  font-size: 0.95rem;
  color: var(--color-cream);
  opacity: 0.8;
  z-index: 1;
}

.about-content h2 {
  font-family: var(--font-title);
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
}

.about-content p {
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.about-features {
  list-style: none;
  margin-top: 2rem;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.about-features svg {
  color: var(--color-gold);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, rgba(10, 20, 42, 0.9) 0%, rgba(7, 13, 30, 0.9) 100%);
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  padding: 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.6);
  margin-bottom: 4rem;
}

.cta-banner::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.1) 0%, rgba(3, 7, 18, 0) 70%);
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
}

.cta-banner-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-banner h2 {
  font-family: var(--font-title);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.cta-banner p {
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
}

/* Interactive Wizard Section (Generate Horoscope) */
.wizard-container {
  max-width: 800px;
  margin: 0 auto;
}

.wizard-header {
  text-align: center;
  margin-bottom: 3rem;
}

.wizard-steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  position: relative;
  padding: 0 1rem;
}

.wizard-steps::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 0;
  transform: translateY(-50%);
}

.wizard-step-progress {
  position: absolute;
  top: 50%;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--color-gold);
  box-shadow: var(--glow-gold);
  z-index: 0;
  transform: translateY(-50%);
  transition: width 0.5s ease;
}

.wizard-step {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--bg-deep-blue);
  border: 2px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--color-text-muted);
  z-index: 1;
  transition: var(--transition-smooth);
  position: relative;
}

.wizard-step.active {
  border-color: var(--color-saffron);
  background: var(--bg-royal-blue);
  color: var(--color-saffron);
  box-shadow: var(--glow-saffron);
}

.wizard-step.completed {
  border-color: var(--color-gold);
  background: var(--color-gold);
  color: var(--bg-deep-blue);
  box-shadow: var(--glow-gold);
}

.wizard-step-label {
  position: absolute;
  top: 55px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
  color: var(--color-text-muted);
  transition: var(--transition-smooth);
}

.wizard-step.active .wizard-step-label {
  color: var(--color-saffron);
  font-weight: 600;
}

.wizard-step.completed .wizard-step-label {
  color: var(--color-gold);
}

.wizard-panel {
  display: none;
}

.wizard-panel.active {
  display: block;
  animation: slideInPanel 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideInPanel {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Wizard Forms */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group-full {
  grid-column: span 2;
}

.form-group label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-gold-light);
  font-weight: 500;
}

.form-group input,
.form-group select {
  background: rgba(3, 7, 18, 0.5);
  border: 1px solid var(--border-gold);
  padding: 0.9rem 1.2rem;
  border-radius: 6px;
  color: var(--color-cream);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-saffron);
  box-shadow: 0 0 10px rgba(249, 115, 22, 0.15);
  background: rgba(3, 7, 18, 0.8);
}

.form-group select option {
  background: var(--bg-royal-blue);
  color: var(--color-cream);
}

/* Payment Panel Details */
.payment-summary-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed rgba(212, 175, 55, 0.2);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.summary-row:last-child {
  margin-bottom: 0;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 600;
}

.payment-contact-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(249, 115, 22, 0.05);
  border: 1px solid rgba(249, 115, 22, 0.2);
  padding: 1.25rem;
  border-radius: 8px;
  margin-bottom: 2.5rem;
}

.payment-contact-icon {
  color: var(--color-saffron);
  font-size: 1.75rem;
}

.payment-contact-info h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.payment-contact-info p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.payment-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Razorpay Simulated Modal */
.payment-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(3, 7, 18, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.payment-modal-backdrop.show {
  display: flex;
}

.payment-modal {
  width: 100%;
  max-width: 450px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  color: #1f2937;
  font-family: 'Outfit', sans-serif;
  animation: modalPop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes modalPop {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.payment-modal-header {
  background: #1c2b5c;
  color: #ffffff;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 4px solid #3b82f6;
}

.payment-modal-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.payment-modal-title img {
  height: 22px;
}

.payment-modal-title h3 {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.payment-modal-amount {
  text-align: right;
}

.payment-modal-amount .amount {
  font-size: 1.25rem;
  font-weight: 700;
}

.payment-modal-amount .subtext {
  font-size: 0.7rem;
  opacity: 0.8;
  text-transform: uppercase;
}

.payment-modal-body {
  padding: 1.5rem;
  background: #f8fafc;
}

.payment-methods-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.payment-method-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 1.25rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  margin-bottom: 0.75rem;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
}

.payment-method-btn:hover {
  border-color: #3b82f6;
  background: #f0fdf4;
}

.payment-method-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.payment-method-icon {
  font-size: 1.5rem;
  color: #3b82f6;
}

.payment-method-text h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1e293b;
}

.payment-method-text p {
  font-size: 0.75rem;
  color: #64748b;
}

.payment-method-arrow {
  color: #94a3b8;
}

/* UPI QR Code Screen */
.payment-qr-screen {
  display: none;
  text-align: center;
  padding: 1rem 0;
}

.qr-code-wrapper {
  background: #ffffff;
  padding: 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.qr-code-img {
  width: 160px;
  height: 160px;
}

.qr-timer {
  font-size: 0.85rem;
  font-weight: 600;
  color: #e11d48;
  margin-bottom: 0.5rem;
}

.qr-instructions {
  font-size: 0.8rem;
  color: #475569;
  max-width: 280px;
  margin: 0 auto 1.5rem;
}

.payment-sim-controls {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.payment-sim-btn {
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
}

.payment-sim-btn.success {
  background: #10b981;
  color: #ffffff;
}

.payment-sim-btn.success:hover {
  background: #059669;
}

.payment-sim-btn.fail {
  background: #ef4444;
  color: #ffffff;
}

.payment-sim-btn.fail:hover {
  background: #dc2626;
}

.payment-sim-btn.back {
  background: #e2e8f0;
  color: #334155;
}

.payment-sim-btn.back:hover {
  background: #cbd5e1;
}

.payment-modal-footer {
  background: #f1f5f9;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: #64748b;
  border-top: 1px solid #e2e8f0;
}

.payment-secure-badge {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.payment-secure-badge svg {
  color: #10b981;
  width: 14px;
}

/* Loading Simulation Panel */
.loading-panel-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem;
  text-align: center;
}

.astronomy-loader-wrapper {
  position: relative;
  width: 180px;
  height: 180px;
  margin-bottom: 3rem;
}

.astronomy-orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(212, 175, 55, 0.3);
}

.astronomy-orbit-ring.one {
  width: 180px;
  height: 180px;
  animation: rotateWheel 15s linear infinite;
}

.astronomy-orbit-ring.two {
  width: 130px;
  height: 130px;
  top: 25px;
  left: 25px;
  animation: rotateWheelReverse 10s linear infinite;
}

.astronomy-orbit-ring.three {
  width: 80px;
  height: 80px;
  top: 50px;
  left: 50px;
  animation: rotateWheel 6s linear infinite;
}

.astronomy-loader-planet {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-saffron);
  box-shadow: var(--glow-saffron);
}

.astronomy-loader-planet.one {
  top: -6px;
  left: calc(50% - 6px);
}

.astronomy-loader-planet.two {
  top: calc(50% - 6px);
  right: -6px;
  background: var(--color-gold);
  box-shadow: var(--glow-gold);
}

.astronomy-loader-center {
  position: absolute;
  top: 75px;
  left: 75px;
  width: 30px;
  height: 30px;
  background: radial-gradient(circle, #fff 0%, var(--color-gold) 60%, transparent 100%);
  border-radius: 50%;
  box-shadow: var(--glow-gold);
  animation: pulseSun 2s infinite ease-in-out;
}

.loading-title {
  font-family: var(--font-title);
  font-size: 1.75rem;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
}

.loading-terminal {
  width: 100%;
  max-width: 550px;
  background: rgba(3, 7, 18, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 1.25rem;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.85rem;
  text-align: left;
  color: #10b981;
  height: 150px;
  overflow-y: auto;
  box-shadow: inset 0 0 15px rgba(0,0,0,0.8);
  margin-bottom: 1rem;
}

.loading-log-line {
  margin-bottom: 0.35rem;
  display: flex;
  gap: 0.5rem;
}

.loading-log-line::before {
  content: '>';
  color: var(--color-saffron);
}

/* Report Viewer Styles */
.report-header {
  border-bottom: 2px solid var(--color-gold);
  padding-bottom: 2rem;
  margin-bottom: 3rem;
  text-align: center;
  position: relative;
}

.report-header::after {
  content: '✦  ✦  ✦';
  color: var(--color-gold);
  letter-spacing: 8px;
  font-size: 0.8rem;
  position: absolute;
  bottom: -9px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-royal-blue);
  padding: 0 1.5rem;
}

.report-meta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 1.5rem;
}

.meta-box {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.meta-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--color-text-muted);
  letter-spacing: 1px;
}

.meta-value {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-gold-light);
}

.report-grid-quick {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.quick-box {
  background: rgba(249, 115, 22, 0.05);
  border: 1px solid rgba(249, 115, 22, 0.15);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
}

.quick-box.gold-box {
  background: rgba(212, 175, 55, 0.05);
  border-color: rgba(212, 175, 55, 0.2);
}

.quick-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}

.quick-val {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 700;
}

.quick-val.gold {
  color: var(--color-gold);
}

.quick-val.saffron {
  color: var(--color-saffron);
}

.report-section-card {
  margin-bottom: 2.5rem;
}

.report-section-card h3 {
  font-family: var(--font-title);
  font-size: 1.5rem;
  color: var(--color-gold);
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
  padding-bottom: 0.75rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.report-section-card h3 svg {
  width: 24px;
  height: 24px;
  color: var(--color-saffron);
}

.report-section-card p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #e5e7eb;
  margin-bottom: 1rem;
}

.remedies-list {
  list-style: none;
  margin-top: 1rem;
}

.remedies-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
}

.remedies-list li::before {
  content: '✦';
  position: absolute;
  left: 0.5rem;
  color: var(--color-gold);
}

.report-download-actions {
  text-align: center;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* Sample Report & FAQs Styles */
.sample-report-card {
  max-width: 900px;
  margin: 0 auto;
}

.faq-container {
  max-width: 850px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 600;
  transition: var(--transition-smooth);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, margin-top 0.4s ease;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  margin-top: 1rem;
}

.faq-icon {
  font-size: 1rem;
  color: var(--color-gold);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* Blog Styles */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.blog-card {
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--border-gold);
  background: var(--bg-card);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.4);
}

.blog-img {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.blog-img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(3,7,18,0) 50%, rgba(3,7,18,0.85) 100%);
}

.blog-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta {
  font-size: 0.75rem;
  color: var(--color-saffron);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.blog-content h3 {
  font-family: var(--font-title);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.blog-content p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.blog-read-more {
  color: var(--color-gold);
  text-decoration: none;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-smooth);
}

.blog-read-more:hover {
  color: var(--color-gold-light);
  gap: 0.75rem;
}

/* Contact Styles */
.contact-container {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-info-panel h2 {
  font-family: var(--font-title);
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.contact-info-panel p {
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
}

.contact-method {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.contact-icon-box {
  width: 45px;
  height: 45px;
  background: rgba(212,175,55,0.05);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  flex-shrink: 0;
}

.contact-method-text h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-method-text p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.contact-disclaimer {
  margin-top: 3rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 1.5rem;
}

.alert-success {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #10b981;
  padding: 1rem;
  border-radius: 6px;
  margin-bottom: 1.5rem;
  display: none;
}

/* Footer */
footer {
  background: #02040a;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 4rem 2rem 2rem;
  margin-top: 5rem;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-about p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin: 1.25rem 0;
  max-width: 400px;
}

.footer-links h4 {
  font-family: var(--font-title);
  font-size: 1.1rem;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.footer-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-menu a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.footer-menu a:hover {
  color: var(--color-gold-light);
  padding-left: 0.25rem;
}

.footer-disclaimer-box {
  grid-column: span 3;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-copyright {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.footer-disclaimer-text {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  max-width: 750px;
  line-height: 1.4;
}

/* PDF Print styles */
@media print {
  body {
    background: white !important;
    color: black !important;
  }
  .no-print {
    display: none !important;
  }
  .report-section-card {
    page-break-inside: avoid;
  }
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  .hero-content h1 {
    font-size: 3rem;
  }
  .hero-subtitle {
    margin: 0 auto 2rem;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
  }
  .about-section {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .contact-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  header {
    padding: 1rem;
  }
  .burger {
    display: block;
  }
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--bg-royal-blue);
    flex-direction: column;
    padding: 3rem 2rem;
    gap: 2rem;
    transition: var(--transition-smooth);
    z-index: 99;
    align-items: flex-start;
  }
  .nav-menu.open {
    left: 0;
  }
  .nav-link {
    font-size: 1.1rem;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-group-full {
    grid-column: span 1;
  }
  .report-grid-quick {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-disclaimer-box {
    grid-column: span 1;
    flex-direction: column;
    align-items: flex-start;
  }
  .zodiac-wheel-wrapper {
    width: 320px;
    height: 320px;
  }
  .zodiac-center-sun {
    width: 70px;
    height: 70px;
  }
  .zodiac-center-sun svg {
    width: 35px;
    height: 35px;
  }
}
