/* =========================================================
   RAJA BHAI - Official Numerology Platform Stylesheet
   Theme: Royal Cosmic Midnight & Celestial Gold
   ========================================================= */

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

:root {
  --bg-dark: #050714;
  --bg-cosmic: #0a0e27;
  --bg-card: rgba(14, 20, 48, 0.65);
  --bg-card-hover: rgba(22, 32, 74, 0.8);
  
  --gold-primary: #ffb703;
  --gold-glow: #ffd000;
  --gold-gradient: linear-gradient(135deg, #ffe066 0%, #f7b731 50%, #e17055 100%);
  --gold-text-grad: linear-gradient(180deg, #fff3b0 0%, #f9ca24 60%, #e67e22 100%);
  
  --neon-cyan: #00f2fe;
  --neon-purple: #b537f2;
  --neon-blue: #4facfe;
  --neon-gold: #ffc107;
  
  --crimson-text: #6b0505;
  --crimson-banner-grad: linear-gradient(180deg, #ffe600 0%, #ffae00 50%, #f39c12 100%);
  
  --text-light: #f8fafc;
  --text-muted: #94a3b8;
  --text-gold: #fbc531;
  
  --border-gold: rgba(251, 197, 49, 0.35);
  --border-glass: rgba(255, 255, 255, 0.12);
  
  --font-royal: 'Cinzel', serif;
  --font-hindi: 'Rozha One', 'Poppins', sans-serif;
  --font-body: 'Poppins', sans-serif;
  
  --container-width: 1200px;
  --mobile-app-width: 480px;
}

/* Base Resets */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

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

/* Cosmic Space Canvas / Background */
.cosmic-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
  background: radial-gradient(circle at 50% 20%, #151945 0%, #080b1d 60%, #03040c 100%);
  overflow: hidden;
  pointer-events: none;
}

.cosmic-stars {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(2px 2px at 20px 30px, #ffffff, rgba(0,0,0,0)),
    radial-gradient(2px 2px at 80px 140px, #ffffff, rgba(0,0,0,0)),
    radial-gradient(1px 1px at 150px 70px, #ffd700, rgba(0,0,0,0)),
    radial-gradient(2px 2px at 220px 210px, #ffffff, rgba(0,0,0,0)),
    radial-gradient(1.5px 1.5px at 310px 100px, #70a1ff, rgba(0,0,0,0)),
    radial-gradient(2px 2px at 450px 350px, #ffffff, rgba(0,0,0,0)),
    radial-gradient(1px 1px at 550px 180px, #ffffff, rgba(0,0,0,0)),
    radial-gradient(2.5px 2.5px at 700px 90px, #ff9ff3, rgba(0,0,0,0)),
    radial-gradient(1px 1px at 850px 320px, #ffffff, rgba(0,0,0,0)),
    radial-gradient(2px 2px at 980px 240px, #00d2d3, rgba(0,0,0,0)),
    radial-gradient(1.5px 1.5px at 1100px 80px, #ffffff, rgba(0,0,0,0));
  background-repeat: repeat;
  background-size: 600px 600px;
  opacity: 0.65;
  animation: starTwinkle 8s ease-in-out infinite alternate;
}

@keyframes starTwinkle {
  0% { opacity: 0.45; }
  100% { opacity: 0.85; }
}

.cosmic-nebula {
  position: absolute;
  top: -10%;
  left: 10%;
  width: 80vw;
  height: 80vh;
  background: radial-gradient(circle, rgba(110, 44, 243, 0.22) 0%, rgba(26, 115, 232, 0.15) 45%, rgba(0,0,0,0) 75%);
  filter: blur(80px);
  pointer-events: none;
}

/* Mountain Horizon at the base */
.mountain-silhouette {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 220px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320' preserveAspectRatio='none'%3E%3Cpath fill='%23050714' fill-opacity='0.95' d='M0,224L48,208C96,192,192,160,288,170.7C384,181,480,235,576,245.3C672,256,768,224,864,192C960,160,1056,128,1152,138.7C1248,149,1344,203,1392,229.3L1440,256L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3Cpath fill='%230b0f2e' fill-opacity='0.6' d='M0,192L60,197.3C120,203,240,213,360,192C480,171,600,117,720,122.7C840,128,960,192,1080,208C1200,224,1320,192,1380,176L1440,160L1440,320L1380,320C1320,320,1200,320,1080,320C960,320,840,320,720,320C600,320,480,320,360,320C240,320,120,320,60,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
  background-size: cover;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: -1;
}

/* App Container for Desktop / Mobile responsive centering */
.site-wrapper {
  position: relative;
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 16px;
}

/* Header & Navigation */
.header-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 7, 20, 0.75);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 215, 0, 0.15);
}

.hamburger-btn {
  background: transparent;
  border: none;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.hamburger-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hamburger-btn span {
  display: block;
  width: 24px;
  height: 2.5px;
  background-color: #ffffff;
  border-radius: 3px;
  transition: 0.3s;
}

/* Brand Logo (Exact match with reference screenshot) */
.brand-logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
}

.crown-icon {
  font-size: 1.4rem;
  line-height: 1;
  color: #ffc107;
  filter: drop-shadow(0 0 8px rgba(255, 193, 7, 0.8));
  margin-bottom: 2px;
  animation: crownBob 3s ease-in-out infinite;
}

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

.brand-title {
  font-family: var(--font-royal);
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  display: flex;
  align-items: baseline;
  gap: 6px;
  line-height: 1;
}

.brand-raja {
  color: #ffb703;
  text-shadow: 0 0 12px rgba(255, 183, 3, 0.5);
}

.brand-bhai {
  color: #ffffff;
  font-family: var(--font-royal);
  font-weight: 700;
}

.brand-subline {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #ffd54f;
  margin-top: 4px;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-subline::before,
.brand-subline::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #ffd54f);
}
.brand-subline::after {
  background: linear-gradient(90deg, #ffd54f, transparent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-chat-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #ffb703, #fb8500);
  color: #111;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 7px 14px;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 0 15px rgba(251, 133, 0, 0.4);
  transition: all 0.3s ease;
}

.nav-chat-btn:hover {
  transform: scale(1.04);
  box-shadow: 0 0 20px rgba(251, 133, 0, 0.7);
}

/* Nav Drawer (Sliding Mobile Menu) */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.nav-drawer {
  position: fixed;
  top: 0;
  left: -320px;
  width: 300px;
  height: 100vh;
  background: #080c24;
  border-right: 1px solid var(--border-gold);
  z-index: 999;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.nav-drawer.active {
  left: 0;
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.drawer-close {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 4px 8px;
}

.drawer-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.drawer-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #e2e8f0;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 10px 14px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.drawer-menu a:hover,
.drawer-menu a.active {
  background: rgba(255, 183, 3, 0.15);
  color: #ffd54f;
  border-left: 3px solid #ffb703;
}

.drawer-footer {
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
}

/* =========================================================
   HERO SECTION (Replicating Reference Screenshot Exactly)
   ========================================================= */

.hero-phone-frame {
  max-width: 480px;
  margin: 0 auto;
  position: relative;
  padding: 20px 14px 40px 14px;
  text-align: center;
}

@media (min-width: 768px) {
  .hero-phone-frame {
    max-width: 520px;
  }
}

/* Technical Number Matrix Radar & Ambient Visuals */
.matrix-stage,
.zodiac-stage {
  position: relative;
  width: 100%;
  height: 380px;
  margin: 0 auto -70px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.matrix-radar-svg,
.zodiac-wheel-svg {
  position: absolute;
  width: 380px;
  height: 380px;
  opacity: 0.85;
  filter: drop-shadow(0 0 25px rgba(0, 242, 254, 0.5));
  animation: rotateZodiac 120s linear infinite;
}

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

.cyber-orb,
.moon-planet {
  position: absolute;
  top: 10px;
  right: -10px;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #00f2fe 0%, #3b82f6 40%, #1e1b4b 80%, #050714 100%);
  box-shadow: 0 0 30px rgba(0, 242, 254, 0.45), inset 0 0 15px rgba(255, 183, 3, 0.35);
  border: 1.5px solid rgba(0, 242, 254, 0.4);
  opacity: 0.9;
  filter: brightness(1.1);
  z-index: 1;
}

.cyber-orb::after,
.moon-planet::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.25);
  animation: rotateZodiac 40s linear infinite reverse;
}

/* Floating Illuminated Numerology Numbers (Exactly matching image) */
.floating-number {
  position: absolute;
  font-family: var(--font-royal);
  font-weight: 800;
  color: #ffffff;
  user-select: none;
  z-index: 3;
  filter: drop-shadow(0 0 16px rgba(110, 44, 243, 0.85));
  animation: floatNum 5s ease-in-out infinite alternate;
}

@keyframes floatNum {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(-8px) scale(1.05); }
}

/* Number 8 - Top Left */
.num-8 {
  top: 25px;
  left: 20px;
  font-size: 3rem;
  color: #c7d2fe;
  filter: drop-shadow(0 0 16px #6366f1);
  animation-delay: 0.2s;
}

/* Number 5 - Mid Left */
.num-5 {
  top: 110px;
  left: 95px;
  font-size: 2.2rem;
  color: #93c5fd;
  filter: drop-shadow(0 0 14px #3b82f6);
  animation-delay: 1.2s;
}

/* Number 3 - Top Center */
.num-3 {
  top: 15px;
  left: 48%;
  transform: translateX(-50%);
  font-size: 2.4rem;
  color: #c4b5fd;
  filter: drop-shadow(0 0 15px #8b5cf6);
  animation-delay: 0.7s;
}

/* Number 9 - Top Right */
.num-9 {
  top: 15px;
  right: 50px;
  font-size: 3rem;
  color: #e0e7ff;
  filter: drop-shadow(0 0 18px #818cf8);
  animation-delay: 1.5s;
}

/* Center Number 7 with glowing ring inside zodiac */
.num-7-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(147, 51, 234, 0.5) 0%, rgba(30, 27, 75, 0.8) 100%);
  border: 2px solid #c084fc;
  box-shadow: 0 0 25px rgba(192, 132, 252, 0.8), inset 0 0 15px rgba(192, 132, 252, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
}

.num-7 {
  font-family: var(--font-royal);
  font-size: 2.2rem;
  font-weight: 900;
  color: #ffffff;
  text-shadow: 0 0 10px #ffffff, 0 0 20px #a855f7;
}

/* Number 1 - Mid Right */
.num-1 {
  top: 160px;
  right: 15px;
  font-size: 2.5rem;
  color: #bfdbfe;
  filter: drop-shadow(0 0 16px #60a5fa);
  animation-delay: 2s;
}

/* Number 6 - Lower Right Big */
.num-6 {
  bottom: 40px;
  right: 35px;
  font-size: 4rem;
  color: #ddd6fe;
  filter: drop-shadow(0 0 22px #8b5cf6);
  animation-delay: 0.5s;
}

/* Number 2 - Bottom Right */
.num-2 {
  bottom: -40px;
  right: 10px;
  font-size: 2.5rem;
  color: #a5b4fc;
  filter: drop-shadow(0 0 15px #6366f1);
  animation-delay: 1.8s;
}

/* Subtitle under Raja Bhai */
.hero-tagline-small {
  text-align: left;
  max-width: 170px;
  margin: 10px 0 20px 8px;
  position: relative;
  z-index: 5;
}

.hero-tagline-small p {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  line-height: 1.4;
  color: #cbd5e1;
  text-transform: uppercase;
}

.tagline-accent {
  width: 25px;
  height: 2px;
  background: #ffb703;
  margin-top: 6px;
  box-shadow: 0 0 8px #ffb703;
}

/* 3D Slanted Shubh Ank Banner Card (Exact Screenshot Design) */
.shubh-ank-banner-wrap {
  position: relative;
  z-index: 6;
  margin: 10px 0 22px 0;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.7));
}

.banner-pill-top {
  display: inline-block;
  background: linear-gradient(180deg, #0f2756 0%, #06132d 100%);
  border: 1.5px solid #00e5ff;
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.5), inset 0 0 10px rgba(0, 229, 255, 0.3);
  padding: 6px 24px;
  border-radius: 8px 8px 0 0;
  margin-bottom: -4px;
  position: relative;
  z-index: 7;
  transform: perspective(400px) rotateX(8deg);
}

.banner-pill-top h2 {
  font-size: 1.55rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.5px;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 2px 4px rgba(0, 0, 0, 0.6);
  font-family: var(--font-hindi);
}

.banner-golden-slab {
  background: linear-gradient(180deg, #fff275 0%, #ffc107 45%, #ff9800 100%);
  border: 2px solid #fff59d;
  border-radius: 12px;
  padding: 12px 10px;
  box-shadow: 
    0 0 35px rgba(255, 193, 7, 0.7),
    inset 0 2px 6px rgba(255, 255, 255, 0.8),
    inset 0 -4px 8px rgba(183, 28, 28, 0.4);
  transform: perspective(500px) rotateX(-2deg);
}

.banner-golden-slab h1 {
  font-family: var(--font-hindi);
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 1.1;
  color: #720909;
  text-shadow: 
    0 1px 0 #ffe082,
    0 -1px 0 #420404,
    1px 2px 2px rgba(0,0,0,0.35);
  letter-spacing: 1px;
}

/* Banner Sub-headline */
.hero-subtext {
  font-size: 0.98rem;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.5;
  margin: 16px auto 20px auto;
  max-width: 380px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
  font-family: var(--font-hindi);
}

/* Trust Badges (Exact 3-item row with dividers) */
.trust-badges-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 16, 42, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 12px 10px;
  margin-bottom: 22px;
  position: relative;
  z-index: 5;
}

.trust-badge-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: left;
}

.badge-icon {
  font-size: 1.35rem;
  color: #ffd54f;
  filter: drop-shadow(0 0 6px rgba(255, 213, 79, 0.6));
  flex-shrink: 0;
}

.badge-text {
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.3;
  color: #f1f5f9;
  font-family: var(--font-hindi);
}

.badge-divider {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.15);
}

/* Primary CTA Button (Golden glowing pill button with chat icon) */
.cta-glow-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 360px;
  padding: 15px 28px;
  background: linear-gradient(90deg, #fbc531 0%, #e1b12c 50%, #f39c12 100%);
  color: #1a0f02;
  font-family: var(--font-hindi);
  font-size: 1.55rem;
  font-weight: 800;
  text-decoration: none;
  border-radius: 50px;
  border: 2px solid #fff59d;
  box-shadow: 
    0 0 30px rgba(243, 156, 18, 0.65),
    inset 0 2px 4px rgba(255, 255, 255, 0.6);
  position: relative;
  z-index: 6;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: ctaPulse 2.5s infinite;
}

@keyframes ctaPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 25px rgba(243, 156, 18, 0.6);
  }
  50% {
    transform: scale(1.025);
    box-shadow: 0 0 40px rgba(255, 193, 7, 0.9);
  }
}

.cta-glow-btn:hover {
  transform: scale(1.04);
  box-shadow: 0 0 50px rgba(255, 193, 7, 1);
  color: #000000;
}

.cta-icon {
  font-size: 1.5rem;
  line-height: 1;
}

.cta-arrow {
  font-size: 1.4rem;
  margin-left: 2px;
  transition: transform 0.2s ease;
}

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

/* Tagline under CTA */
.sub-cta-tagline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 500;
  color: #e2e8f0;
  margin: 18px auto 26px auto;
  font-family: var(--font-hindi);
}

.sub-cta-tagline::before,
.sub-cta-tagline::after {
  content: "";
  display: inline-block;
  width: 25px;
  height: 1px;
  background: #ffb703;
}

/* =========================================================
   3 FEATURE CARDS (Exact match with reference screenshot)
   ========================================================= */
.feature-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 25px;
  position: relative;
  z-index: 5;
}

.feature-card {
  background: rgba(11, 15, 38, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 16px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.feature-card:hover {
  transform: translateY(-4px);
}

/* Card 1: Gold / Daily Lucky Number */
.card-gold {
  border: 1.5px solid rgba(255, 193, 7, 0.5);
  box-shadow: 0 0 15px rgba(255, 193, 7, 0.2), inset 0 0 12px rgba(255, 193, 7, 0.1);
}
.card-gold:hover {
  border-color: #ffc107;
  box-shadow: 0 0 25px rgba(255, 193, 7, 0.4);
}
.card-gold .card-icon-bubble {
  background: radial-gradient(circle, #f59e0b 0%, #b45309 100%);
  border: 1.5px solid #fde047;
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.6);
}

/* Card 2: Purple / Live Chat Support */
.card-purple {
  border: 1.5px solid rgba(192, 132, 252, 0.5);
  box-shadow: 0 0 15px rgba(192, 132, 252, 0.2), inset 0 0 12px rgba(192, 132, 252, 0.1);
}
.card-purple:hover {
  border-color: #c084fc;
  box-shadow: 0 0 25px rgba(192, 132, 252, 0.4);
}
.card-purple .card-icon-bubble {
  background: radial-gradient(circle, #a855f7 0%, #7e22ce 100%);
  border: 1.5px solid #e9d5ff;
  box-shadow: 0 0 12px rgba(168, 85, 247, 0.6);
}

/* Card 3: Cyan / Premium Guidance */
.card-cyan {
  border: 1.5px solid rgba(34, 211, 238, 0.5);
  box-shadow: 0 0 15px rgba(34, 211, 238, 0.2), inset 0 0 12px rgba(34, 211, 238, 0.1);
}
.card-cyan:hover {
  border-color: #22d3ee;
  box-shadow: 0 0 25px rgba(34, 211, 238, 0.4);
}
.card-cyan .card-icon-bubble {
  background: radial-gradient(circle, #06b6d4 0%, #0e7490 100%);
  border: 1.5px solid #a5f3fc;
  box-shadow: 0 0 12px rgba(6, 182, 212, 0.6);
}

.card-icon-bubble {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  font-size: 1.3rem;
  color: #ffffff;
}

.card-title-en {
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.25;
  color: #ffffff;
  margin-bottom: 6px;
}

.card-desc-hi {
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1.3;
  color: #cbd5e1;
  font-family: var(--font-hindi);
}

/* Bottom Tagline with Lotus (Exact screenshot match) */
.bottom-lotus-tagline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #f1f5f9;
  padding: 12px 0;
  font-family: var(--font-hindi);
  position: relative;
  z-index: 5;
}

.lotus-icon {
  font-size: 1.1rem;
  color: #ffb703;
}

.tagline-sep {
  color: #ffb703;
  opacity: 0.6;
}

/* =========================================================
   ADDITIONAL HIGH-CONVERTING & LEGITIMATE SECTIONS
   ========================================================= */

/* Section Layouts */
.content-section {
  padding: 60px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 40px auto;
}

.section-badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 20px;
  background: rgba(255, 183, 3, 0.15);
  border: 1px solid rgba(255, 183, 3, 0.4);
  color: #ffd54f;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
  font-family: var(--font-hindi);
}

.section-title span {
  color: #ffb703;
}

.section-description {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Interactive Mulank / Numerology Calculator */
.calc-card {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(11, 17, 44, 0.85);
  border: 1.5px solid rgba(255, 193, 7, 0.3);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(15px);
}

.calc-input-group {
  margin-bottom: 20px;
  text-align: left;
}

.calc-input-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #e2e8f0;
}

.calc-input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.2s ease;
}

.calc-input:focus {
  outline: none;
  border-color: #ffb703;
  box-shadow: 0 0 12px rgba(255, 183, 3, 0.4);
}

.calc-btn {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, #ffb703, #fb8500);
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #111;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-hindi);
  box-shadow: 0 0 20px rgba(251, 133, 0, 0.4);
}

.calc-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(251, 133, 0, 0.6);
}

/* Calculator Result Box */
.calc-result-box {
  display: none;
  margin-top: 25px;
  padding: 20px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 193, 7, 0.3);
  animation: fadeIn 0.4s ease;
}

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

.result-numbers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 20px;
}

.result-item {
  background: rgba(0, 0, 0, 0.3);
  padding: 15px;
  border-radius: 10px;
  text-align: center;
}

.result-item .result-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.result-item .result-val {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffb703;
  font-family: var(--font-royal);
}

.result-details-list {
  list-style: none;
  font-size: 0.88rem;
  color: #cbd5e1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
}

.result-details-list strong {
  color: #ffd54f;
}

/* Grid of Value Props / Why Choose Us */
.features-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.value-card {
  background: rgba(14, 20, 50, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.value-card:hover {
  border-color: rgba(255, 183, 3, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.value-card-icon {
  font-size: 2rem;
  margin-bottom: 15px;
  display: inline-block;
}

.value-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.value-card-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* FAQ Accordion */
.faq-container {
  max-width: 750px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: rgba(12, 17, 44, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.2s ease;
}

.faq-question {
  width: 100%;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
}

.faq-question:hover {
  color: #ffb703;
}

.faq-icon {
  font-size: 1.2rem;
  color: #ffb703;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  padding: 0 20px;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 18px;
}

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

/* =========================================================
   LEGAL DISCLAIMER & META AD POLICY COMPLIANCE BOX
   ========================================================= */
.meta-policy-disclaimer {
  background: rgba(8, 12, 30, 0.9);
  border: 1px solid rgba(255, 183, 3, 0.25);
  border-radius: 14px;
  padding: 24px;
  margin: 40px auto 20px auto;
  max-width: 950px;
  text-align: left;
}

.disclaimer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ffb703;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 10px;
}

.disclaimer-text {
  font-size: 0.82rem;
  color: #94a3b8;
  line-height: 1.6;
}

.disclaimer-text strong {
  color: #e2e8f0;
}

/* =========================================================
   FOOTER SECTION
   ========================================================= */
.site-footer {
  background: #030510;
  border-top: 1px solid rgba(255, 215, 0, 0.15);
  padding: 50px 0 25px 0;
  position: relative;
  z-index: 10;
}

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

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-brand, .footer-col {
    align-items: center;
  }
  .footer-contact-item {
    justify-content: center;
  }
}

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

.footer-about {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  position: relative;
}

.footer-col h4::after {
  content: "";
  display: block;
  width: 25px;
  height: 2px;
  background: #ffb703;
  margin-top: 6px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.86rem;
  transition: all 0.2s ease;
}

.footer-links a:hover {
  color: #ffb703;
  padding-left: 4px;
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.86rem;
  color: var(--text-muted);
}

.footer-contact-item a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact-item a:hover {
  color: #ffb703;
}

.footer-contact-icon {
  color: #ffb703;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.footer-bottom {
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 0.8rem;
  color: #64748b;
}

@media (max-width: 600px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* Floating Live Chat Action Button */
.chat-float-btn,
.whatsapp-float-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffb703 0%, #fb8500 50%, #00f2fe 100%);
  color: #111111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  box-shadow: 0 4px 25px rgba(251, 133, 0, 0.65);
  border: 2px solid #fff59d;
  z-index: 990;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: floatWa 3s ease-in-out infinite alternate;
}

@keyframes floatWa {
  0% { transform: translateY(0); }
  100% { transform: translateY(-6px); }
}

.chat-float-btn:hover,
.whatsapp-float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(255, 193, 7, 0.9);
}

.chat-pulse,
.whatsapp-pulse {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid #ffb703;
  animation: pulseRing 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes pulseRing {
  0% { transform: scale(0.95); opacity: 0.85; }
  50% { transform: scale(1.3); opacity: 0; }
  100% { transform: scale(0.95); opacity: 0; }
}

/* Policy Page Article / Content Container */
.policy-page-container {
  max-width: 850px;
  margin: 40px auto 80px auto;
  padding: 35px 30px;
  background: rgba(11, 16, 40, 0.85);
  border: 1px solid rgba(255, 183, 3, 0.2);
  border-radius: 16px;
  backdrop-filter: blur(15px);
  color: #cbd5e1;
}

.policy-page-container h1 {
  font-size: 2.2rem;
  color: #ffb703;
  margin-bottom: 8px;
  font-family: var(--font-hindi);
}

.policy-meta-date {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.policy-page-container h2 {
  font-size: 1.4rem;
  color: #ffffff;
  margin: 28px 0 12px 0;
  font-family: var(--font-hindi);
}

.policy-page-container p, .policy-page-container ul {
  font-size: 0.94rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.policy-page-container ul {
  padding-left: 24px;
}

.policy-page-container li {
  margin-bottom: 8px;
}

.policy-contact-box {
  background: rgba(255, 183, 3, 0.08);
  border: 1px solid rgba(255, 183, 3, 0.3);
  padding: 20px;
  border-radius: 10px;
  margin-top: 30px;
}
