/* ==========================================================================
   ASTRO RAJVEER - PREMIUM APPLE-STYLE COSMIC LANDING PAGE STYLESHEET
   ========================================================================== */

:root {
  /* Color System */
  --bg-deep: #070a12;
  --bg-dark-secondary: #0c101d;
  --bg-card: rgba(16, 22, 38, 0.65);
  --bg-card-hover: rgba(28, 38, 64, 0.85);

  --gold-primary: #f59e0b;
  --gold-light: #fbbf24;
  --gold-dark: #d97706;
  --gold-glow: rgba(245, 158, 11, 0.3);
  --gold-border: rgba(245, 158, 11, 0.35);

  --violet-primary: #8b5cf6;
  --violet-light: #a855f7;
  --violet-glow: rgba(139, 92, 246, 0.25);

  --text-primary: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;

  --border-subtle: rgba(255, 255, 255, 0.08);
  --glass-blur: blur(20px);

  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

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

/* Reset & Global */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

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

p {
  font-size: 0.8rem;
}

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

ul {
  list-style: none;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.relative-z {
  position: relative;
  z-index: 5;
}

/* Typography Utilities */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
}

.text-gradient {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 50%, var(--violet-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-tagline {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--gold-primary);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: inline-block;
}

.section-title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 1.75rem;
  }
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 0.8rem;
  max-width: 650px;
  margin: 0 auto 3.5rem auto;
}

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

.mb-3 {
  margin-bottom: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.5rem 1rem;
  border-radius: 9px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8rem;
  cursor: pointer;
  transition: var(--transition-normal);
  border: 1px solid transparent;
  outline: none;
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-dark) 100%);
  color: #070a12;
  box-shadow: 0 4px 20px var(--gold-glow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(245, 158, 11, 0.45);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--border-subtle);
  color: var(--text-primary);
  backdrop-filter: var(--glass-blur);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  transform: translateY(-3px);
}

.btn-secondary {
  background: rgba(139, 92, 246, 0.12);
  border-color: rgba(139, 92, 246, 0.25);
  color: var(--violet-light);
}

.btn-secondary:hover {
  background: var(--violet-primary);
  color: #ffffff;
  border-color: var(--violet-primary);
  box-shadow: 0 4px 20px var(--violet-glow);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

.btn-whatsapp-direct {
  background: #25d366;
  color: #ffffff;
  width: 100%;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

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

/* Announcement Top Bar Marquee */
.top-bar {
  background: linear-gradient(90deg, #0f1526, #18112e, #0f1526);
  border-bottom: 1px solid rgba(245, 158, 11, 0.2);
  padding: 0.5rem 0;
  overflow: hidden;
  position: relative;
  z-index: 1001;
  font-size: 0.85rem;
  font-family: var(--font-heading);
}

.marquee-wrapper {
  display: flex;
  white-space: nowrap;
  overflow: hidden;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  animation: marqueeScroll 35s linear infinite;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-100%);
  }
}

.marquee-icon {
  color: var(--gold-primary);
}

/* Sticky Header */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(7, 10, 18, 0.8);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition-normal);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

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

.logo-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(139, 92, 246, 0.2));
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  font-size: 1.2rem;
  box-shadow: 0 0 15px var(--gold-glow);
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  display: block;
  line-height: 1;
  color: var(--text-primary);
}

.brand-tag {
  font-size: 0.75rem;
  color: var(--gold-primary);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

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

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition-fast);
  position: relative;
}

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

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold-primary);
  border-radius: 2px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-cta {
  display: none;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Section 1: Hero Section (Apple-Style Cosmic Luxury) */
.hero-section {
  position: relative;
  min-height: auto;
  padding-top: 40px;
  padding-bottom: 30px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #070a12;
}

#hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-nebula-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 75% 40%, rgba(139, 92, 246, 0.18) 0%, transparent 55%),
    radial-gradient(circle at 25% 60%, rgba(245, 158, 11, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(7, 10, 18, 0.7) 0%, #070a12 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 3;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

.hero-text-col {
  text-align: left;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1.25rem;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid var(--gold-border);
  border-radius: 9999px;
  font-size: 0.825rem;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--gold-primary);
  margin-bottom: 1.75rem;
  backdrop-filter: var(--glass-blur);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-primary);
  box-shadow: 0 0 10px var(--gold-primary);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.3;
    transform: scale(0.8);
  }
}

.hero-title {
  font-size: 2rem;
  margin-bottom: 1.25rem;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
}

@media (min-width: 1200px) {
  .hero-title {
    font-size: 2rem;
  }
}

.hero-subtitle {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
  max-width: 620px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.25rem;
}

.hero-cta-group .btn {
  padding: 0.6rem 1.25rem;
  font-size: 0.875rem;
}

.hero-btn-glow {
  position: relative;
  overflow: hidden;
}

.hero-btn-glow::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(60deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: rotate(30deg);
  animation: shimmerBtn 3.5s infinite;
}

@keyframes shimmerBtn {
  0% {
    transform: translateX(-100%) rotate(30deg);
  }

  30%,
  100% {
    transform: translateX(100%) rotate(30deg);
  }
}

.btn-arrow {
  transition: transform 0.3s ease;
}

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

/* Micro Trust Proof */
.hero-trust-proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
}

.trust-avatars {
  display: flex;
  align-items: center;
}

.avatar-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-primary), var(--violet-primary));
  border: 2px solid #070a12;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: #070a12;
  margin-right: -10px;
}

.avatar-plus {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(28, 38, 64, 0.9);
  border: 2px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-right: 0;
}

.trust-rating {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stars {
  color: var(--gold-primary);
  font-size: 0.9rem;
  display: flex;
  gap: 0.2rem;
}

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

/* Right Visual Column: 3D Cosmic Stage & Rotating Zodiac Ring */
.hero-visual-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-cosmic-stage {
  position: relative;
  width: 440px;
  height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 575px) {
  .hero-cosmic-stage {
    width: 320px;
    height: 320px;
  }
}

.cosmic-orb-glow {
  position: absolute;
  width: 75%;
  height: 75%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.25) 0%, rgba(139, 92, 246, 0.25) 50%, transparent 70%);
  filter: blur(40px);
  animation: pulseGlow 4s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
  0% {
    transform: scale(0.85);
    opacity: 0.6;
  }

  100% {
    transform: scale(1.15);
    opacity: 1;
  }
}

/* Outer Orbit Ring with Zodiac Glyphs */
.zodiac-orbit-ring {
  position: absolute;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.outer-ring {
  width: 380px;
  height: 380px;
  border: 1px solid var(--gold-border);
  box-shadow: 0 0 25px rgba(245, 158, 11, 0.15);
  animation: spinOrbit 45s linear infinite;
}

@media (max-width: 575px) {
  .outer-ring {
    width: 290px;
    height: 290px;
  }
}

@keyframes spinOrbit {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.orbit-glyph {
  position: absolute;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rashi-badge {
  width: 46px;
  height: 46px;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease, filter 0.3s ease;
  animation: spinOrbitReverse 45s linear infinite;
}

.rashi-symbol {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-primary);
  text-shadow: 0 0 15px var(--gold-glow), 0 0 30px var(--gold-primary);
  line-height: 1;
}

.rashi-badge:hover {
  transform: scale(1.4);
  filter: drop-shadow(0 0 20px var(--gold-primary));
}

/* Position 12 Rashi Badges along circle */
.pos-1 {
  transform: rotate(0deg) translate(190px) rotate(0deg);
}

.pos-2 {
  transform: rotate(30deg) translate(190px) rotate(-30deg);
}

.pos-3 {
  transform: rotate(60deg) translate(190px) rotate(-60deg);
}

.pos-4 {
  transform: rotate(90deg) translate(190px) rotate(-90deg);
}

.pos-5 {
  transform: rotate(120deg) translate(190px) rotate(-120deg);
}

.pos-6 {
  transform: rotate(150deg) translate(190px) rotate(-150deg);
}

.pos-7 {
  transform: rotate(180deg) translate(190px) rotate(-180deg);
}

.pos-8 {
  transform: rotate(210deg) translate(190px) rotate(-210deg);
}

.pos-9 {
  transform: rotate(240deg) translate(190px) rotate(-240deg);
}

.pos-10 {
  transform: rotate(270deg) translate(190px) rotate(-270deg);
}

.pos-11 {
  transform: rotate(300deg) translate(190px) rotate(-300deg);
}

.pos-12 {
  transform: rotate(330deg) translate(190px) rotate(-330deg);
}

@media (max-width: 575px) {
  .pos-1 {
    transform: rotate(0deg) translate(145px) rotate(0deg);
  }

  .pos-2 {
    transform: rotate(30deg) translate(145px) rotate(-30deg);
  }

  .pos-3 {
    transform: rotate(60deg) translate(145px) rotate(-60deg);
  }

  .pos-4 {
    transform: rotate(90deg) translate(145px) rotate(-90deg);
  }

  .pos-5 {
    transform: rotate(120deg) translate(145px) rotate(-120deg);
  }

  .pos-6 {
    transform: rotate(150deg) translate(145px) rotate(-150deg);
  }

  .pos-7 {
    transform: rotate(180deg) translate(145px) rotate(-180deg);
  }

  .pos-8 {
    transform: rotate(210deg) translate(145px) rotate(-210deg);
  }

  .pos-9 {
    transform: rotate(240deg) translate(145px) rotate(-240deg);
  }

  .pos-10 {
    transform: rotate(270deg) translate(145px) rotate(-270deg);
  }

  .pos-11 {
    transform: rotate(300deg) translate(145px) rotate(-300deg);
  }

  .pos-12 {
    transform: rotate(330deg) translate(145px) rotate(-330deg);
  }
}

.middle-ring {
  width: 270px;
  height: 270px;
  border: 1px dashed rgba(139, 92, 246, 0.45);
  animation: spinOrbitReverse 30s linear infinite;
}

@media (max-width: 575px) {
  .middle-ring {
    width: 200px;
    height: 200px;
  }
}

@keyframes spinOrbitReverse {
  from {
    transform: rotate(360deg);
  }

  to {
    transform: rotate(0deg);
  }
}

/* Core Sacred Om & Kundli Medallion */
.core-kundli-medallion {
  position: relative;
  z-index: 5;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--violet-primary), var(--gold-dark));
  padding: 3px;
  box-shadow: 0 0 45px var(--gold-glow);
}

@media (max-width: 575px) {
  .core-kundli-medallion {
    width: 140px;
    height: 140px;
  }
}

.medallion-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle, #101626 0%, #070a12 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  overflow: hidden;
}

.kundli-svg-grid {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 82%;
  height: 82%;
  pointer-events: none;
}

.sacred-symbol-box {
  position: relative;
  z-index: 2;
  margin-bottom: 0.35rem;
}

.sacred-om-icon {
  font-size: 2.6rem;
  color: var(--gold-light);
  text-shadow: 0 0 20px var(--gold-primary), 0 0 10px var(--gold-light);
  animation: pulseOm 3s ease-in-out infinite alternate;
}

@keyframes pulseOm {
  0% {
    transform: scale(0.95);
    opacity: 0.85;
  }

  100% {
    transform: scale(1.08);
    opacity: 1;
    text-shadow: 0 0 25px var(--gold-primary), 0 0 15px var(--gold-light);
  }
}

.medallion-title {
  position: relative;
  z-index: 2;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--text-primary);
  line-height: 1.1;
}

.medallion-tag {
  position: relative;
  z-index: 2;
  font-size: 0.7rem;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* Floating Glass Cards */
.floating-glass-card {
  position: absolute;
  z-index: 10;
  background: rgba(16, 22, 38, 0.85);
  border: 1px solid var(--gold-border);
  border-radius: 1.25rem;
  padding: 0.85rem 1.15rem;
  backdrop-filter: var(--glass-blur);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 15px var(--gold-glow);
}

.floating-glass-card strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--text-primary);
  line-height: 1.2;
}

.floating-glass-card small {
  font-size: 0.75rem;
  color: var(--gold-primary);
}

.card-icon-box {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  font-size: 1rem;
}

.card-top-right {
  top: 15px;
  right: -25px;
  animation: floatCard1 4s ease-in-out infinite alternate;
}

.card-bottom-left {
  bottom: 20px;
  left: -25px;
  animation: floatCard2 4.5s ease-in-out infinite alternate;
}

.card-top-left {
  top: 25px;
  left: -35px;
  animation: floatCard3 5s ease-in-out infinite alternate;
}

@keyframes floatCard1 {
  0% {
    transform: translateY(0px);
  }

  100% {
    transform: translateY(-12px);
  }
}

@keyframes floatCard2 {
  0% {
    transform: translateY(0px);
  }

  100% {
    transform: translateY(12px);
  }
}

@keyframes floatCard3 {
  0% {
    transform: translateY(0px);
  }

  100% {
    transform: translateY(-10px);
  }
}

@media (max-width: 991px) {
  .hero-text-col {
    text-align: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta-group {
    justify-content: center;
  }

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

  .card-top-right,
  .card-bottom-left,
  .card-top-left {
    display: none;
    /* Hide floating extra badges on small mobile screens to keep layout ultra crisp */
  }
}

@media (max-width: 767px) {
  .badge-pill {
    font-size: 0.4rem;
    padding: 0.25rem 0.75rem;
    margin-bottom: 1rem;
  }

  .hero-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .hero-subtitle {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
  }

  .hero-cta-group {
    display: flex;
    align-items: center;
    gap: 0.1rem;
    margin-bottom: 1.25rem;
  }

  .hero-cta-group .btn {
    padding: 0.4rem 0.85rem;
    font-size: 0.75rem;
  }
}

/* Section 2: Astrology-Themed Counters (Interactive & Colorful) */
.trust-banner {
  background: linear-gradient(180deg, #070a12 0%, #0c101d 50%, #070a12 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 5rem 0;
  position: relative;
  z-index: 4;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.stat-card {
  position: relative;
  background: rgba(16, 22, 38, 0.75);
  border-radius: 1.75rem;
  padding: 2.5rem 1.75rem 2rem 1.75rem;
  text-align: center;
  backdrop-filter: var(--glass-blur);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-card-glow {
  position: absolute;
  top: -40%;
  left: -40%;
  width: 180%;
  height: 180%;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
}

.stat-badge-pill {
  position: absolute;
  top: 15px;
  right: 15px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  letter-spacing: 0.5px;
  z-index: 3;
}

.stat-icon-wrapper {
  position: relative;
  z-index: 3;
  width: 64px;
  height: 64px;
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.75rem;
  transition: transform 0.4s ease;
}

.stat-card:hover .stat-icon-wrapper {
  transform: scale(1.15) rotate(8deg);
}

.stat-number-wrapper {
  position: relative;
  z-index: 3;
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -1px;
}

.stat-label {
  position: relative;
  z-index: 3;
  color: var(--text-primary);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.stat-footer-tag {
  position: relative;
  z-index: 3;
  font-size: 0.8rem;
  color: var(--text-muted);
  background: rgba(7, 10, 18, 0.6);
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* Color Variant 1: Gold Theme */
.stat-card-gold {
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.stat-card-gold .stat-card-glow {
  background: radial-gradient(circle at center, rgba(245, 158, 11, 0.35) 0%, transparent 70%);
}

.stat-card-gold .stat-badge-pill {
  background: rgba(245, 158, 11, 0.15);
  color: var(--gold-light);
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.stat-card-gold .stat-icon-wrapper {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.25), rgba(251, 191, 36, 0.1));
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: var(--gold-light);
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.2);
}

.stat-card-gold .stat-number-wrapper {
  background: linear-gradient(135deg, #fef08a 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-card-gold:hover {
  transform: translateY(-8px) scale(1.03);
  border-color: rgba(245, 158, 11, 0.7);
  box-shadow: 0 20px 45px rgba(245, 158, 11, 0.35);
}

.stat-card-gold:hover .stat-card-glow {
  opacity: 1;
}

/* Color Variant 2: Violet / Magenta Theme */
.stat-card-violet {
  border: 1px solid rgba(168, 85, 247, 0.3);
}

.stat-card-violet .stat-card-glow {
  background: radial-gradient(circle at center, rgba(168, 85, 247, 0.35) 0%, transparent 70%);
}

.stat-card-violet .stat-badge-pill {
  background: rgba(168, 85, 247, 0.15);
  color: #c084fc;
  border: 1px solid rgba(168, 85, 247, 0.3);
}

.stat-card-violet .stat-icon-wrapper {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.25), rgba(236, 72, 153, 0.1));
  border: 1px solid rgba(168, 85, 247, 0.4);
  color: #c084fc;
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.2);
}

.stat-card-violet .stat-number-wrapper {
  background: linear-gradient(135deg, #f472b6 0%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-card-violet:hover {
  transform: translateY(-8px) scale(1.03);
  border-color: rgba(168, 85, 247, 0.7);
  box-shadow: 0 20px 45px rgba(168, 85, 247, 0.35);
}

.stat-card-violet:hover .stat-card-glow {
  opacity: 1;
}

/* Color Variant 3: Sapphire Blue Theme */
.stat-card-blue {
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.stat-card-blue .stat-card-glow {
  background: radial-gradient(circle at center, rgba(59, 130, 246, 0.35) 0%, transparent 70%);
}

.stat-card-blue .stat-badge-pill {
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.stat-card-blue .stat-icon-wrapper {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.25), rgba(6, 182, 212, 0.1));
  border: 1px solid rgba(59, 130, 246, 0.4);
  color: #60a5fa;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}

.stat-card-blue .stat-number-wrapper {
  background: linear-gradient(135deg, #38bdf8 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-card-blue:hover {
  transform: translateY(-8px) scale(1.03);
  border-color: rgba(59, 130, 246, 0.7);
  box-shadow: 0 20px 45px rgba(59, 130, 246, 0.35);
}

.stat-card-blue:hover .stat-card-glow {
  opacity: 1;
}

/* Color Variant 4: Emerald Green Theme */
.stat-card-emerald {
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.stat-card-emerald .stat-card-glow {
  background: radial-gradient(circle at center, rgba(16, 185, 129, 0.35) 0%, transparent 70%);
}

.stat-card-emerald .stat-badge-pill {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.stat-card-emerald .stat-icon-wrapper {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.25), rgba(20, 184, 166, 0.1));
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #34d399;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
}

.stat-card-emerald .stat-number-wrapper {
  background: linear-gradient(135deg, #6ee7b7 0%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-card-emerald:hover {
  transform: translateY(-8px) scale(1.03);
  border-color: rgba(16, 185, 129, 0.7);
  box-shadow: 0 20px 45px rgba(16, 185, 129, 0.35);
}

.stat-card-emerald:hover .stat-card-glow {
  opacity: 1;
}

/* Mobile Screen Overrides for 2-Column Counter Grid */
@media (max-width: 575px) {
  .stats-grid {
    gap: 0.75rem;
  }

  .stat-card {
    padding: 1rem 0.65rem 1rem 0.65rem;
    border-radius: 1.25rem;
  }

  .stat-badge-pill,
  .stat-badge {
    position: absolute;
    top: 6px;
    right: 10px;
    font-family: var(--font-heading);
    font-size: 0.5rem;
    font-weight: 700;
    padding: 0.1rem 0.35rem;
    border-radius: 9999px;
  }

  .stat-icon-wrapper {
    position: relative;
    z-index: 3;
    width: 34px;
    height: 34px;
    border-radius: 0.35rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.25rem;
    margin-bottom: 0.65rem;
    font-size: 1rem;
    transition: transform 0.4s ease;
  }

  .stat-number-wrapper {
    font-size: 1.45rem;
    line-height: 1.1;
    margin-bottom: 0.25rem;
    letter-spacing: -0.5px;
  }

  .stat-label {
    position: relative;
    z-index: 3;
    color: var(--text-primary);
    font-size: 0.7rem;
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 0.45rem;
  }

  .stat-footer-tag {
    position: relative;
    z-index: 3;
    font-size: 0.55rem;
    color: var(--text-muted);
    background: rgba(7, 10, 18, 0.6);
    padding: 0.25rem 0.45rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    white-space: nowrap;
  }
}

/* Section 3: About Us Section */
.about-section {
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}

#about-bg-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: stretch;
}

@media (min-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr 1.1fr;
  }
}

.about-image-column {
  height: 100%;
  display: flex;
}

.about-card-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 480px;
  display: flex;
}

.glow-backdrop {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 95%;
  height: 95%;
  background: radial-gradient(circle, var(--gold-primary) 0%, var(--violet-primary) 60%, transparent 80%);
  opacity: 0.25;
  filter: blur(50px);
  z-index: 1;
}

.about-image-card {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  min-height: 480px;
  border-radius: 2rem;
  border: 1px solid var(--gold-border);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 35px var(--gold-glow);
  background: rgba(16, 22, 38, 0.8);
  display: flex;
}

.about-full-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 2rem;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-image-card:hover .about-full-img {
  transform: scale(1.04);
}

.about-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  background: linear-gradient(to top, rgba(7, 10, 18, 0.95) 0%, rgba(7, 10, 18, 0.4) 60%, transparent 100%);
  z-index: 3;
  display: flex;
  align-items: flex-end;
}

.astrologer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(7, 10, 18, 0.85);
  border: 1px solid var(--gold-border);
  border-radius: 9999px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--gold-light);
  backdrop-filter: var(--glass-blur);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.experience-floating-badge {
  position: absolute;
  top: 25px;
  right: 25px;
  z-index: 4;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: #070a12;
  padding: 0.85rem 1.35rem;
  border-radius: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 10px 25px rgba(245, 158, 11, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.exp-num {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
}

.exp-text {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.about-description {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.about-certifications {
  background: rgba(16, 22, 38, 0.5);
  border: 1px solid var(--border-subtle);
  border-radius: 1rem;
  padding: 1.5rem;
  margin: 2rem 0;
}

.cert-title {
  font-size: 1rem;
  color: var(--gold-primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cert-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 576px) {
  .cert-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.cert-item {
  font-size: 0.9rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cert-item i {
  color: var(--gold-primary);
}

/* Section 4: Our Services (Interactive Grid) */
.services-section {
  padding: 7rem 0;
  background: var(--bg-dark-secondary);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  backdrop-filter: var(--glass-blur);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
  opacity: 0;
  transition: var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-border);
  background: var(--bg-card-hover);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 25px var(--gold-glow);
}

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

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 1.25rem;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(139, 92, 246, 0.15));
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--gold-primary);
  margin-bottom: 1.5rem;
  transition: var(--transition-normal);
}

.service-card:hover .service-icon {
  background: var(--gold-primary);
  color: #070a12;
  transform: scale(1.1) rotate(6deg);
  box-shadow: 0 0 20px var(--gold-glow);
}

.service-title {
  font-size: 1.4rem;
  margin-bottom: 0.35rem;
}

.service-subheading {
  font-size: 0.85rem;
  color: var(--gold-primary);
  font-weight: 600;
  margin-bottom: 1rem;

}

.service-desc {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-bottom: 2rem;
  flex-grow: 1;
  line-height: 1.7;
}

.service-cta {
  width: 100%;
}

@media (max-width: 767px) {
  .services-section {
    padding: 3.5rem 0;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .service-card {
    padding: 1.15rem 0.75rem 1rem 0.75rem;
    border-radius: 1.15rem;
  }

  .service-icon {
    width: 38px;
    height: 38px;
    border-radius: 0.65rem;
    font-size: 1.1rem;
    margin-bottom: 0.65rem;
  }

  .service-title {
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
    line-height: 1.25;
  }

  .service-subheading {
    font-size: 0.7rem;
    margin-bottom: 0.45rem;
    line-height: 1.25;
  }

  .service-desc {
    font-size: 0.65rem;
    margin-bottom: 0.85rem;
    line-height: 1.4;
  }

  .service-cta {
    padding: 0.35rem 0.6rem;
    font-size: 0.65rem;
    gap: 0.35rem;
    border-radius: 6px;
  }
}

/* Section 5: Our Process (Vertical Zig-Zag Interactive Timeline) */
.process-section {
  padding: 7rem 0;
  position: relative;
}

.vertical-timeline-container {
  position: relative;
  max-width: 950px;
  margin: 3.5rem auto 0 auto;
}

.vertical-connecting-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  background: var(--border-subtle);
  border-radius: 4px;
  z-index: 1;
  overflow: hidden;
}

.vertical-progress-fill {
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold-primary) 50%, var(--violet-primary) 100%);
  box-shadow: 0 0 15px var(--gold-primary);
  transition: height 0.25s ease-out;
}

.vertical-timeline-steps {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  position: relative;
  z-index: 2;
}

.timeline-row {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  align-items: center;
  gap: 1.5rem;
}

@media (max-width: 767px) {
  .process-section {
    padding: 3.5rem 0;
  }

  .vertical-timeline-container {
    margin-top: 2rem;
  }

  .vertical-connecting-line {
    left: 22px;
    transform: none;
    width: 3px;
  }

  .vertical-timeline-steps {
    gap: 1.75rem;
  }

  .timeline-row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    width: 100%;
  }

  .timeline-spacer {
    display: none;
  }

  .row-left .timeline-content-box,
  .row-right .timeline-content-box {
    order: 2;
  }

  .row-left .timeline-node,
  .row-right .timeline-node {
    order: 1;
  }

  .timeline-node {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    margin: 0;
  }

  .node-inner {
    width: 32px;
    height: 32px;
    font-size: 0.75rem;
  }

  .timeline-content-box {
    flex: 1;
    padding: 1.25rem 1rem;
    border-radius: 1.15rem;
    width: 100%;
  }

  .step-badge {
    font-size: 0.75rem;
    padding: 0.2rem 0.65rem;
    margin-bottom: 0.6rem;
  }

  .step-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
  }

  .step-icon-box {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    font-size: 1rem;
  }

  .step-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0;
    line-height: 1.25;
  }

  .step-desc {
    font-size: 0.8rem;
    line-height: 1.5;
  }
}

.timeline-content-box {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 1.5rem;
  padding: 2.25rem 2rem;
  backdrop-filter: var(--glass-blur);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}

.timeline-content-box:hover,
.timeline-row.active .timeline-content-box {
  border-color: var(--gold-border);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 25px var(--gold-glow);
  background: var(--bg-card-hover);
}

.step-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-primary);
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid var(--gold-border);
  padding: 0.2rem 0.75rem;
  border-radius: 9999px;
  margin-bottom: 0.85rem;
}

.step-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.step-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(139, 92, 246, 0.15));
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: transform 0.4s ease;
}

.timeline-content-box:hover .step-icon-box {
  background: var(--gold-primary);
  color: #070a12;
  transform: scale(1.1) rotate(6deg);
}

.step-title {
  font-size: 1.3rem;
  margin-bottom: 0;
}

.step-desc {
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.6;
}

.timeline-node {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-deep);
  border: 2px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  z-index: 5;
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
}

.node-inner {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(28, 38, 64, 0.8);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: background 0.4s ease, color 0.4s ease;
}

.timeline-row.active .timeline-node,
.timeline-row:hover .timeline-node {
  border-color: var(--gold-primary);
  box-shadow: 0 0 25px var(--gold-glow);
  transform: scale(1.1);
}

.timeline-row.active .node-inner,
.timeline-row:hover .node-inner {
  background: var(--gold-primary);
  color: #070a12;
}

/* Section 6: Client Reviews / Marquee Testimonials */
.reviews-section {
  padding: 7rem 0;
  background: var(--bg-dark-secondary);
  overflow: hidden;
}

.reviews-marquee-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  margin-top: 1rem;
  padding: 1.5rem 0;
  cursor: grab;
  touch-action: pan-y;
}

.reviews-marquee-wrapper:active {
  cursor: grabbing;
}

.reviews-track {
  display: flex;
  gap: 2rem;
  width: max-content;
}

.review-card {
  width: 360px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 1.5rem;
  padding: 2.25rem 2rem;
  backdrop-filter: var(--glass-blur);
  flex-shrink: 0;
  transition: var(--transition-normal);
}

.review-card:hover {
  border-color: var(--gold-border);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.review-rating {
  color: var(--gold-primary);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  display: flex;
  gap: 0.35rem;
}

.review-text {
  font-size: 0.8rem;
  color: var(--text-primary);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.75rem;
  min-height: 90px;
}

.review-user {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.user-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-primary), var(--violet-primary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #070a12;
  font-size: 1.1rem;
}

.user-name {
  font-size: 1rem;
  margin-bottom: 0.15rem;
}

.user-location {
  color: var(--gold-primary);
  font-size: 0.825rem;
}

/* Section 7: Contact & Booking Form */
.contact-section {
  padding: 7rem 0;
  position: relative;
}

.contact-box {
  background: linear-gradient(145deg, rgba(28, 38, 64, 0.9), rgba(12, 16, 29, 0.98));
  border: 1px solid var(--gold-border);
  border-radius: 2.5rem;
  padding: 3rem 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 30px var(--gold-glow);
}

@media (max-width: 767px) {
  .contact-box {
    padding: 1.5rem 0.75rem;
    border-radius: 1.5rem;
    gap: 2rem;
  }

  .contact-form {
    padding: 1.25rem 0.75rem;
    border-radius: 1.25rem;
  }

  .contact-form h3 {
    font-size: 1.3rem;
    margin-bottom: 1.25rem;
  }

  .contact-form .btn {
    font-size: 0.8rem;
    padding: 0.65rem 0.75rem;
    white-space: nowrap;
  }
}

@media (min-width: 992px) {
  .contact-box {
    grid-template-columns: 1fr 1.2fr;
    padding: 4.5rem;
  }
}

.contact-info h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

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

.info-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.info-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.info-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.info-value {
  font-size: 0.7rem;
  color: var(--text-primary);
}

.contact-direct-actions {
  margin-top: 1.5rem;
}

/* Contact Form */
.contact-form-wrapper {
  position: relative;
}

.contact-form {
  background: rgba(7, 10, 18, 0.7);
  border: 1px solid var(--border-subtle);
  border-radius: 1.75rem;
  padding: 1.25rem 1.5rem;
}

.contact-form h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  text-align: center;
}

.form-group {
  margin-bottom: 0.7rem;
}

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

@media (min-width: 576px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.6rem 0.8rem;
  background: rgba(28, 38, 64, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: 0.65rem;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition-fast);
}

.form-group select option {
  background: #0c101d;
  color: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 12px var(--gold-glow);
  background: rgba(28, 38, 64, 0.9);
}

.form-disclaimer {
  font-size: 0.8rem;
  color: var(--text-dim);
  text-align: center;
  margin-top: 1.25rem;
}

/* Success Message */
.form-success-message {
  display: none;
  background: rgba(7, 10, 18, 0.9);
  border: 1px solid var(--gold-border);
  border-radius: 1.75rem;
  padding: 3.5rem 2rem;
  text-align: center;

}

.form-success-message.active {
  display: block;
  animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.success-icon {
  font-size: 4rem;
  color: var(--gold-primary);
  margin-bottom: 1.5rem;
}

.form-success-message h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.form-success-message p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* Section 8: Footer */
.site-footer {
  background: #04060c;
  border-top: 1px solid var(--border-subtle);
  padding-top: 5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  }
}

.footer-logo {
  margin-bottom: 1.25rem;
}

.footer-desc {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.footer-contact-summary {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-contact-summary i {
  color: var(--gold-primary);
  width: 20px;
}

.footer-heading {
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.footer-links li {
  margin-bottom: 0.85rem;
}

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

.footer-links a:hover {
  color: var(--gold-primary);
  padding-left: 0.35rem;
}

.newsletter-text {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;

}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding: 2rem 0;
  font-size: 0.9rem;
  color: var(--text-dim);
}

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

@media (min-width: 768px) {
  .footer-bottom-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.copyright-text {
  color: var(--gold-primary);
  font-weight: 600;
}

/* Floating WhatsApp CTA */
.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: var(--transition-fast);
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
}

.whatsapp-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #25d366;
  opacity: 0.7;
  z-index: -1;
  animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

.whatsapp-tooltip {
  position: absolute;
  right: 75px;
  white-space: nowrap;
  background: rgba(12, 16, 29, 0.95);
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.85rem;
  font-family: var(--font-heading);
  border: 1px solid var(--gold-border);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
  pointer-events: none;
}

.floating-whatsapp:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
}

/* Mobile Responsive Drawer */
@media (max-width: 991px) {
  .desktop-cta {
    display: none;
  }

  .mobile-cta {
    display: flex;
    width: 100%;
    margin-top: 0.6rem;
  }

  .mobile-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: rgba(7, 10, 18, 0.98);
    backdrop-filter: var(--glass-blur);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 2rem 2.5rem 2rem;
    gap: 0.6rem;
    border-bottom: 1px solid var(--gold-border);
    transform: translateY(-150%);
    transition: var(--transition-normal);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
  }

  .nav-menu.active {
    transform: translateY(0);
  }

  .nav-menu .nav-link {
    font-size: 1.05rem;
    padding: 0.35rem 0;
    width: 100%;
    text-align: left;
  }

  .nav-menu .nav-link.active::after {
    bottom: 0;
    left: 0;
    width: 32px;
  }
}