/* --------------------------------------------------------------------------
   Maha Shivratri Pooja Landing Page - Core CSS Design System
   Designed for High Conversion Rate (CRO), Google Ads Quality Score & Mobile UX
   -------------------------------------------------------------------------- */

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

:root {
  /* Color Palette */
  --bg-dark: #080c14;
  --bg-card: #101726;
  --bg-card-hover: #172136;
  --bg-glass: rgba(16, 23, 38, 0.75);
  
  --primary-gold: #f59e0b;
  --primary-gold-light: #fbbf24;
  --primary-gold-dark: #d97706;
  --gold-glow: rgba(245, 158, 11, 0.4);
  
  --accent-crimson: #dc2626;
  --accent-crimson-hover: #b91c1c;
  --accent-orange: #f97316;
  --accent-green: #10b981;
  
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-gold: #fde047;
  
  --border-glass: rgba(245, 158, 11, 0.2);
  --border-light: rgba(255, 255, 255, 0.1);
  
  /* Fonts */
  --font-heading: 'Cinzel', serif;
  --font-subheading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Shadows & Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
  --shadow-gold: 0 10px 30px -5px rgba(245, 158, 11, 0.3);
  --shadow-glow: 0 0 25px rgba(245, 158, 11, 0.25);
  
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

/* Background Cosmic Ambient Glows */
body::before {
  content: '';
  position: fixed;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, rgba(220, 38, 38, 0.05) 40%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

/* Typography */
h1, h2, h3, h4, h5 {
  color: var(--text-main);
  line-height: 1.25;
}

.heading-font {
  font-family: var(--font-heading);
}

.subheading-font {
  font-family: var(--font-subheading);
}

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

.text-crimson {
  color: var(--accent-crimson);
}

/* Layout Utilities */
.container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.section-padding {
  padding: 80px 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 50px 0;
  }
}

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

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-full);
  color: var(--primary-gold-light);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto 48px auto;
}

@media (max-width: 768px) {
  .section-title { font-size: 1.85rem; }
  .section-subtitle { font-size: 1rem; margin-bottom: 32px; }
}

/* Announcement Bar */
.top-bar {
  background: linear-gradient(90deg, #b91c1c 0%, #f59e0b 50%, #b91c1c 100%);
  color: #fff;
  padding: 8px 15px;
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
}

.top-bar-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.top-bar .pulse-dot {
  width: 8px;
  height: 8px;
  background: #ffffff;
  border-radius: 50%;
  display: inline-block;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(255, 255, 255, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

/* Header */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(8, 12, 20, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  padding: 14px 0;
  transition: var(--transition-normal);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-main);
}

.logo-symbol {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 1.4rem;
  font-weight: bold;
  box-shadow: 0 0 15px var(--gold-glow);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.5px;
  color: var(--text-main);
}

.logo-subtitle {
  font-size: 0.72rem;
  color: var(--primary-gold-light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

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

.header-trust-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.header-trust-tag i { color: #f59e0b; }

/* Buttons & CTAs */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-subheading);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: var(--transition-fast);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(60deg, transparent 30%, rgba(255, 255, 255, 0.25) 50%, transparent 70%);
  transform: rotate(30deg);
  animation: shine 4s infinite;
}

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

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(245, 158, 11, 0.6);
  background: linear-gradient(135deg, #fbbf24 0%, #f97316 100%);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-glass);
  color: var(--text-main);
}

.btn-secondary:hover {
  background: rgba(245, 158, 11, 0.15);
  border-color: var(--primary-gold);
  color: var(--primary-gold-light);
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #22c55e;
  transform: translateY(-2px);
}

.btn-large {
  padding: 18px 38px;
  font-size: 1.15rem;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 60px 0 80px 0;
  background: radial-gradient(circle at 50% 20%, rgba(30, 27, 75, 0.5) 0%, var(--bg-dark) 70%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: 3.1rem;
  font-weight: 900;
  line-height: 1.18;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

@media (max-width: 768px) {
  .hero-content h1 { font-size: 2.1rem; }
}

.hero-subheadline {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  font-weight: 500;
}

@media (max-width: 992px) {
  .hero-bullets li { justify-content: center; }
}

.hero-bullets li i {
  color: var(--primary-gold-light);
  background: rgba(245, 158, 11, 0.15);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.hero-cta-box {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 992px) {
  .hero-cta-group { justify-content: center; }
}

.guarantee-microtext {
  font-size: 0.88rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 992px) {
  .guarantee-microtext { justify-content: center; }
}

.guarantee-microtext i { color: var(--accent-green); }

/* Hero Visual / Card */
.hero-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-gold);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #f59e0b, #dc2626, #f59e0b);
}

.timer-box {
  text-align: center;
  background: rgba(0, 0, 0, 0.4);
  border-radius: var(--radius-md);
  padding: 20px;
  border: 1px solid var(--border-light);
  margin-bottom: 24px;
}

.timer-header {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-gold-light);
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

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

.timer-unit {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  padding: 10px 4px;
}

.timer-number {
  font-size: 1.8rem;
  font-weight: 800;
  font-family: var(--font-subheading);
  color: var(--primary-gold-light);
  line-height: 1;
}

.timer-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 4px;
}

/* Hero Social Proof Avatar Bar */
.social-proof-strip {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

.avatar-group {
  display: flex;
}

.avatar-group img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid var(--bg-card);
  margin-left: -10px;
  object-fit: cover;
}

.avatar-group img:first-child { margin-left: 0; }

.proof-text {
  font-size: 0.88rem;
  line-height: 1.3;
}

.proof-text strong {
  color: var(--primary-gold-light);
}

/* Trust Badges Strip */
.trust-strip {
  background: rgba(16, 23, 38, 0.8);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 24px 0;
}

.trust-flex {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
}

.trust-item i {
  font-size: 1.4rem;
  color: var(--primary-gold-light);
}

/* Problem Section */
.problem-section {
  background: linear-gradient(180deg, var(--bg-dark) 0%, #0d121d 100%);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.problem-card {
  background: var(--bg-card);
  border: 1px solid rgba(220, 38, 38, 0.2);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: var(--transition-normal);
}

.problem-card:hover {
  transform: translateY(-4px);
  border-color: rgba(220, 38, 38, 0.5);
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.15);
}

.problem-icon {
  width: 50px;
  height: 50px;
  background: rgba(220, 38, 38, 0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-crimson);
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.problem-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

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

/* Solution / Unique Mechanism Section */
.solution-section {
  background: var(--bg-dark);
  position: relative;
}

.solution-box {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.08) 0%, rgba(16, 23, 38, 0.95) 100%);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 992px) {
  .solution-box {
    grid-template-columns: 1fr;
    padding: 30px;
  }
}

.solution-content h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  margin-bottom: 20px;
}

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

.mechanism-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mechanism-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.mechanism-number {
  width: 36px;
  height: 36px;
  background: var(--primary-gold);
  color: #000;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-subheading);
}

.mechanism-details h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.mechanism-details p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* Benefits Section */
.benefits-section {
  background: #0b0f19;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: var(--transition-normal);
}

.benefit-card:hover {
  border-color: var(--border-glass);
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
}

.benefit-badge {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(16, 185, 129, 0.15);
  color: var(--accent-green);
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.benefit-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.benefit-explanation {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.customer-outcome {
  background: rgba(245, 158, 11, 0.08);
  border-left: 3px solid var(--primary-gold);
  padding: 12px 16px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.9rem;
  color: var(--text-gold);
  font-weight: 500;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 26px;
  text-align: center;
  transition: var(--transition-normal);
}

.feature-card:hover {
  border-color: var(--border-glass);
  background: var(--bg-card-hover);
}

.feature-icon-wrapper {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, rgba(220, 38, 38, 0.1) 100%);
  border: 1px solid var(--border-glass);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px auto;
  color: var(--primary-gold-light);
  font-size: 1.5rem;
}

.feature-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

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

/* 8 Differentiators (Why Choose Us) */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.diff-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--bg-card);
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

.diff-icon {
  font-size: 1.5rem;
  color: var(--primary-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.diff-content h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.diff-content p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* Packages & Pricing */
.pricing-section {
  background: radial-gradient(circle at 50% 50%, rgba(20, 29, 48, 0.9) 0%, var(--bg-dark) 80%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
}

@media (max-width: 992px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }
}

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-normal);
}

.price-card.featured {
  border: 2px solid var(--primary-gold);
  box-shadow: var(--shadow-gold);
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.08) 0%, var(--bg-card) 40%);
  transform: scale(1.03);
}

@media (max-width: 992px) {
  .price-card.featured { transform: scale(1); }
}

.popular-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #f59e0b, #dc2626);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  letter-spacing: 1px;
}

.price-header h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.price-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  min-height: 40px;
}

.price-amount-box {
  margin-bottom: 24px;
}

.price-currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-gold-light);
  vertical-align: top;
}

.price-val {
  font-size: 3rem;
  font-weight: 900;
  font-family: var(--font-subheading);
  color: var(--text-main);
  line-height: 1;
}

.price-original {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-left: 8px;
}

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  flex-grow: 1;
}

.price-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
}

.price-features li i {
  color: var(--accent-green);
}

/* How It Works Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

@media (max-width: 992px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
}

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

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  position: relative;
}

.step-number {
  width: 44px;
  height: 44px;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid var(--primary-gold);
  color: var(--primary-gold-light);
  font-size: 1.2rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
  font-family: var(--font-subheading);
}

.step-card h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

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

/* Testimonials Carousel / Grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-stars {
  color: #f59e0b;
  margin-bottom: 14px;
  font-size: 0.95rem;
}

.review-quote {
  font-style: italic;
  font-size: 0.98rem;
  color: #e2e8f0;
  margin-bottom: 20px;
  line-height: 1.6;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #000;
}

.author-info h5 {
  font-size: 0.98rem;
  font-weight: 700;
}

.author-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.verified-tag {
  color: var(--accent-green);
  font-size: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: 6px;
}

/* Statistics Counters */
.stats-section {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(16, 23, 38, 1) 100%);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
}

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

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

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  font-family: var(--font-subheading);
  color: var(--primary-gold-light);
}

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

/* FAQs Accordion */
.faq-accordion {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-item.active {
  border-color: var(--primary-gold);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-icon {
  font-size: 1.1rem;
  color: var(--primary-gold-light);
  transition: var(--transition-fast);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background: rgba(0, 0, 0, 0.2);
}

.faq-answer-inner {
  padding: 0 24px 20px 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* Guarantee / Risk Reversal Box */
.guarantee-box {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, var(--bg-card) 100%);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 768px) {
  .guarantee-box {
    flex-direction: column;
    text-align: center;
  }
}

.guarantee-badge-img {
  width: 110px;
  height: 110px;
  background: rgba(16, 185, 129, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-green);
  font-size: 3rem;
  flex-shrink: 0;
}

/* Final CTA Section */
.final-cta-section {
  background: radial-gradient(circle at 50% 50%, rgba(220, 38, 38, 0.15) 0%, var(--bg-dark) 80%);
  text-align: center;
  padding: 90px 0;
}

.final-cta-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 50px 30px;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: var(--shadow-gold);
}

/* Sticky Bottom Bar (Mobile First CRO) */
.sticky-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(16, 23, 38, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border-glass);
  padding: 12px 20px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.sticky-bottom-bar.visible {
  transform: translateY(0);
}

.sticky-text {
  display: flex;
  flex-direction: column;
}

.sticky-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-main);
}

.sticky-sub {
  font-size: 0.78rem;
  color: var(--primary-gold-light);
}

/* Live Booking Notification Toast */
.booking-toast {
  position: fixed;
  bottom: 25px;
  left: 25px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  z-index: 998;
  transform: translateX(-150%);
  transition: transform 0.4s ease;
  max-width: 340px;
}

.booking-toast.show {
  transform: translateX(0);
}

.toast-icon {
  width: 40px;
  height: 40px;
  background: rgba(245, 158, 11, 0.15);
  color: var(--primary-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.toast-body {
  font-size: 0.85rem;
}

.toast-body strong {
  color: #fff;
  display: block;
}

.toast-time {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* Booking Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 540px;
  padding: 32px;
  position: relative;
  box-shadow: var(--shadow-gold);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--text-muted);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.modal-close:hover {
  background: var(--accent-crimson);
  color: #fff;
}

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

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-main);
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-gold);
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.2);
}

/* Footer */
footer {
  background: #04060a;
  border-top: 1px solid var(--border-light);
  padding: 50px 0 30px 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

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

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

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