/* =====================================================
   AstroGuide - Main Stylesheet
   Premium Astrology Website Design
   Dark Navy / Purple Theme with Gold Accents
   ===================================================== */

/* ===================== CSS VARIABLES ===================== */
:root {
  /* Colors - Premium Dark Purple + Lavender Glow Palette */
  --bg-primary: #0a0416; /* Deep dark purple space background */
  --bg-secondary: #130925; /* Dark violet-purple */
  --bg-tertiary: #1b0e35; /* Cosmic purple background */
  --bg-card: rgba(19, 9, 37, 0.7); /* Deep purple transparent card background */
  --bg-glass: rgba(19, 9, 37, 0.6); /* Glassmorphic card back on dark bg */
  --bg-glass-hover: rgba(30, 15, 58, 0.85);

  /* Purple Spectrum */
  --purple-deep: #0a0416; /* Deep luxury purple */
  --purple-mid: #681f96;  /* Rich purple/violet from logo lotus */
  --purple-light: #b75be3; /* Glowing lavender from logo center */
  --purple-glow: rgba(183, 91, 227, 0.15);

  /* Gold Accent System - Premium Soft Gold */
  --gold-primary: #c59b27; /* Rich luxury gold from logo text */
  --gold-secondary: #d4af37; /* Warm accent gold */
  --gold-light: #ffe5aa;
  --gold-dark: #8c6d1f;
  --gold-glow: rgba(197, 155, 39, 0.25);

  /* Text Colors */
  --text-primary: #f5f0ff; /* Off-white with purple tint, highly readable on dark bg */
  --text-secondary: #c5b2e5; /* Soft elegant lavender-gray */
  --text-muted: #8b7ca3; /* Muted lavender-gray */
  --text-gold: #ffd700;

  /* Gradients */
  --gradient-hero: linear-gradient(135deg, #13072e 0%, #070314 50%, #1c0529 100%); /* Deep dark cosmic space */
  --gradient-gold: linear-gradient(135deg, #d4af37 0%, #c59b27 50%, #8c6d1f 100%);
  --gradient-purple: linear-gradient(135deg, #b75be3 0%, #681f96 100%);
  --gradient-card: linear-gradient(145deg, rgba(27, 14, 53, 0.8) 0%, rgba(13, 6, 26, 0.8) 100%);
  --gradient-cosmic: linear-gradient(180deg, #0a0416 0%, #130925 50%, #1b0e35 100%);

  /* Borders */
  --border-glass: 1px solid rgba(179, 136, 255, 0.18);
  --border-gold: 1px solid rgba(212, 175, 55, 0.45);
  --border-purple: 1px solid rgba(179, 136, 255, 0.25);

  /* Shadows */
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 40px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 0 30px rgba(212, 175, 55, 0.25);
  --shadow-purple: 0 0 40px rgba(179, 136, 255, 0.15);
  --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.4);

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

  /* Spacing */
  --section-padding: 100px 0;
  --container-width: 1240px;
  --container-padding: 0 20px;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: all 0.2s ease;
  --transition-mid: all 0.35s ease;
  --transition-slow: all 0.5s ease;
  --transition-bounce: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Navbar */
  --navbar-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--navbar-height);
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: var(--transition-fast); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/*
 * FIX: Ensure the HTML `hidden` attribute always works.
 * The browser's user-agent `[hidden]{display:none}` has the lowest specificity,
 * so any CSS `display` rule (e.g. display:flex) on the same element overrides it.
 * This rule prevents that from happening anywhere on the page.
 */
[hidden] { display: none !important; }

/* ===================== UTILITY CLASSES ===================== */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

.section-padding { padding: var(--section-padding); }

.gradient-text {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glass-card {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: var(--border-glass);
  border-radius: var(--radius-lg);
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  transition: var(--transition-mid);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: none;
  text-decoration: none;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: var(--transition-fast);
}

.btn:hover::before { opacity: 1; }

/* Gold Button */
.btn-gold {
  background: var(--gradient-gold);
  color: #1a0933;
  box-shadow: var(--shadow-gold), 0 4px 15px rgba(212, 175, 55, 0.2);
  animation: button-glow 3s infinite alternate;
}

@keyframes button-glow {
  0% { box-shadow: 0 0 15px rgba(212, 175, 55, 0.2), 0 4px 15px rgba(212, 175, 55, 0.15); }
  50% { box-shadow: 0 0 25px rgba(212, 175, 55, 0.5), 0 4px 20px rgba(212, 175, 55, 0.25); }
  100% { box-shadow: 0 0 15px rgba(212, 175, 55, 0.2), 0 4px 15px rgba(212, 175, 55, 0.15); }
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(212, 175, 55, 0.4), 0 8px 25px rgba(212, 175, 55, 0.3);
  filter: brightness(1.05);
}

.btn-gold:active { transform: translateY(0); }

/* Outline Button */
.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(94, 59, 155, 0.25);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  border-color: var(--purple-light);
  color: var(--purple-deep);
  background: rgba(142, 98, 217, 0.06);
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(142, 98, 217, 0.1);
}

/* WhatsApp Button */
.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
  filter: brightness(1.05);
}

/* Size Variants */
.btn-sm { padding: 10px 20px; font-size: 0.875rem; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-full { width: 100%; }

/* ===================== SECTION HEADERS ===================== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(246, 201, 14, 0.08);
  border: var(--border-gold);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-primary);
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.navbar.scrolled {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: var(--border-glass);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-frame {
  width: 48px;
  height: 48px;
  max-width: 48px;
  max-height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #ffffff;
  box-shadow: 0 0 12px var(--gold-glow), 0 0 8px rgba(142, 98, 217, 0.15);
  transition: var(--transition-mid);
  cursor: pointer;
}

.logo-frame:hover {
  transform: scale(1.08);
  box-shadow: 0 0 20px var(--gold-glow), 0 0 12px rgba(142, 98, 217, 0.3);
  border-color: var(--gold-light);
}

.logo-img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  display: block;
}

.logo-icon {
  font-size: 1.55rem;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
  animation: pulse-glow 3s ease-in-out infinite;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 1px;
}

.logo-highlight { color: var(--gold-primary); }

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold-primary);
  border-radius: var(--radius-full);
  transition: var(--transition-mid);
}

.nav-link:hover { color: var(--text-primary); }
.nav-link:hover::after, .nav-link.active::after { width: 20px; }
.nav-link.active { color: var(--gold-primary); }

.nav-actions { display: flex; align-items: center; gap: 16px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-fast);
}

.bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: var(--radius-full);
  transition: var(--transition-mid);
}

.hamburger.active .bar:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active .bar:nth-child(2) { opacity: 0; transform: translateX(-8px); }
.hamburger.active .bar:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border-bottom: var(--border-glass);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateY(-20px);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-mid);
  box-shadow: var(--shadow-md);
}

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

.mobile-menu .mobile-link,
.mobile-menu .btn,
.mobile-menu .mobile-menu-header {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.mobile-menu.open .mobile-link,
.mobile-menu.open .btn,
.mobile-menu.open .mobile-menu-header {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.open .mobile-menu-header { transition-delay: 0.02s; }
.mobile-menu.open .mobile-link:nth-child(2) { transition-delay: 0.06s; }
.mobile-menu.open .mobile-link:nth-child(3) { transition-delay: 0.1s; }
.mobile-menu.open .mobile-link:nth-child(4) { transition-delay: 0.14s; }
.mobile-menu.open .mobile-link:nth-child(5) { transition-delay: 0.18s; }
.mobile-menu.open .mobile-link:nth-child(6) { transition-delay: 0.22s; }
.mobile-menu.open .mobile-link:nth-child(7) { transition-delay: 0.26s; }
.mobile-menu.open .mobile-link:nth-child(8) { transition-delay: 0.3s; }
.mobile-menu.open .btn { transition-delay: 0.34s; }

.mobile-link {
  padding: 14px 20px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
  border: 1px solid transparent;
}

.mobile-link:hover {
  color: var(--gold-primary);
  background: rgba(246, 201, 14, 0.05);
  border-color: rgba(246, 201, 14, 0.15);
}

.mobile-cta { margin-top: 8px; text-align: center; }

/* ===================== HERO SECTION ===================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--navbar-height);
}

/* Stars Background */
.stars-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.stars {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(1px 1px at 10% 20%, rgba(142, 98, 217, 0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 30% 60%, rgba(212, 175, 55, 0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 50% 30%, rgba(142, 98, 217, 0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 70% 80%, rgba(212, 175, 55, 0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 15%, rgba(142, 98, 217, 0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 15% 85%, rgba(212, 175, 55, 0.25) 0%, transparent 100%),
    radial-gradient(1px 1px at 45% 10%, rgba(142, 98, 217, 0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 80% 50%, rgba(142, 98, 217, 0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 25% 40%, rgba(212, 175, 55, 0.2) 0%, transparent 100%),
    radial-gradient(1px 1px at 60% 70%, rgba(142, 98, 217, 0.2) 0%, transparent 100%),
    radial-gradient(2px 2px at 5% 55%, rgba(212, 175, 55, 0.25) 0%, transparent 100%),
    radial-gradient(2px 2px at 85% 30%, rgba(212, 175, 55, 0.2) 0%, transparent 100%),
    radial-gradient(1px 1px at 55% 90%, rgba(142, 98, 217, 0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 35% 5%, rgba(142, 98, 217, 0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 75% 95%, rgba(212, 175, 55, 0.2) 0%, transparent 100%);
}

.layer-1 { animation: twinkle 4s ease-in-out infinite; }
.layer-2 { animation: twinkle 6s ease-in-out infinite reverse; opacity: 0.7; }
.layer-3 { animation: twinkle 8s ease-in-out infinite; opacity: 0.5; transform: scale(1.5); }

/* Hero Container */
.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 80px;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(246, 201, 14, 0.08);
  border: var(--border-gold);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gold-light);
  margin-bottom: 24px;
}

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

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.trust-icon { font-size: 1rem; }

/* Hero Illustration */
.hero-illustration {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 500px;
}

.astro-orb {
  position: relative;
  width: 320px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orb-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
}

.ring-1 {
  inset: 0;
  border-color: rgba(246, 201, 14, 0.2);
  animation: orbit-rotate 20s linear infinite;
}

.ring-2 {
  inset: -30px;
  border-color: rgba(107, 70, 193, 0.3);
  animation: orbit-rotate 30s linear infinite reverse;
  border-style: dashed;
}

.ring-3 {
  inset: -60px;
  border-color: rgba(246, 201, 14, 0.1);
  animation: orbit-rotate 45s linear infinite;
}

.orb-center {
  position: relative;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle at 40% 40%, #3d1b8e, #1a0a3e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 60px rgba(107, 70, 193, 0.5), 0 0 120px rgba(107, 70, 193, 0.2), inset 0 0 30px rgba(246, 201, 14, 0.1);
  border: 1px solid rgba(246, 201, 14, 0.3);
}

.orb-emoji {
  font-size: 4rem;
  filter: drop-shadow(0 0 20px rgba(246, 201, 14, 0.8));
  animation: pulse-glow 3s ease-in-out infinite;
}

.zodiac-orbit {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  animation: orbit-rotate 25s linear infinite;
}

.zodiac-planet {
  position: absolute;
  font-size: 1.1rem;
  filter: drop-shadow(0 0 8px rgba(246, 201, 14, 0.6));
  transform-origin: 130px 130px;
  top: 50%;
  left: 50%;
  margin-top: -11px;
  margin-left: -8px;
  transform: rotate(var(--angle)) translateX(130px) rotate(calc(-1 * var(--angle)));
}

/* Floating Elements */
.float-element {
  position: absolute;
  font-size: 1.5rem;
  filter: drop-shadow(0 0 10px rgba(246, 201, 14, 0.6));
  animation: float 3s ease-in-out infinite;
}

.fe-1 { top: 5%; left: 5%; animation-delay: 0s; font-size: 2rem; }
.fe-2 { top: 15%; right: 10%; animation-delay: 0.5s; }
.fe-3 { bottom: 20%; left: 0%; animation-delay: 1s; }
.fe-4 { bottom: 5%; right: 5%; animation-delay: 1.5s; font-size: 2rem; }
.fe-5 { top: 50%; left: -5%; animation-delay: 0.8s; font-size: 1.2rem; }

/* Hero Wave */
.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  line-height: 0;
  z-index: 1;
}

.hero-wave svg { width: 100%; height: 80px; }

/* ===================== STATS SECTION ===================== */
.stats-section {
  background: var(--bg-secondary);
  padding: 60px 0;
  position: relative;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(107, 70, 193, 0.05) 0%, transparent 100%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.stat-card {
  text-align: center;
  padding: 36px 20px;
  background: var(--bg-glass);
  border: var(--border-glass);
  border-radius: var(--radius-lg);
  transition: var(--transition-mid);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transition: var(--transition-mid);
}

.stat-card:hover { 
  transform: translateY(-4px); 
  border-color: rgba(246, 201, 14, 0.2);
  box-shadow: var(--shadow-gold);
}

.stat-card:hover::before { transform: scaleX(1); }

.stat-icon { font-size: 2rem; margin-bottom: 16px; }

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--gold-primary);
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 0 20px rgba(246, 201, 14, 0.4);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

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

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg-glass);
  border: var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition-mid);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-card);
  opacity: 0;
  transition: var(--transition-mid);
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-mid);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(246, 201, 14, 0.25);
  box-shadow: var(--shadow-card), var(--shadow-gold);
}

.service-card:hover::before { opacity: 1; }
.service-card:hover::after { transform: scaleX(1); }

.service-icon-wrapper {
  width: 70px;
  height: 70px;
  background: rgba(246, 201, 14, 0.08);
  border: 1px solid rgba(246, 201, 14, 0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition-mid);
}

.service-card:hover .service-icon-wrapper {
  background: rgba(246, 201, 14, 0.15);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 20px rgba(246, 201, 14, 0.2);
}

.service-icon { font-size: 2rem; }

.service-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold-primary);
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition-fast);
  position: relative;
  z-index: 1;
}

.service-link:hover { gap: 8px; color: var(--gold-light); }

/* ===================== PROBLEMS SECTION ===================== */
.problems-section {
  background: var(--bg-secondary);
  position: relative;
}

.problems-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(107, 70, 193, 0.08) 0%, transparent 70%);
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}

.problem-card {
  background: var(--bg-glass);
  border: var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition-mid);
  position: relative;
  overflow: hidden;
}

.problem-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gradient-gold);
  border-radius: var(--radius-full);
  transition: var(--transition-mid);
}

.problem-card:hover {
  transform: translateY(-6px);
  border-color: rgba(246, 201, 14, 0.2);
  box-shadow: var(--shadow-card), 0 0 30px rgba(107, 70, 193, 0.1);
}

.problem-card:hover::before { width: 60%; }

.problem-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 10px rgba(246, 201, 14, 0.3));
  transition: var(--transition-mid);
}

.problem-card:hover .problem-icon { transform: scale(1.2); }

.problem-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.problem-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ===================== FREE KUNDLI FORM ===================== */
.kundli-section { background: var(--bg-primary); }

.kundli-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.kundli-content .section-badge { margin-bottom: 16px; }

.kundli-content .section-title {
  text-align: left;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
}

.kundli-content .section-subtitle {
  text-align: left;
  margin: 0 0 32px;
}

.kundli-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.kf-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Forms */
.kundli-form, .contact-form {
  padding: 40px;
}

.form-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 28px;
  text-align: center;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-glass);
  border: var(--border-glass);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: var(--transition-mid);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--purple-light);
  background: var(--bg-glass-hover);
  box-shadow: 0 0 0 3px var(--purple-glow);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }

.form-group input[type="date"],
.form-group input[type="time"] { color-scheme: dark; }

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

.field-error {
  display: block;
  font-size: 0.8rem;
  color: #ff6b6b;
  margin-top: 6px;
  min-height: 1.2em;
}

.form-success {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 20px;
  padding: 16px 20px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: var(--radius-md);
  color: #4ade80;
  font-size: 0.9rem;
  line-height: 1.5;
}

.success-icon { font-size: 1.2rem; flex-shrink: 0; }

.payment-success {
  /* HIDDEN BY DEFAULT — do NOT change this to display:flex */
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(10px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* Only shown when JavaScript calls showPaymentSuccess(),
 * which adds this class AFTER a confirmed Razorpay payment callback. */
.payment-success.is-active {
  display: flex;
  animation: fadeIn 0.3s ease;
}

.payment-success-inner {
  background: var(--bg-tertiary);
  border: var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 48px;
  text-align: center;
  max-width: 420px;
  width: 100%;
  box-shadow: var(--shadow-gold), var(--shadow-md);
  animation: scaleIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.payment-success-icon { font-size: 4rem; margin-bottom: 20px; }

.payment-success-inner h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-primary);
  margin-bottom: 12px;
}

.payment-success-inner p {
  color: var(--text-secondary);
  margin-bottom: 28px;
  line-height: 1.6;
}

/* ===================== HOW IT WORKS ===================== */
.how-section { background: var(--bg-primary); }

.steps-container {
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
}

.step-card {
  flex: 1;
  text-align: center;
  padding: 40px 24px;
  background: var(--bg-glass);
  border: var(--border-glass);
  border-radius: var(--radius-xl);
  transition: var(--transition-mid);
  position: relative;
}

.step-card:hover {
  transform: translateY(-6px);
  border-color: rgba(246, 201, 14, 0.2);
  box-shadow: var(--shadow-gold);
}

.step-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  color: rgba(246, 201, 14, 0.1);
  line-height: 1;
  margin-bottom: 16px;
}

.step-icon { font-size: 2.5rem; margin-bottom: 16px; }

.step-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.step-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.step-connector {
  flex-shrink: 0;
  width: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.connector-line {
  width: 100%;
  height: 2px;
  background: var(--gradient-gold);
  opacity: 0.3;
}

.connector-star {
  font-size: 1.2rem;
  filter: drop-shadow(0 0 8px rgba(246, 201, 14, 0.5));
  animation: pulse 2s ease-in-out infinite;
}

/* ===================== HOROSCOPE SECTION ===================== */
.horoscope-section { background: var(--bg-secondary); }

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

.zodiac-card {
  background: var(--bg-glass);
  border: var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  transition: var(--transition-mid);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.zodiac-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(246, 201, 14, 0.06), transparent 60%);
  opacity: 0;
  transition: var(--transition-mid);
}

.zodiac-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(246, 201, 14, 0.25);
  box-shadow: var(--shadow-gold);
}

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

.zodiac-symbol {
  font-size: 2.5rem;
  margin-bottom: 10px;
  display: block;
  filter: drop-shadow(0 0 10px rgba(246, 201, 14, 0.4));
  transition: var(--transition-mid);
}

.zodiac-card:hover .zodiac-symbol { transform: scale(1.2); }

.zodiac-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.zodiac-dates {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.zodiac-prediction {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 12px;
}

.zodiac-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}

.rating-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 500;
}

.rating-stars { font-size: 0.65rem; }

/* ===================== TESTIMONIALS ===================== */
.testimonials-section { background: var(--bg-primary); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.testimonial-card {
  background: var(--bg-glass);
  border: var(--border-glass);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  position: relative;
  transition: var(--transition-mid);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(246, 201, 14, 0.15);
  box-shadow: var(--shadow-card);
}

.testimonial-featured {
  background: linear-gradient(145deg, rgba(107, 70, 193, 0.1), rgba(246, 201, 14, 0.04));
  border-color: rgba(246, 201, 14, 0.2);
}

.testimonial-quote {
  font-size: 5rem;
  line-height: 0.5;
  color: var(--gold-primary);
  opacity: 0.3;
  font-family: serif;
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  background: var(--gradient-purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  border: 2px solid rgba(246, 201, 14, 0.3);
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.testimonial-role {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.testimonial-stars {
  margin-left: auto;
  font-size: 0.7rem;
}

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

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

.faq-item {
  background: var(--bg-glass);
  border: var(--border-glass);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-mid);
}

.faq-item:hover { border-color: rgba(246, 201, 14, 0.15); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 0.975rem;
  font-weight: 500;
  color: var(--text-primary);
  text-align: left;
  cursor: pointer;
  transition: var(--transition-fast);
  background: none;
  border: none;
  font-family: var(--font-body);
  gap: 16px;
}

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

.faq-icon {
  font-size: 1.4rem;
  color: var(--gold-primary);
  flex-shrink: 0;
  transition: var(--transition-mid);
  font-weight: 300;
  line-height: 1;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  color: var(--gold-light);
}

.faq-answer {
  padding: 0 24px 20px;
  animation: slideDown 0.3s ease;
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 16px;
}

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

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: start;
}

.contact-info-card {
  padding: 36px 28px;
}

.contact-info-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 28px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.contact-item:last-of-type { border-bottom: none; margin-bottom: 0; }

.contact-item-icon {
  width: 44px;
  height: 44px;
  background: rgba(246, 201, 14, 0.08);
  border: var(--border-gold);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-item-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.contact-item-value {
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 500;
  transition: var(--transition-fast);
}

a.contact-item-value:hover { color: var(--gold-primary); }

.contact-info-card .btn-whatsapp { margin-top: 24px; }

/* ===================== FOOTER ===================== */
.footer {
  background: var(--bg-tertiary);
  border-top: 1px solid rgba(246, 201, 14, 0.1);
}

.footer-top { padding: 80px 0 60px; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}

.footer-brand-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 20px 0 28px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: var(--bg-glass);
  border: var(--border-glass);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition-mid);
}

.social-link:hover {
  background: rgba(246, 201, 14, 0.1);
  border-color: rgba(246, 201, 14, 0.3);
  transform: translateY(-3px);
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold-primary);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.footer-link-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link-list a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.footer-link-list a:hover { color: var(--gold-primary); padding-left: 4px; }

.footer-contact p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.6;
}

.footer-contact a { transition: var(--transition-fast); }
.footer-contact a:hover { color: var(--gold-primary); }

.footer-wa { margin-top: 20px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 24px 0;
}

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

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.footer-legal a:hover { color: var(--gold-primary); }

/* ===================== FLOATING BUTTONS ===================== */
.float-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.4);
  animation: whatsapp-pulse 3s ease-in-out infinite;
  transition: var(--transition-mid);
}

.float-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.float-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  background: rgba(10, 10, 26, 0.95);
  color: var(--text-primary);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
  border: var(--border-glass);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-fast);
}

.float-whatsapp:hover .float-tooltip { opacity: 1; }

.scroll-top {
  position: fixed;
  bottom: 98px;
  right: 28px;
  z-index: 999;
  width: 44px;
  height: 44px;
  background: rgba(246, 201, 14, 0.1);
  border: var(--border-gold);
  border-radius: 50%;
  color: var(--gold-primary);
  font-size: 1.1rem;
  font-weight: 700;
  transition: var(--transition-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.scroll-top:hover {
  background: rgba(246, 201, 14, 0.2);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

/* ===================== ANIMATIONS ===================== */
@keyframes twinkle {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

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

@keyframes pulse-glow {
  0%, 100% { filter: drop-shadow(0 0 10px rgba(246, 201, 14, 0.5)); }
  50% { filter: drop-shadow(0 0 25px rgba(246, 201, 14, 0.9)); }
}

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

@keyframes whatsapp-pulse {
  0% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.4); }
  70% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Scroll-triggered reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

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

/* Tablet (max 1024px) */
@media (max-width: 1024px) {
  :root { --section-padding: 80px 0; }

  .hero-container { gap: 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .problems-grid { grid-template-columns: repeat(2, 1fr); }
  .horoscope-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile Landscape / Small Tablet (max 768px) */
@media (max-width: 768px) {
  :root {
    --section-padding: 64px 0;
    --navbar-height: 70px;
  }

  /* Navbar */
  .nav-links { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
    padding-bottom: 60px;
  }

  .hero-content { order: 1; }
  .hero-illustration { order: 2; min-height: 300px; }

  .hero-subtitle { margin: 0 auto 32px; }

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

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

  .astro-orb { width: 260px; height: 260px; }
  .orb-center { width: 140px; height: 140px; }
  .orb-emoji { font-size: 3rem; }
  .zodiac-orbit { width: 200px; height: 200px; }
  .zodiac-planet { transform-origin: 100px 100px; transform: rotate(var(--angle)) translateX(100px) rotate(calc(-1 * var(--angle))); }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }

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

  /* Problems */
  .problems-grid { grid-template-columns: 1fr; }

  /* Kundli Form */
  .kundli-wrapper { grid-template-columns: 1fr; gap: 32px; }
  .kundli-content .section-title,
  .kundli-content .section-subtitle,
  .kundli-content .section-badge { text-align: center; margin: 0 auto; }
  .kundli-content .section-subtitle { margin-bottom: 24px; }
  .kundli-features { align-items: center; }

  /* How It Works */
  .steps-container { flex-direction: column; }
  .step-connector { width: 100%; flex-direction: row; }
  .connector-line { flex: 1; height: 2px; width: auto; }

  /* Horoscope */
  .horoscope-grid { grid-template-columns: repeat(2, 1fr); }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Contact */
  .contact-wrapper { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .footer-legal { flex-wrap: wrap; justify-content: center; }

  /* Forms */
  .form-row { grid-template-columns: 1fr; }
  .kundli-form, .contact-form { padding: 28px 20px; }
}

/* Small Mobile (max 480px) */
@media (max-width: 480px) {
  :root { --section-padding: 52px 0; }

  .hero-title { font-size: clamp(1.6rem, 6vw, 2.2rem); }

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

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-card { padding: 24px 16px; }

  .hero-badge { font-size: 0.75rem; }

  .float-whatsapp { bottom: 20px; right: 20px; width: 52px; height: 52px; }
  .scroll-top { bottom: 86px; right: 20px; }
}

/* Large Desktop (min 1400px) */
@media (min-width: 1400px) {
  :root { --container-width: 1380px; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Mobile Desktop View (landscape orientation on mobile) */
@media (max-height: 500px) and (orientation: landscape) {
  .hero-section { min-height: auto; padding: 100px 0 60px; }
  .hero-container { gap: 32px; }
  .astro-orb { width: 200px; height: 200px; }
}


/* =====================================================================
   BOOKING & RECEIPT MODALS
   ===================================================================== */

/* ---- Modal Overlay (shared) ---------------------------------------- */
.modal-overlay {
  /* Hidden by default — shown only when JavaScript adds .is-active */
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(31, 11, 64, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 10000;
  align-items: flex-start;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
}

/* Shown when JavaScript calls showModal() */
.modal-overlay.is-active {
  display: flex;
  animation: fadeIn 0.25s ease;
}

/* ---- Modal Container (shared) -------------------------------------- */
.modal-container {
  background: linear-gradient(160deg, #130925 0%, #0a0416 100%);
  border: 1px solid rgba(179, 136, 255, 0.2);
  border-radius: var(--radius-xl);
  width: 100%;
  box-shadow: 0 0 80px rgba(179, 136, 255, 0.15), 0 30px 60px rgba(13, 6, 26, 0.5);
  position: relative;
  margin: auto;
  animation: scaleIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  color: var(--text-primary);
}

/* ---- Booking Modal ------------------------------------------------- */
.booking-modal-container {
  max-width: 720px;
  padding: 0;
  overflow: hidden;
}

/* Modal Header */
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 36px 24px;
  border-bottom: 1px solid rgba(246, 201, 14, 0.1);
  background: rgba(246, 201, 14, 0.03);
  gap: 16px;
}

.modal-header-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.modal-header-icon {
  font-size: 2rem;
  filter: drop-shadow(0 0 12px rgba(246, 201, 14, 0.5));
}

.modal-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.modal-subtitle {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.modal-close-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-secondary);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  flex-shrink: 0;
  cursor: pointer;
}

.modal-close-btn:hover {
  background: rgba(255, 100, 100, 0.15);
  border-color: rgba(255, 100, 100, 0.3);
  color: #ff6b6b;
  transform: rotate(90deg);
}

/* Plan Summary Strip */
.booking-plan-strip {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 36px;
  background: rgba(142, 98, 217, 0.05);
  border-bottom: 1px solid rgba(142, 98, 217, 0.1);
}

.plan-strip-icon {
  font-size: 1.8rem;
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.3));
}

.plan-strip-info { flex: 1; }

.plan-strip-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
}

.plan-strip-duration {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.plan-strip-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-primary);
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.35);
}

/* Booking Form */
.booking-form {
  padding: 28px 36px 36px;
}

/* Select dropdown — same style as input */
.form-group select {
  width: 100%;
  padding: 14px 18px;
  background: rgba(30, 15, 58, 0.5);
  border: 1px solid rgba(179, 136, 255, 0.2);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 0.95rem;
  font-family: inherit;
  transition: var(--transition-mid);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23b388ff'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 20px;
}

.form-group select:focus {
  border-color: var(--purple-light);
  box-shadow: 0 0 0 3px rgba(179, 136, 255, 0.15);
  background-color: rgba(45, 22, 87, 0.7);
}

.form-group select option {
  background: #130925;
  color: var(--text-primary);
}

/* Optional label */
.optional-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-left: 4px;
}

/* Slot info box (shows slot count for selected date) */
.form-group-slot-info { display: flex; flex-direction: column; }

.slot-info-box {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  color: var(--text-secondary);
  height: 52px;
  transition: var(--transition-mid);
}

.slot-info-box.slots-available {
  border-color: rgba(34, 197, 94, 0.3);
  background: rgba(34, 197, 94, 0.05);
  color: #4ade80;
}

.slot-info-box.slots-limited {
  border-color: rgba(234, 179, 8, 0.3);
  background: rgba(234, 179, 8, 0.05);
  color: #fbbf24;
}

.slot-info-box.slots-full {
  border-color: rgba(239, 68, 68, 0.3);
  background: rgba(239, 68, 68, 0.05);
  color: #f87171;
}

/* ---- Time Slot Grid ------------------------------------------------ */
.slot-loading {
  text-align: center;
  padding: 20px;
  color: var(--text-muted);
  font-size: 0.9rem;
  grid-column: 1 / -1;
}

.slot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 8px;
}

/* Individual slot button */
.slot-btn {
  padding: 12px 8px;
  border: 1px solid rgba(179, 136, 255, 0.15);
  border-radius: var(--radius-md);
  background: rgba(30, 15, 58, 0.5);
  color: var(--text-secondary);
  font-size: 0.78rem;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-mid);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  line-height: 1.3;
  font-family: inherit;
}

/* Available slot */
.slot-btn.slot-available:hover {
  border-color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.15);
  color: var(--text-primary);
  transform: translateY(-2px);
}

/* Selected slot */
.slot-btn.slot-selected {
  border-color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.25);
  color: var(--text-primary);
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.35);
  font-weight: 600;
  transform: translateY(-2px);
}

/* Booked / disabled slot */
.slot-btn.slot-booked {
  border-color: rgba(239, 68, 68, 0.15);
  background: rgba(239, 68, 68, 0.02);
  color: rgba(255, 255, 255, 0.25);
  cursor: not-allowed;
  opacity: 0.55;
  text-decoration: line-through;
}

.slot-badge {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 2px 6px;
  border-radius: 4px;
  line-height: 1;
}

.slot-btn.slot-available .slot-badge {
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
}

.slot-btn.slot-selected .slot-badge {
  background: rgba(212, 175, 55, 0.2);
  color: var(--purple-deep);
}

.slot-btn.slot-booked .slot-badge {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
}

/* Booking security note */
.booking-security-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 16px;
}

/* ===================== UPI PAYMENT MODAL ===================== */
.upi-modal-container {
  max-width: 500px;
  overflow: hidden;
  padding: 0;
}

.upi-modal-body {
  padding: 28px 36px 24px;
}

.upi-details-strip {
  display: flex;
  justify-content: space-between;
  background: rgba(142, 98, 217, 0.05);
  border: 1px solid rgba(142, 98, 217, 0.15);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 24px;
  gap: 16px;
}

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

.upi-detail-item:last-child {
  align-items: flex-end;
}

.upi-detail-lbl {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.upi-detail-val {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.upi-detail-val.amount-highlight {
  font-size: 1.3rem;
  color: var(--gold-primary);
  text-shadow: 0 0 15px rgba(246, 201, 14, 0.3);
}

.upi-payment-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.upi-qr-box {
  background: #fff;
  padding: 16px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(246, 201, 14, 0.2);
  box-shadow: 0 0 25px rgba(246, 201, 14, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.upi-qr-img {
  width: 200px;
  height: 200px;
  display: block;
}

.btn-launch-upi {
  display: none; /* Hidden by default on desktop, shown via media query on mobile */
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
}

.upi-instructions {
  text-align: center;
  width: 100%;
}

.upi-instructions p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 12px;
}

.upi-id-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(142, 98, 217, 0.05);
  border: 1px solid rgba(142, 98, 217, 0.15);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
}

.upi-id-label {
  color: var(--text-muted);
}

.upi-id-value {
  color: var(--text-primary);
  font-weight: 600;
  font-family: monospace;
}

.btn-copy-upi {
  background: rgba(246, 201, 14, 0.1);
  border: 1px solid rgba(246, 201, 14, 0.2);
  color: var(--gold-primary);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
  font-family: inherit;
}

.btn-copy-upi:hover {
  background: rgba(246, 201, 14, 0.2);
  border-color: rgba(246, 201, 14, 0.4);
  transform: translateY(-1px);
}

.upi-modal-footer {
  padding: 20px 36px 32px;
  background: rgba(246, 201, 14, 0.02);
  border-top: 1px solid rgba(246, 201, 14, 0.1);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.upi-security-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ---- Receipt Modal -------------------------------------------------- */
.receipt-modal-container {
  max-width: 540px;
  overflow: hidden;
  padding: 0;
}

/* Success Banner */
.receipt-success-banner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 32px;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.12) 0%, rgba(246, 201, 14, 0.08) 100%);
  border-bottom: 1px solid rgba(34, 197, 94, 0.2);
}

.receipt-success-icon {
  font-size: 2.5rem;
  animation: pulse-glow 2s ease-in-out infinite;
}

.receipt-success-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.receipt-success-sub {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* Receipt Card — styled for both screen + print */
.receipt-card {
  margin: 0;
  padding: 28px 32px;
  background: #fff;
  color: #1a1a2e;
  font-family: 'Inter', Arial, sans-serif;
  max-height: 420px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(246,201,14,0.3) transparent;
}

.receipt-card::-webkit-scrollbar { width: 4px; }
.receipt-card::-webkit-scrollbar-track { background: transparent; }
.receipt-card::-webkit-scrollbar-thumb { background: rgba(246,201,14,0.3); border-radius: 4px; }

/* Receipt Header */
.receipt-header {
  text-align: center;
  margin-bottom: 16px;
}

.receipt-logo-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 4px;
}

.receipt-logo-icon { font-size: 1.4rem; }

.receipt-logo-text {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a1a2e;
  letter-spacing: 1px;
}

.receipt-title-text {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #6b4c11;
  margin-bottom: 8px;
}

.receipt-hr {
  border: none;
  border-top: 1px solid #e5d8a0;
  margin: 10px 0;
}

/* Receipt Rows */
.receipt-body { font-size: 0.85rem; }

.receipt-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 5px 0;
  gap: 12px;
}

.receipt-label {
  color: #6b6888;
  font-weight: 500;
  flex-shrink: 0;
  min-width: 130px;
  font-size: 0.8rem;
}

.receipt-value {
  color: #1a1a2e;
  font-weight: 600;
  text-align: right;
  word-break: break-all;
  font-size: 0.82rem;
}

.receipt-mono {
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  word-break: break-all;
}

.receipt-row-amount {
  padding: 8px 0;
}

.receipt-amount {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #9c6f00;
}

.receipt-status-success {
  color: #16a34a;
  font-weight: 700;
  font-size: 0.85rem;
}

/* Receipt Footer */
.receipt-footer {
  text-align: center;
  margin-top: 8px;
  padding-top: 8px;
}

.receipt-thank-you {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 4px;
}

.receipt-tagline {
  font-size: 0.75rem;
  color: #9c6f00;
  margin-bottom: 4px;
}

.receipt-contact {
  font-size: 0.72rem;
  color: #6b6888;
}

/* Receipt Action Buttons */
.receipt-actions {
  display: flex;
  gap: 12px;
  padding: 20px 32px;
  background: rgba(246, 201, 14, 0.03);
  border-top: 1px solid rgba(246, 201, 14, 0.1);
  flex-wrap: wrap;
}

.receipt-actions .btn { flex: 1; min-width: 120px; }

/* ---- Print Styles -------------------------------------------------- */
/* When window.print() is called, hide everything except the receipt */
@media print {
  body > *:not(#print-receipt-frame) { display: none !important; }

  .modal-overlay { display: none !important; }

  #receiptContent {
    display: block !important;
    position: fixed !important;
    inset: 0 !important;
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    padding: 30px !important;
    background: #fff !important;
    color: #000 !important;
    font-size: 12pt !important;
    box-shadow: none !important;
    z-index: 99999 !important;
  }

  .receipt-hr { border-top: 1px solid #ccc !important; }
  .receipt-label { color: #555 !important; }
  .receipt-value { color: #000 !important; }
  .receipt-amount { color: #7a5500 !important; font-size: 14pt !important; }
}

/* ---- Responsive: Booking & Receipt Modals -------------------------- */
@media (max-width: 768px) {
  .modal-header { padding: 20px 20px 16px; flex-wrap: wrap; }
  .booking-plan-strip { padding: 14px 20px; }
  .booking-form { padding: 20px 20px 28px; }
  .slot-grid { grid-template-columns: repeat(2, 1fr); }
  .receipt-card { padding: 20px; max-height: 360px; }
  .receipt-actions { padding: 16px 20px; }
  .receipt-success-banner { padding: 18px 20px; }

  /* UPI Modal mobile responsive */
  .upi-modal-container { max-width: 100%; }
  .upi-modal-body { padding: 20px 20px 24px; }
  .btn-launch-upi { display: inline-flex !important; }
  .desktop-instructions { display: none !important; }
}

@media (max-width: 480px) {
  .modal-header { padding: 16px; gap: 10px; }
  .modal-title { font-size: 1.1rem; }
  .booking-plan-strip { padding: 12px 16px; }
  .booking-form { padding: 16px 16px 24px; }
  .slot-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .slot-btn { font-size: 0.72rem; padding: 10px 6px; }
  .receipt-modal-container { max-width: 100%; }
  .receipt-actions { flex-direction: column; }
  .receipt-actions .btn { width: 100%; }
  .receipt-label { min-width: 110px; }

  /* UPI Modal small mobile responsive */
  .upi-details-strip { padding: 12px; gap: 8px; margin-bottom: 16px; }
  .upi-detail-lbl { font-size: 0.7rem; }
  .upi-detail-val { font-size: 0.9rem; }
  .upi-detail-val.amount-highlight { font-size: 1.1rem; }
  .upi-payment-box { gap: 16px; margin-bottom: 16px; }
  .upi-modal-footer { padding: 16px 16px 24px; }
}


/* =====================================================================
   ADDITIONAL STYLES FOR ASTRONADI
   About Us, Courses, Services Dropdowns, and Cosmic Enhancements
   ===================================================================== */

/* ---- Cosmic Particles Background Accent ----------------------------- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: 
    radial-gradient(2px 2px at 20px 30px, rgba(94, 59, 155, 0.12) 0%, transparent 100%),
    radial-gradient(2px 2px at 40px 70px, rgba(212, 175, 55, 0.12) 0%, transparent 100%),
    radial-gradient(3px 3px at 120px 150px, rgba(186, 104, 200, 0.15) 0%, transparent 100%),
    radial-gradient(2px 2px at 250px 80px, rgba(94, 59, 155, 0.08) 0%, transparent 100%),
    radial-gradient(2px 2px at 300px 320px, rgba(212, 175, 55, 0.08) 0%, transparent 100%);
  background-repeat: repeat;
  background-size: 400px 400px;
  animation: float-particles 60s linear infinite;
  pointer-events: none;
  opacity: 0.6;
}

@keyframes float-particles {
  from { background-position: 0 0; }
  to { background-position: 400px 800px; }
}

/* ---- About Us Section ----------------------------------------------- */
.about-section {
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 10%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(107, 70, 193, 0.1) 0%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}

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

/* Left: Image Card & Accent Rings */
.about-image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.spiritual-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(246, 201, 14, 0.15);
  pointer-events: none;
}

.spiritual-ring.ring-1 {
  width: 110%;
  height: 110%;
  animation: orbit-rotate 40s linear infinite;
}

.spiritual-ring.ring-2 {
  width: 120%;
  height: 120%;
  border-color: rgba(107, 70, 193, 0.15);
  animation: orbit-rotate 60s linear infinite reverse;
}

.about-image-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(246, 201, 14, 0.2);
  box-shadow: var(--shadow-md), 0 0 40px rgba(107, 70, 193, 0.15);
  aspect-ratio: 4/5;
  width: 100%;
  max-width: 380px;
  transition: var(--transition-mid);
}

.about-image-card:hover {
  transform: translateY(-5px);
  border-color: rgba(246, 201, 14, 0.4);
  box-shadow: var(--shadow-md), var(--shadow-gold), 0 0 50px rgba(107, 70, 193, 0.25);
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(10, 10, 30, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(246, 201, 14, 0.25);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.badge-icon {
  font-size: 1.6rem;
  filter: drop-shadow(0 0 8px var(--gold-primary));
}

.badge-texts {
  display: flex;
  flex-direction: column;
}

.badge-title {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-primary);
  letter-spacing: 0.5px;
}

.badge-sub {
  font-size: 0.72rem;
  color: var(--text-secondary);
}

/* Right: Biography Content */
.about-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.about-subtitle {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--gold-primary);
  margin-bottom: 28px;
  letter-spacing: 0.3px;
}

.about-description p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 20px;
}

.about-description strong {
  color: var(--text-primary);
}

.about-badges-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}

.about-trust-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.about-trust-badge:hover {
  background: rgba(246, 201, 14, 0.03);
  border-color: rgba(246, 201, 14, 0.15);
  color: var(--text-primary);
}

.about-trust-badge-icon {
  font-size: 1.2rem;
}

/* About Mini Stats */
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 28px;
  margin-top: 12px;
}

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

.about-stat-lbl {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.3;
}

.about-stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-primary);
  line-height: 1;
  text-shadow: 0 0 15px rgba(246, 201, 14, 0.3);
}

/* ---- Services Dropdowns & Enhancements ------------------------------ */
.service-pricing-options {
  margin: 16px 0 20px;
  position: relative;
  z-index: 3;
}

.service-option-select {
  width: 100%;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-family: inherit;
  outline: none;
  cursor: pointer;
  transition: var(--transition-fast);
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23a89ec9'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px;
  padding-right: 32px;
}

.service-option-select:focus,
.service-option-select:hover {
  border-color: rgba(246, 201, 14, 0.3);
  color: var(--text-primary);
  background-color: rgba(255, 255, 255, 0.06);
}

.service-option-select option {
  background: var(--bg-tertiary);
  color: var(--text-primary);
}

.service-price-tag {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold-primary);
  margin: 16px 0 20px;
  text-shadow: 0 0 15px rgba(246, 201, 14, 0.25);
  min-height: 38px;
  display: flex;
  align-items: center;
}

.service-book-btn {
  width: 100%;
  margin-top: auto;
}

.service-card {
  display: flex;
  flex-direction: column;
}

.service-desc {
  flex-grow: 1;
}

/* ---- Courses Section ------------------------------------------------- */
.courses-section {
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.courses-section::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(107, 70, 193, 0.08) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
}

.course-card {
  padding: 44px 36px;
  width: 100%;
  border: 1px solid rgba(246, 201, 14, 0.25);
  box-shadow: var(--shadow-gold), var(--shadow-card);
  position: relative;
  overflow: hidden;
  transition: var(--transition-bounce);
}

.course-card:hover {
  transform: translateY(-6px);
  border-color: rgba(246, 201, 14, 0.4);
  box-shadow: 0 0 50px rgba(246, 201, 14, 0.25), var(--shadow-card);
}

.course-badge-tag {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--gradient-gold);
  color: #1a0a00;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 0 0 0 var(--radius-md);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.course-header {
  text-align: center;
  margin-bottom: 28px;
}

.course-icon {
  font-size: 3rem;
  margin-bottom: 12px;
  filter: drop-shadow(0 0 12px rgba(246, 201, 14, 0.4));
  animation: pulse-glow 3s ease-in-out infinite;
}

.course-card-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.course-card-sub {
  font-size: 0.85rem;
  color: var(--gold-primary);
  letter-spacing: 0.5px;
}

.course-body {
  margin-bottom: 32px;
}

.course-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  text-align: center;
  margin-bottom: 24px;
}

.course-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 520px;
  margin: 0 auto;
}

.course-features li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.course-features li:last-child {
  border-bottom: none;
}

.feature-bullet {
  font-size: 1.1rem;
  filter: drop-shadow(0 0 4px var(--gold-primary));
}

.course-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 28px;
  gap: 20px;
}

.course-price-box {
  display: flex;
  flex-direction: column;
}

.course-price-lbl {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.course-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-primary);
  text-shadow: 0 0 15px rgba(246, 201, 14, 0.3);
}

.course-enroll-btn {
  padding: 16px 36px;
  font-size: 1.05rem;
}

/* ---- Responsive Additions ------------------------------------------- */
@media (max-width: 1024px) {
  .about-grid { gap: 40px; }
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  
  .about-image-wrapper {
    order: 1;
    max-width: 320px;
    margin: 0 auto;
    padding: 15px;
  }
  
  .about-content {
    order: 2;
  }
  
  .about-badges-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 24px auto;
  }
  
  .about-stats {
    max-width: 450px;
    margin: 24px auto 0;
  }
  
  .course-card {
    padding: 32px 24px;
  }
  
  .course-footer {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  .course-enroll-btn {
    width: 100%;
  }

  .courses-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .about-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .about-stat-item {
    align-items: center;
  }
}

/* Tablet / Small Laptop Breakpoint (769px to 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .courses-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* =====================================================================
   ADDITIONAL STYLES FOR NEW FEATURES
   Featured cards, Shimmer Loaders, Mobile QR modal, Nakshatra SVG
   ===================================================================== */

/* Featured Face Reading Card */
.featured-course-card {
  border: 1px solid rgba(246, 201, 14, 0.7) !important;
  box-shadow: 0 0 25px rgba(246, 201, 14, 0.15), var(--shadow-card);
  animation: glow-pulse 3s infinite alternate;
}

@keyframes glow-pulse {
  0% {
    box-shadow: 0 0 15px rgba(246, 201, 14, 0.15), var(--shadow-card);
    border-color: rgba(246, 201, 14, 0.4);
  }
  100% {
    box-shadow: 0 0 35px rgba(246, 201, 14, 0.35), var(--shadow-card);
    border-color: rgba(246, 201, 14, 0.9);
  }
}

/* Highlight badge */
.highlight-badge {
  background: linear-gradient(135deg, #ff4e50 0%, #f9d423 100%) !important;
  color: #fff !important;
  box-shadow: 0 4px 15px rgba(255, 78, 80, 0.3);
  font-weight: 800 !important;
}

/* Shimmer Loading Skeleton */
.shimmer {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03) !important;
}

.shimmer::before {
  content: '';
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.06) 50%,
    transparent 100%
  );
  animation: shimmer-pulse 1.8s infinite;
  z-index: 2;
}

@keyframes shimmer-pulse {
  100% {
    transform: translateX(100%);
  }
}

/* Custom SVG icon for problem-card */
.problem-svg-icon {
  filter: drop-shadow(0 0 10px rgba(246, 201, 14, 0.5));
  transition: var(--transition-mid);
}

.problem-card:hover .problem-svg-icon {
  transform: scale(1.15) rotate(15deg);
  filter: drop-shadow(0 0 15px rgba(246, 201, 14, 0.8));
}

/* Mobile QR popup styles */
.qr-modal-container {
  max-width: 420px;
  width: 90%;
  padding: 32px 24px;
  border-radius: var(--radius-xl);
  border: var(--border-gold);
  animation: qrScaleIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes qrScaleIn {
  from {
    transform: scale(0.85);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.qr-popup-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 8px;
  animation: qrIconPulse 2.5s ease-in-out infinite;
}

@keyframes qrIconPulse {
  0% { transform: scale(1); filter: drop-shadow(0 0 4px rgba(246, 201, 14, 0.4)); }
  50% { transform: scale(1.1) rotate(5deg); filter: drop-shadow(0 0 12px rgba(246, 201, 14, 0.8)); }
  100% { transform: scale(1); filter: drop-shadow(0 0 4px rgba(246, 201, 14, 0.4)); }
}

/* Ensure smooth GPU-accelerated transitions & animations */
.hero-illustration, .stars, .stat-card, .service-card, .course-card, .problem-card, .zodiac-card, .testimonial-card, .float-whatsapp, .scroll-top {
  will-change: transform, opacity;
  transform: translate3d(0,0,0); /* Forces GPU layer creation */
}

/* Optimization for low-end mobile devices: reduce parallax and starry backgrounds */
@media (max-width: 768px) {
  /* Disable heavy continuous animations for mobile */
  .stars {
    animation: none !important;
  }
  
  .stars-bg {
    opacity: 0.4;
  }
  
  .float-element {
    animation: none !important; /* Stop floating element animation to save CPU */
  }
  
  .zodiac-orbit {
    animation: orbit-rotate 40s linear infinite; /* Slow down rotation to save CPU */
  }
}

/* Rendering performance: content-visibility for offscreen sections */
.about-section,
.services-section,
.problems-section,
.courses-section,
.kundli-section,
.how-section,
.horoscope-section,
.testimonials-section,
.faq-section,
.contact-section,
.footer {
  content-visibility: auto;
  contain-intrinsic-size: 1px 800px;
}

/* =====================================================================
   THEME STYLE OVERRIDES (5 THEMES: Purple, White, Orange, Red, Blue)
   ===================================================================== */

/* 1. Purple Theme is default (defined in :root) */

/* 2. White (Light) Theme */
[data-theme="white"] {
  --bg-primary: #fbf9fe; /* Soft off-white with lavender tint */
  --bg-secondary: #f4ecff; /* Soft lavender */
  --bg-tertiary: #ebdfff; /* Slightly deeper lavender */
  --bg-card: rgba(255, 255, 255, 0.85); /* Translucent white card */
  --bg-glass: rgba(255, 255, 255, 0.7);
  --bg-glass-hover: rgba(255, 255, 255, 0.9);
  --purple-deep: #1f0b40;
  --purple-mid: #5e3b9b;
  --purple-light: #8e62d9;
  --purple-glow: rgba(142, 98, 217, 0.12);
  --gold-primary: #a67c00; /* Darker, high-contrast gold */
  --gold-secondary: #c59b27;
  --gold-light: #f3e5ab;
  --gold-glow: rgba(212, 175, 55, 0.15);
  --text-primary: #0e041e; /* Extremely dark deep purple-black for headings and primary text */
  --text-secondary: #2d1e46; /* Deep purple-navy for standard body text / subtext */
  --text-muted: #4e3f66; /* Darker muted violet-gray for placeholders/labels */
  --text-gold: #997000; /* Rich gold/ochre for high-contrast warnings/highlights */
  --gradient-hero: linear-gradient(135deg, #fbf8fe 0%, #f4ecff 45%, #fff2f6 100%);
  --gradient-purple: linear-gradient(135deg, #8e62d9 0%, #5e3b9b 100%);
  --gradient-card: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.75) 100%);
  --gradient-cosmic: linear-gradient(180deg, #fbf9fe 0%, #f4ecff 50%, #fff2f6 100%);
  --border-glass: 1px solid rgba(142, 98, 217, 0.15);
  --border-purple: 1px solid rgba(142, 98, 217, 0.25);
  --shadow-sm: 0 4px 20px rgba(107, 70, 193, 0.08);
  --shadow-md: 0 8px 40px rgba(107, 70, 193, 0.12);
}

[data-theme="white"] .navbar {
  background: #f4ecff;
  border-bottom: 1px solid rgba(142, 98, 217, 0.08);
}

[data-theme="white"] .navbar.scrolled {
  background: #ffffff;
  border-bottom: 1px solid rgba(142, 98, 217, 0.15);
  box-shadow: 0 4px 20px rgba(107, 70, 193, 0.06);
}

[data-theme="white"] .hero-badge {
  color: var(--gold-primary);
  border-color: rgba(166, 124, 0, 0.25);
  background: rgba(166, 124, 0, 0.05);
}

[data-theme="white"] .service-link:hover {
  color: var(--gold-primary);
}

[data-theme="white"] .faq-question[aria-expanded="true"] .faq-icon {
  color: var(--gold-primary);
}

[data-theme="white"] .form-group select {
  background-color: var(--bg-glass);
  border: var(--border-glass);
  color: var(--text-primary);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%238e62d9'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
}

[data-theme="white"] .form-group select:focus {
  background-color: var(--bg-glass-hover);
}

[data-theme="white"] .form-group select option {
  background-color: var(--bg-primary);
  color: var(--text-primary);
}

[data-theme="white"] .form-group input[type="date"],
[data-theme="white"] .form-group input[type="time"] {
  color-scheme: light;
}

/* 3. Orange Theme */
[data-theme="orange"] {
  --bg-primary: #0f0500;
  --bg-secondary: #1e0b00;
  --bg-tertiary: #2e1200;
  --bg-card: rgba(30, 11, 0, 0.7);
  --bg-glass: rgba(30, 11, 0, 0.6);
  --bg-glass-hover: rgba(46, 18, 0, 0.85);
  --purple-deep: #0f0500;
  --purple-mid: #d35400;
  --purple-light: #e67e22;
  --purple-glow: rgba(230, 126, 34, 0.15);
  --gold-primary: #f39c12;
  --gold-secondary: #e67e22;
  --gold-light: #fbe5c8;
  --gold-glow: rgba(243, 156, 18, 0.25);
  --text-primary: #fff5eb;
  --text-secondary: #fcd5b8;
  --text-muted: #cda283;
  --text-gold: #ff9f43;
  --gradient-hero: linear-gradient(135deg, #240d00 0%, #0c0400 50%, #290800 100%);
  --gradient-purple: linear-gradient(135deg, #e67e22 0%, #a04000 100%);
  --gradient-card: linear-gradient(145deg, rgba(46, 18, 0, 0.8) 0%, rgba(20, 8, 0, 0.8) 100%);
  --gradient-cosmic: linear-gradient(180deg, #0f0500 0%, #1e0b00 50%, #2e1200 100%);
  --border-glass: 1px solid rgba(230, 126, 34, 0.18);
  --border-purple: 1px solid rgba(230, 126, 34, 0.25);
}

/* 4. Red Theme */
[data-theme="red"] {
  --bg-primary: #120002;
  --bg-secondary: #240005;
  --bg-tertiary: #3a000a;
  --bg-card: rgba(36, 0, 5, 0.7);
  --bg-glass: rgba(36, 0, 5, 0.6);
  --bg-glass-hover: rgba(58, 0, 10, 0.85);
  --purple-deep: #120002;
  --purple-mid: #c0392b;
  --purple-light: #e74c3c;
  --purple-glow: rgba(231, 76, 60, 0.15);
  --gold-primary: #d4af37;
  --gold-secondary: #f39c12;
  --gold-light: #ffe5aa;
  --gold-glow: rgba(212, 175, 55, 0.25);
  --text-primary: #fff0f2;
  --text-secondary: #fca8b4;
  --text-muted: #ca818c;
  --text-gold: #ff7675;
  --gradient-hero: linear-gradient(135deg, #2b0007 0%, #0a0001 50%, #30000a 100%);
  --gradient-purple: linear-gradient(135deg, #e74c3c 0%, #78281f 100%);
  --gradient-card: linear-gradient(145deg, rgba(58, 0, 10, 0.8) 0%, rgba(20, 0, 3, 0.8) 100%);
  --gradient-cosmic: linear-gradient(180deg, #120002 0%, #240005 50%, #3a000a 100%);
  --border-glass: 1px solid rgba(231, 76, 60, 0.18);
  --border-purple: 1px solid rgba(231, 76, 60, 0.25);
}

/* 5. Blue Theme */
[data-theme="blue"] {
  --bg-primary: #000a1a;
  --bg-secondary: #001333;
  --bg-tertiary: #001c4d;
  --bg-card: rgba(0, 19, 51, 0.7);
  --bg-glass: rgba(0, 19, 51, 0.6);
  --bg-glass-hover: rgba(0, 28, 77, 0.85);
  --purple-deep: #000a1a;
  --purple-mid: #2980b9;
  --purple-light: #3498db;
  --purple-glow: rgba(52, 152, 219, 0.15);
  --gold-primary: #d4af37;
  --gold-secondary: #f1c40f;
  --gold-light: #fef5d1;
  --gold-glow: rgba(212, 175, 55, 0.25);
  --text-primary: #f0f6ff;
  --text-secondary: #aacbff;
  --text-muted: #7da0d6;
  --text-gold: #f39c12;
  --gradient-hero: linear-gradient(135deg, #001330 0%, #00050d 50%, #001c42 100%);
  --gradient-purple: linear-gradient(135deg, #3498db 0%, #1a5276 100%);
  --gradient-card: linear-gradient(145deg, rgba(0, 28, 77, 0.8) 0%, rgba(0, 10, 26, 0.8) 100%);
  --gradient-cosmic: linear-gradient(180deg, #000a1a 0%, #001333 50%, #001c4d 100%);
  --border-glass: 1px solid rgba(52, 152, 219, 0.18);
  --border-purple: 1px solid rgba(52, 152, 219, 0.25);
}

/* =====================================================================
   THEME DROPDOWN SWITCHER (NAVBAR POSITION)
   ===================================================================== */
.theme-dropdown-container {
  position: relative;
  display: inline-block;
}

.theme-trigger-btn {
  width: 40px;
  height: 40px;
  background: var(--bg-glass);
  border: var(--border-glass);
  border-radius: 50%;
  color: var(--text-primary);
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-bounce);
}

.theme-trigger-btn:hover {
  transform: scale(1.08) rotate(15deg);
  border-color: var(--purple-light);
  background: var(--bg-glass-hover);
}

.theme-options-panel {
  display: flex;
  flex-direction: row; /* Horizontal layout! */
  gap: 8px;
  background: var(--bg-card);
  border: var(--border-glass);
  padding: 8px 12px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: var(--shadow-md);
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-bounce);
  z-index: 1001;
}

.theme-dropdown-container.open .theme-options-panel {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.theme-dot-btn {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: var(--transition-fast);
  box-shadow: inset 0 0 4px rgba(0,0,0,0.2);
  outline: none;
}

.theme-dot-btn:hover {
  transform: scale(1.15);
}

.theme-dot-btn.active {
  border-color: var(--gold-primary);
  box-shadow: 0 0 10px var(--gold-glow);
  transform: scale(1.1);
}

/* Individual Dot Colors representing their themes */
.theme-purple { background: #8a57e6; }
.theme-white  { background: #ffffff; border: 2px solid #ccc; }
.theme-orange { background: #e67e22; }
.theme-red    { background: #e74c3c; }
.theme-blue   { background: #3498db; }

/* =====================================================================
   DESIGNER BRANDING HIGHLIGHT (FOOTER BOTTOM)
   ===================================================================== */
.designer-highlight {
  font-weight: 800;
  color: var(--gold-primary);
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.5px;
  position: relative;
  display: inline-block;
  transition: var(--transition-bounce);
  text-decoration: none;
}

.designer-highlight::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: var(--transition-mid);
  border-radius: var(--radius-full);
}

.designer-highlight:hover {
  transform: scale(1.08) translateY(-1px);
  filter: brightness(1.2) drop-shadow(0 2px 8px rgba(212, 175, 55, 0.45));
}

.designer-highlight:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}


