/*
Theme Name: Arora Numerologist
Theme URI: https://rajesharora.co
Author: Antigravity
Author URI: https://rajesharora.co
Description: Premium Mystical & Cosmic Theme for Arora Numerologist
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: numerology, astrology, dark, gold, premium
Text Domain: arora-numerology
*/
/* ============================================
   🔮 ARORA NUMEROLOGIST - Design System
   Premium Mystical & Cosmic Theme
   ============================================ */

/* ============================================
   CSS CUSTOM PROPERTIES (Design Tokens)
   ============================================ */
:root {
  /* Primary Colors - Cosmic Palette */
  --cosmic-indigo: #2D1B69;
  --royal-purple: #5B2C8A;
  --deep-purple: #4A1F7C;
  --midnight-blue: #0A1628;
  --celestial-navy: #151D3B;
  --mystic-violet: #7B4B94;

  /* Accent Colors */
  --divine-gold: #D4AF37;
  --soft-gold: #F4D03F;
  --warm-gold: #C9A227;
  --pale-gold: #E8D5A3;

  /* Neutral Colors */
  --ivory-cream: #FDF8E7;
  --soft-cream: #F5F0E1;
  --pure-white: #FFFFFF;
  --light-gray: #E8E4DC;

  /* Gradients */
  --gradient-cosmic: linear-gradient(135deg, #0A1628 0%, #2D1B69 50%, #5B2C8A 100%);
  --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #F4D03F 50%, #D4AF37 100%);
  --gradient-mystic: linear-gradient(180deg, #151D3B 0%, #2D1B69 100%);
  --gradient-hero: linear-gradient(135deg, #0A1628 0%, #151D3B 25%, #2D1B69 50%, #5B2C8A 75%, #2D1B69 100%);
  --gradient-card: linear-gradient(145deg, rgba(91, 44, 138, 0.3) 0%, rgba(45, 27, 105, 0.5) 100%);
  --gradient-glow: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.15) 0%, transparent 70%);

  /* Glass Effects */
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-blur: blur(10px);

  /* Typography */
  --font-primary: 'Cinzel', serif;
  --font-secondary: 'Poppins', sans-serif;
  --font-accent: 'Playfair Display', serif;

  /* Font Sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
  --text-7xl: 4.5rem;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.5);
  --shadow-xl: 0 25px 50px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 30px rgba(212, 175, 55, 0.3);
  --shadow-glow-purple: 0 0 40px rgba(91, 44, 138, 0.4);

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);

  /* Z-Index Scale */
  --z-base: 1;
  --z-dropdown: 100;
  --z-sticky: 500;
  --z-fixed: 1000;
  --z-modal: 1500;
  --z-tooltip: 2000;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-secondary);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--ivory-cream);
  background: var(--midnight-blue);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
  font-weight: 600;
  line-height: 1.3;
  color: var(--pure-white);
  letter-spacing: 0.02em;
}

h1 {
  font-size: var(--text-6xl);
}

h2 {
  font-size: var(--text-4xl);
}

h3 {
  font-size: var(--text-2xl);
}

h4 {
  font-size: var(--text-xl);
}

h5 {
  font-size: var(--text-lg);
}

h6 {
  font-size: var(--text-base);
}

p {
  margin-bottom: var(--space-4);
  color: var(--soft-cream);
}

a {
  color: var(--divine-gold);
  text-decoration: none;
  transition: var(--transition-base);
}

a:hover {
  color: var(--soft-gold);
}

/* Gold Highlight Text */
.text-gold {
  color: var(--divine-gold);
}

.text-gradient {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   LAYOUT & CONTAINERS
   ============================================ */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.container-sm {
  max-width: 960px;
}

.container-lg {
  max-width: 1440px;
}

section {
  padding: var(--space-24) 0;
  position: relative;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-8);
  font-family: var(--font-secondary);
  font-size: var(--text-base);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-base);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: var(--transition-slow);
}

.btn:hover::before {
  left: 100%;
}

/* Primary Button - Gold */
.btn-primary {
  background: var(--gradient-gold);
  color: var(--midnight-blue);
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.5);
  color: var(--midnight-blue);
}

/* Secondary Button - Outline */
.btn-secondary {
  background: transparent;
  color: var(--divine-gold);
  border: 2px solid var(--divine-gold);
}

.btn-secondary:hover {
  background: var(--divine-gold);
  color: var(--midnight-blue);
  transform: translateY(-3px);
}

/* Ghost Button */
.btn-ghost {
  background: var(--glass-bg);
  color: var(--pure-white);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--divine-gold);
  color: var(--divine-gold);
}

/* Button Sizes */
.btn-sm {
  padding: var(--space-2) var(--space-5);
  font-size: var(--text-sm);
}

.btn-lg {
  padding: var(--space-5) var(--space-10);
  font-size: var(--text-lg);
}

/* ============================================
   CARDS - Glassmorphism
   ============================================ */
.card {
  background: var(--gradient-card);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow-purple);
  border-color: rgba(212, 175, 55, 0.3);
}

.card-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-gold);
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-6);
  font-size: var(--text-3xl);
  box-shadow: var(--shadow-glow);
}

.card-title {
  font-family: var(--font-primary);
  font-size: var(--text-xl);
  margin-bottom: var(--space-4);
  color: var(--pure-white);
}

.card-text {
  color: var(--soft-cream);
  opacity: 0.9;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-fixed);
  padding: var(--space-4) 0;
  transition: var(--transition-base);
  /* Always opaque background */
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: var(--glass-blur);
  box-shadow: var(--shadow-lg);
}



.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-img {
  height: 90px;
  width: auto;
  border-radius: var(--radius-full);
}

/* 
.logo-icon {
  ...
} 
*/

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Target both the old class (if manually added) and standard WP menu links */
.nav-link,
.nav-links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--soft-cream);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  padding: var(--space-2) 0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-link::after,
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--divine-gold);
  transition: var(--transition-base);
}

.nav-link:hover,
.nav-links a:hover,
.nav-links .current-menu-item>a {
  color: var(--divine-gold);
}

.nav-link:hover::after,
.nav-links a:hover::after,
.nav-links .current-menu-item>a::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: var(--space-2);
}

.nav-toggle span {
  width: 28px;
  height: 2px;
  background: var(--pure-white);
  transition: var(--transition-base);
}

/* ============================================
   HERO SECTION - PREMIUM DESIGN WITH SLIDER
   ============================================ */
.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: #0a1628;
  overflow: hidden;
  padding-top: 120px;
  padding-bottom: 40px;
}

/* Hero Background Slider */
.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  transform: scale(1.05);
}

.hero-slider .slide.active {
  opacity: 1;
  animation: slide-zoom 8s ease-in-out forwards;
}

@keyframes slide-zoom {
  0% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

/* Dark Overlay for Text Readability */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      rgba(10, 22, 40, 0.75) 0%,
      rgba(26, 16, 64, 0.7) 50%,
      rgba(45, 31, 94, 0.65) 100%);
  z-index: 1;
}

/* Slider Navigation Dots */
.slider-dots {
  position: absolute;
  bottom: 75px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--space-4);
  z-index: 10;
}

.slider-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dots .dot:hover {
  background: rgba(212, 175, 55, 0.5);
  border-color: var(--divine-gold);
}

.slider-dots .dot.active {
  background: var(--divine-gold);
  border-color: var(--divine-gold);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 2;
  pointer-events: none;
}

/* Animated Gradient Orbs */
.hero-gradient-orb {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(212, 175, 55, 0.15) 0%,
      rgba(138, 91, 176, 0.1) 40%,
      transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: orb-pulse 8s ease-in-out infinite;
  filter: blur(40px);
}

.hero-gradient-orb.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle,
      rgba(212, 175, 55, 0.2) 0%,
      transparent 60%);
  animation: orb-pulse 6s ease-in-out infinite reverse;
  filter: blur(30px);
}

@keyframes orb-pulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 1;
  }
}

.stars {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.8), transparent),
    radial-gradient(2px 2px at 40px 70px, rgba(212, 175, 55, 0.6), transparent),
    radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.6), transparent),
    radial-gradient(2px 2px at 130px 80px, rgba(255, 255, 255, 0.7), transparent),
    radial-gradient(1px 1px at 160px 120px, rgba(212, 175, 55, 0.5), transparent);
  background-repeat: repeat;
  background-size: 200px 200px;
  animation: twinkle 5s ease-in-out infinite;
}

/* Floating Numbers */
.floating-numbers {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.floating-numbers .number {
  position: absolute;
  font-family: var(--font-primary);
  font-weight: 700;
  color: rgba(212, 175, 55, 0.08);
  font-size: 120px;
  animation: float-number 15s ease-in-out infinite;
}

.floating-numbers .n1 {
  top: 10%;
  left: 5%;
  animation-delay: 0s;
  font-size: 100px;
}

.floating-numbers .n2 {
  top: 20%;
  right: 10%;
  animation-delay: 2s;
  font-size: 80px;
}

.floating-numbers .n3 {
  top: 60%;
  left: 8%;
  animation-delay: 4s;
  font-size: 90px;
}

.floating-numbers .n4 {
  top: 70%;
  right: 5%;
  animation-delay: 1s;
  font-size: 110px;
}

.floating-numbers .n5 {
  bottom: 15%;
  left: 15%;
  animation-delay: 3s;
  font-size: 70px;
}

.floating-numbers .n6 {
  bottom: 25%;
  right: 15%;
  animation-delay: 5s;
  font-size: 85px;
}

@keyframes float-number {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.08;
  }

  50% {
    transform: translateY(-20px) rotate(5deg);
    opacity: 0.12;
  }
}

/* Hero Content - Centered Above All */
.hero-content {
  position: relative;
  z-index: 5;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--space-6);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Hero Badge - Glowing Pill */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.4);
  backdrop-filter: blur(10px);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--divine-gold);
  margin-bottom: var(--space-8);
  position: relative;
  overflow: hidden;
  animation: fade-in-up 0.8s ease forwards;
}

.hero-badge i {
  width: 18px;
  height: 18px;
}

.badge-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
  animation: shimmer 4s infinite;
}

/* Hero Title - Two Lines */
.hero-title {
  margin-bottom: var(--space-4);
  line-height: 1.1;
}

.hero-title .title-line {
  display: block;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--pure-white);
  animation: fade-in-up 0.8s ease forwards;
  animation-delay: 0.2s;
  opacity: 0;
}

.hero-title .title-line.accent {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation-delay: 0.4s;
  text-shadow: 0 0 60px rgba(212, 175, 55, 0.4);
}

/* Hero Tagline */
.hero-tagline {
  font-family: var(--font-accent);
  font-size: var(--text-xl);
  font-style: italic;
  color: rgba(212, 175, 55, 0.9);
  margin-bottom: var(--space-4);
  animation: fade-in-up 0.8s ease forwards;
  animation-delay: 0.5s;
  opacity: 0;
}

/* Hero Subtitle */
.hero-subtitle {
  font-size: var(--text-lg);
  color: var(--soft-cream);
  margin-bottom: var(--space-6);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  animation: fade-in-up 0.8s ease forwards;
  animation-delay: 0.6s;
  opacity: 0;
}

.hero-subtitle strong {
  color: var(--pure-white);
}

/* Hero Buttons */
.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  animation: fade-in-up 0.8s ease forwards;
  animation-delay: 0.8s;
  opacity: 0;
  flex-wrap: wrap;
}

.hero-btn-primary {
  background: var(--gradient-gold);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
  position: relative;
  overflow: hidden;
}

.hero-btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.hero-btn-primary:hover::before {
  left: 100%;
}

.hero-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

.hero-btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(212, 175, 55, 0.5);
  transform: translateY(-3px);
}

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  margin-top: var(--space-16);
  animation: fade-in-up 0.8s ease forwards;
  animation-delay: 1s;
  opacity: 0;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-primary);
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--divine-gold);
  display: block;
  text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.stat-label {
  font-size: var(--text-sm);
  color: var(--soft-cream);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.8;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(212, 175, 55, 0.5), transparent);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: var(--soft-cream);
  font-size: var(--text-xs);
  opacity: 0.6;
  animation: bounce-gentle 2s infinite;
}

.scroll-indicator .mouse {
  width: 22px;
  height: 36px;
  border: 2px solid rgba(212, 175, 55, 0.5);
  border-radius: var(--radius-full);
  position: relative;
}

.scroll-indicator .wheel {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: var(--divine-gold);
  border-radius: var(--radius-full);
  animation: scroll-wheel 1.5s ease-in-out infinite;
}

/* Responsive Hero */
@media (max-width: 768px) {
  .hero {
    padding-top: 130px;
    padding-bottom: 40px;
  }

  .hero-title .title-line {
    font-size: clamp(2.5rem, 10vw, 3.5rem);
  }

  .hero-tagline {
    font-size: var(--text-base);
  }

  .hero-subtitle {
    font-size: var(--text-base);
  }

  .hero-buttons {
    flex-direction: column;
    gap: var(--space-3);
  }

  .hero-stats {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 5px !important;
    justify-content: space-around !important;
    /* Better looking spacing */
    width: 100% !important;
    margin-top: 2rem !important;
  }

  .stat-item {
    padding: 0 2px;
  }

  .stat-number {
    font-size: 1.1rem !important;
    margin-bottom: 0 !important;
  }

  .stat-label {
    font-size: 0.6rem !important;
    white-space: nowrap !important;
    letter-spacing: 0 !important;
  }

  .stat-divider {
    display: none;
  }

  .floating-numbers .number {
    font-size: 60px;
  }

  /* Global Button Adjustments for Mobile */
  .btn {
    font-size: 0.7rem !important;
    padding: 0.4rem 0.8rem !important;
  }

  /* Global Paragraph Text for Mobile */
  p {
    font-size: 0.9rem !important;
  }
}

/* ============================================
   NEW HERO SPLIT LAYOUT (Premium Upgrade)
   ============================================ */
.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  background: #0a1628;
  overflow: hidden;
  padding-top: 130px;
  padding-bottom: 60px;
}

.hero-grid-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

/* Left Content Styling */
.hero-content-left {
  text-align: left;
  z-index: 2;
}

.hero-title-split {
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--space-5);
}

.hero-title-split span.d-block {
  display: block;
  font-size: clamp(3rem, 5vw, 4.5rem);
  color: var(--pure-white);
}

.text-gold-gradient {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle-split {
  font-size: var(--text-lg);
  color: var(--soft-cream);
  margin-bottom: var(--space-8);
  max-width: 90%;
  line-height: 1.6;
}

.hero-buttons-left {
  display: flex;
  gap: var(--space-4);
}

/* Right Content - Glass Card */
.hero-content-right {
  display: flex;
  justify-content: center;
  position: relative;
  perspective: 1000px;
}

.glass-stat-card {
  background: rgba(10, 22, 40, 0.85);
  /* Much darker and opaque */
  backdrop-filter: blur(15px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  /* Gold border for visibility */
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
  width: 100%;
  max-width: 450px;
  position: relative;
  transform-style: preserve-3d;
  animation: float-card 6s ease-in-out infinite;
}

@keyframes float-card {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

.stat-card-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 20px;
}

.stat-icon-circle {
  width: 60px;
  height: 60px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.icon-gold {
  color: #D4AF37;
  width: 28px;
  height: 28px;
}

.stat-card-header h3 {
  color: #FFFFFF !important;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 4px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.stat-card-header p {
  color: #F4D03F !important;
  /* Brighter gold */
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
  font-weight: 600;
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-bottom: 30px;
}

.stat-box {
  text-align: center;
  background: rgba(0, 0, 0, 0.2);
  padding: 15px 10px;
  border-radius: 12px;
}

.stat-num {
  display: block;
  font-size: 2rem;
  /* Larger */
  font-weight: 800;
  color: #FFFFFF !important;
  margin-bottom: 5px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.stat-txt {
  font-size: 0.8rem;
  color: #d1d5db !important;
  /* Light gray to white */
  text-transform: uppercase;
  font-weight: 600;
}

.stat-card-footer {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--soft-cream);
}

.stat-card-footer p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .hero-grid-layout {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-10);
  }

  .hero-content-left {
    text-align: center;
  }

  .hero-subtitle-split {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons-left {
    justify-content: center;
  }

  .hero-content-right {
    display: none;
    /* Optional: Hide card on very small screens or stack it */
  }
}

@media (max-width: 768px) {
  .hero-content-right {
    display: block;
    /* Show stacked */
  }

  .glass-stat-card {
    padding: 25px;
  }
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-16);
  position: relative;
  z-index: 2;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  color: var(--divine-gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: var(--space-4);
}

.section-title {
  font-size: var(--text-5xl);
  margin-bottom: var(--space-4);
}

.section-subtitle {
  font-size: var(--text-lg);
  color: var(--soft-cream);
  opacity: 0.9;
}

/* Decorative Divider */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  margin: var(--space-6) 0;
}

.divider-line {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--divine-gold), transparent);
}

.divider-icon {
  color: var(--divine-gold);
  font-size: var(--text-xl);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
  background: var(--gradient-mystic);
  position: relative;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-glow);
  opacity: 0.5;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

/* About Image Styling */
.about-image {
  position: relative;
  z-index: 1;
}

.image-frame {
  position: relative;
  display: inline-block;
  border-radius: var(--radius-2xl);
  overflow: hidden;
}

.about-photo {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: var(--radius-2xl);
  border: 4px solid transparent;
  background: linear-gradient(var(--midnight-blue), var(--midnight-blue)) padding-box,
    linear-gradient(135deg, #d4af37 0%, #8a5bb0 50%, #d4af37 100%) border-box;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(212, 175, 55, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-photo:hover {
  transform: scale(1.02);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6),
    0 0 60px rgba(212, 175, 55, 0.3);
}

.glow-ring {
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  border-radius: var(--radius-2xl);
  border: 2px solid rgba(212, 175, 55, 0.3);
  animation: glow-ring-pulse 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes glow-ring-pulse {

  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(1.02);
  }
}

.about-content {
  position: relative;
  z-index: 1;
}

.about-content h2 {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-6);
}

.about-content p {
  font-size: var(--text-lg);
  margin-bottom: var(--space-6);
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin-top: var(--space-8);
}

.about-feature {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4);
  background: var(--glass-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
}

.about-feature-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.15);
  border-radius: var(--radius-md);
  color: var(--divine-gold);
  font-size: var(--text-xl);
}

.about-feature-text {
  font-weight: 500;
}

.about-image {
  position: relative;
  z-index: 1;
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-image-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid var(--divine-gold);
  border-radius: var(--radius-2xl);
  opacity: 0.5;
  z-index: 2;
}

.about-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================
   CELEBRITY SECTION
   ============================================ */
.celebrity-section {
  padding: var(--space-20) 0;
  background: var(--cosmic-indigo);
  position: relative;
}

.celebrity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.celebrity-card {
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-full);
  padding: var(--space-4) var(--space-6);
  text-align: center;
  transition: all 0.3s ease;
}

.celebrity-card:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: var(--divine-gold);
  transform: translateY(-3px);
}

.name-change {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.old-name {
  color: var(--soft-cream);
  text-decoration: line-through;
  opacity: 0.7;
}

.new-name {
  color: var(--divine-gold);
  font-weight: 600;
}

.name-change i {
  width: 16px;
  height: 16px;
  color: var(--divine-gold);
}

.celebrity-note {
  text-align: center;
  color: var(--soft-cream);
  max-width: 700px;
  margin: 0 auto;
  font-size: var(--text-base);
}

.celebrity-note strong {
  color: var(--pure-white);
}

@media (max-width: 768px) {
  .celebrity-grid {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }
}

/* ============================================
   SUCCESS STORIES SECTION
   ============================================ */
.success-section {
  padding: var(--space-20) 0;
  background: linear-gradient(135deg, #1a1040 0%, #0a1628 50%, #1a1040 100%);
  position: relative;
  overflow: hidden;
}

.success-slider-container {
  max-width: 900px;
  margin: 0 auto var(--space-12);
  position: relative;
}

.success-slider {
  position: relative;
  min-height: 400px;
}

.success-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.5s ease;
}

.success-slide.active {
  opacity: 1;
  transform: translateX(0);
  position: relative;
}

.success-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.success-image {
  min-height: 350px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.success-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 50%, rgba(10, 22, 40, 0.8) 100%);
}

.success-content {
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.success-icon {
  font-size: 48px;
  margin-bottom: var(--space-4);
}

.success-content h3 {
  font-size: var(--text-2xl);
  color: var(--divine-gold);
  margin-bottom: var(--space-4);
}

.success-quote {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: var(--text-lg);
  color: var(--soft-cream);
  line-height: 1.7;
  margin-bottom: var(--space-6);
}

.success-author {
  margin-bottom: var(--space-3);
}

.success-author strong {
  display: block;
  color: var(--pure-white);
  font-size: var(--text-base);
}

.success-author span {
  color: var(--soft-cream);
  font-size: var(--text-sm);
  opacity: 0.7;
}

.success-stars {
  font-size: var(--text-lg);
}

/* Success Slider Navigation */
.success-slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--divine-gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.slider-btn:hover {
  background: var(--divine-gold);
  color: var(--midnight-blue);
}

.slider-dots-success {
  display: flex;
  gap: var(--space-3);
}

.slider-dots-success .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dots-success .dot.active {
  background: var(--divine-gold);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* Happy Customers Stats */
.happy-customers {
  display: flex;
  justify-content: center;
  gap: var(--space-12);
  padding: var(--space-8);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-xl);
  max-width: 900px;
  margin: 0 auto;
}

.customer-stat {
  text-align: center;
}

.customer-number {
  display: block;
  font-family: var(--font-primary);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--divine-gold);
}

.customer-label {
  font-size: var(--text-sm);
  color: var(--soft-cream);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media (max-width: 768px) {
  .success-card {
    grid-template-columns: 1fr;
  }

  .success-image {
    min-height: 200px;
  }

  .success-image::after {
    background: linear-gradient(180deg, transparent 50%, rgba(10, 22, 40, 0.9) 100%);
  }

  .happy-customers {
    flex-wrap: wrap;
    gap: var(--space-6);
  }

  .customer-stat {
    flex: 1 0 40%;
  }
}

/* ============================================
   SERVICES SECTION
   ============================================ */
/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
  background: var(--midnight-blue);
  position: relative;
  overflow: hidden;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.service-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(212, 175, 55, 0.1);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--divine-gold), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon-box {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-6);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(138, 91, 176, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: var(--divine-gold);
  font-size: 32px;
  transition: all 0.3s ease;
  position: relative;
}

.service-card:hover .service-icon-box {
  background: var(--gradient-gold);
  color: var(--midnight-blue);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
  transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
  font-size: var(--text-xl);
  color: var(--pure-white);
  margin-bottom: var(--space-4);
  font-weight: 600;
}

.service-card p {
  font-size: var(--text-base);
  color: var(--soft-cream);
  opacity: 0.8;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-price {
  display: inline-flex;
  align-items: baseline;
  gap: var(--space-1);
  margin-top: var(--space-4);
  padding: var(--space-2) var(--space-4);
  background: rgba(212, 175, 55, 0.1);
  border-radius: var(--radius-full);
}

.service-price .currency {
  font-size: var(--text-lg);
  color: var(--divine-gold);
}

.service-price .amount {
  font-family: var(--font-primary);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--divine-gold);
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
.how-it-works {
  background: var(--gradient-mystic);
  position: relative;
}

.steps-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-8);
  position: relative;
}

.steps-container::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 100px;
  right: 100px;
  height: 2px;
  background: linear-gradient(90deg, var(--divine-gold), var(--royal-purple), var(--divine-gold));
  z-index: 0;
}

.step-item {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-gold);
  border-radius: var(--radius-full);
  margin: 0 auto var(--space-6);
  font-family: var(--font-primary);
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--midnight-blue);
  box-shadow: var(--shadow-glow);
}

.step-title {
  font-family: var(--font-primary);
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
  color: var(--pure-white);
}

.step-text {
  color: var(--soft-cream);
  opacity: 0.9;
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */
.why-choose-us {
  background: var(--midnight-blue);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

.feature-box {
  text-align: center;
  padding: var(--space-8);
  background: var(--gradient-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-2xl);
  transition: var(--transition-base);
}

.feature-box:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.3);
}

.feature-icon-circle {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-mystic);
  border: 2px solid var(--divine-gold);
  border-radius: var(--radius-full);
  margin: 0 auto var(--space-6);
  font-size: var(--text-3xl);
  color: var(--divine-gold);
  box-shadow: var(--shadow-glow);
}

.feature-title {
  font-family: var(--font-primary);
  font-size: var(--text-lg);
  margin-bottom: var(--space-3);
  color: var(--pure-white);
}

.feature-text {
  color: var(--soft-cream);
  font-size: var(--text-sm);
  opacity: 0.9;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
  background: var(--gradient-mystic);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: var(--gradient-glow);
  border-radius: 50%;
  opacity: 0.3;
}

.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background: var(--gradient-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  position: relative;
}

.testimonial-quote {
  position: absolute;
  top: var(--space-6);
  left: var(--space-6);
  font-size: var(--text-5xl);
  color: var(--divine-gold);
  opacity: 0.3;
  font-family: serif;
  line-height: 1;
}

.testimonial-text {
  font-size: var(--text-lg);
  font-style: italic;
  color: var(--soft-cream);
  margin-bottom: var(--space-6);
  padding-top: var(--space-8);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  border: 2px solid var(--divine-gold);
  object-fit: cover;
}

.testimonial-info h4 {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  color: var(--pure-white);
  margin-bottom: var(--space-1);
}

.testimonial-info span {
  font-size: var(--text-sm);
  color: var(--divine-gold);
}

.testimonial-stars {
  color: var(--divine-gold);
  font-size: var(--text-sm);
  margin-top: var(--space-2);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: var(--space-20) 0;
  background: var(--cosmic-indigo);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  height: 1000px;
  background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: var(--text-5xl);
  margin-bottom: var(--space-6);
}

.cta-subtitle {
  font-size: var(--text-xl);
  color: var(--soft-cream);
  margin-bottom: var(--space-10);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--midnight-blue);
  border-top: 1px solid var(--glass-border);
  padding: var(--space-16) 0 var(--space-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-12);
  margin-bottom: var(--space-12);
}

.footer-brand {
  max-width: 350px;
}

.footer-brand .logo {
  margin-bottom: var(--space-4);
}

.footer-brand p {
  color: var(--soft-cream);
  opacity: 0.8;
  margin-bottom: var(--space-6);
}

.footer-social {
  display: flex;
  gap: var(--space-3);
}

.social-link {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  color: var(--soft-cream);
  font-size: var(--text-lg);
  transition: var(--transition-base);
}

.social-link:hover {
  background: var(--divine-gold);
  color: var(--midnight-blue);
  transform: translateY(-3px);
}

.footer-column h4 {
  font-family: var(--font-primary);
  font-size: var(--text-lg);
  color: var(--divine-gold);
  margin-bottom: var(--space-6);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: var(--space-3);
}

.footer-links a {
  color: var(--soft-cream);
  opacity: 0.8;
  transition: var(--transition-base);
}

.footer-links a:hover {
  color: var(--divine-gold);
  opacity: 1;
  padding-left: var(--space-2);
}

.footer-bottom {
  padding-top: var(--space-8);
  border-top: 1px solid var(--glass-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: var(--soft-cream);
  opacity: 0.7;
  font-size: var(--text-sm);
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: var(--space-6);
}

.footer-bottom-links a {
  color: var(--soft-cream);
  opacity: 0.7;
  font-size: var(--text-sm);
}

.footer-bottom-links a:hover {
  color: var(--divine-gold);
  opacity: 1;
}

/* ============================================
   ANIMATIONS (Keyframes)
   ============================================ */
@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse-glow {

  0%,
  100% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

@keyframes twinkle {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

@keyframes rotate-slow {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes bounce-gentle {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

@keyframes scroll-wheel {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(12px);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  :root {
    --text-7xl: 3.5rem;
    --text-6xl: 3rem;
    --text-5xl: 2.5rem;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--midnight-blue);
    flex-direction: column;
    align-items: flex-start;
    padding: var(--space-20) var(--space-8);
    transition: var(--transition-base);
    box-shadow: var(--shadow-xl);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  .about-image {
    order: -1;
  }

  .testimonials-slider {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }
}

@media (max-width: 768px) {
  :root {
    --text-7xl: 2.75rem;
    --text-6xl: 2.25rem;
    --text-5xl: 2rem;
    --text-4xl: 1.75rem;
  }

  section {
    padding: var(--space-16) 0;
  }

  .hero-buttons {
    flex-direction: column;
    gap: var(--space-3);
  }

  .hero-stats {
    flex-direction: column;
    gap: var(--space-6);
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .steps-container {
    flex-direction: column;
    gap: var(--space-10);
  }

  .steps-container::before {
    display: none;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-4);
    text-align: center;
  }
}

@media (max-width: 480px) {
  :root {
    --text-7xl: 2.25rem;
    --text-6xl: 2rem;
    --text-5xl: 1.75rem;
  }

  .container {
    padding: 0 var(--space-4);
  }

  .btn-lg {
    padding: var(--space-4) var(--space-6);
    font-size: var(--text-base);
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.grid {
  display: grid;
}

.hidden {
  display: none;
}

.visible {
  display: block;
}

.mb-4 {
  margin-bottom: var(--space-4);
}

.mb-6 {
  margin-bottom: var(--space-6);
}

.mb-8 {
  margin-bottom: var(--space-8);
}

.mt-4 {
  margin-top: var(--space-4);
}

.mt-6 {
  margin-top: var(--space-6);
}

.mt-8 {
  margin-top: var(--space-8);
}

/* ============================================
   CELEBRITY SECTION
   ============================================ */
.celebrity-section {
  background: var(--cosmic-indigo);
  padding: var(--space-20) 0;
}

.celebrity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.celebrity-card {
  background: var(--gradient-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: var(--space-5);
  transition: var(--transition-base);
}

.celebrity-card:hover {
  border-color: rgba(212, 175, 55, 0.5);
  transform: translateY(-3px);
}

.name-change {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.old-name {
  color: var(--soft-cream);
  text-decoration: line-through;
  opacity: 0.7;
}

.new-name {
  color: var(--divine-gold);
  font-weight: 600;
}

.celebrity-note {
  text-align: center;
  font-size: var(--text-lg);
  color: var(--soft-cream);
  max-width: 800px;
  margin: 0 auto;
}

/* ============================================
   WHAT IS NUMEROLOGY SECTION
   ============================================ */
.what-is-section {
  background: var(--gradient-mystic);
  position: relative;
}

.what-is-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.what-is-content h2 {
  margin-bottom: var(--space-6);
}

.what-is-content p {
  font-size: var(--text-lg);
  margin-bottom: var(--space-4);
}

.what-is-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mystical-circle {
  width: 300px;
  height: 300px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.inner-circle {
  width: 120px;
  height: 120px;
  background: var(--gradient-gold);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow);
  z-index: 2;
}

.big-number {
  font-family: var(--font-primary);
  font-size: var(--text-5xl);
  font-weight: 700;
  color: var(--midnight-blue);
}

.orbit {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px dashed rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-full);
  animation: rotate-slow 30s linear infinite;
}

.orbit span {
  position: absolute;
  width: 40px;
  height: 40px;
  background: rgba(212, 175, 55, 0.2);
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-weight: 600;
  color: var(--divine-gold);
}

.orbit span:nth-child(1) {
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}

.orbit span:nth-child(2) {
  top: 15%;
  right: 5%;
}

.orbit span:nth-child(3) {
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
}

.orbit span:nth-child(4) {
  bottom: 15%;
  right: 5%;
}

.orbit span:nth-child(5) {
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}

.orbit span:nth-child(6) {
  bottom: 15%;
  left: 5%;
}

.orbit span:nth-child(7) {
  top: 50%;
  left: -20px;
  transform: translateY(-50%);
}

.orbit span:nth-child(8) {
  top: 15%;
  left: 5%;
}

/* ============================================
   TRAINING SECTION
   ============================================ */
.training-section {
  background: var(--midnight-blue);
  padding: var(--space-20) 0;
}

.training-card {
  background: var(--gradient-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-2xl);
  padding: var(--space-12);
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.training-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-4);
  margin: var(--space-8) 0;
  text-align: left;
}

.training-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3);
  background: rgba(212, 175, 55, 0.1);
  border-radius: var(--radius-lg);
  color: var(--soft-cream);
}

.training-item i {
  color: var(--divine-gold);
  width: 20px;
  height: 20px;
}

/* ============================================
   IMAGE FRAME (About)
   ============================================ */
.image-frame {
  width: 350px;
  height: 350px;
  background: var(--gradient-card);
  border: 2px solid var(--glass-border);
  border-radius: var(--radius-2xl);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0 auto;
}

.image-frame .numerology-symbol {
  font-size: 120px;
  color: var(--divine-gold);
  text-shadow: var(--shadow-glow);
}

.glow-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-2xl);
  animation: pulse-glow 3s ease-in-out infinite;
}

/* About features list */
.feature-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--soft-cream);
  margin-bottom: var(--space-2);
}

.feature-item i {
  color: var(--divine-gold);
  width: 18px;
  height: 18px;
}

/* Google Rating */
.google-rating {
  text-align: center;
  margin-top: var(--space-8);
}

.rating-stars {
  font-size: var(--text-2xl);
  margin-right: var(--space-3);
}

.rating-text {
  color: var(--soft-cream);
  font-weight: 500;
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-btn {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: var(--z-fixed);
  transition: var(--transition-base);
  color: white;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
  color: white;
}

.whatsapp-btn i {
  width: 28px;
  height: 28px;
}

/* Section CTA */
.section-cta {
  text-align: center;
  margin-top: var(--space-12);
}

/* ============================================
   RESPONSIVE - NEW SECTIONS
   ============================================ */
@media (max-width: 992px) {
  .celebrity-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .what-is-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .mystical-circle {
    margin-top: var(--space-8);
  }
}

@media (max-width: 576px) {
  .celebrity-grid {
    grid-template-columns: 1fr;
  }

  .image-frame {
    width: 250px;
    height: 250px;
  }

  .image-frame .numerology-symbol {
    font-size: 80px;
  }
}

/* ============================================
   DYNAMIC MENU & FOOTER OVERRIDES
   ============================================ */

/* Footer Dynamic Menus */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links li a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
  display: block;
}

.footer-links li a:hover {
  color: #D4AF37;
  padding-left: 5px;
}

/* Mobile Menu Dynamic Fixes */
@media (max-width: 992px) {

  /* The wrapper is now the drawer */
  .nav-menu {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 20px;
    padding-left: 30px;
  }

  /* The UL inside needs to stack */
  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 20px;
    margin-bottom: 30px;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links li a {
    font-size: 1.2rem;
    display: block;
    width: 100%;
  }

  /* Adjust CTA position in drawer */
  .nav-cta {
    margin-top: 10px;
    width: auto;
  }
}