/*
 * KSA Landing Page - Consolidated Styles
 * A modern dark theme with proper text contrast
 */

/* ===== VARIABLES ===== */
:root {
  /* Color Palette */
  --bg-dark: #0a0b14;
  --bg-darker: #070812;
  --bg-card: #12141f;
  --bg-card-hover: #181b2a;

  /* Gradients */
  --gradient-bg: linear-gradient(135deg, #0a0b14 0%, #131642 100%);
  --gradient-card: linear-gradient(135deg, rgba(18, 20, 31, 0.8) 0%, rgba(24, 27, 42, 0.8) 100%);
  --gradient-primary: linear-gradient(135deg, #7367f0 0%, #6157ff 50%, #8e78ff 100%);
  --gradient-accent: linear-gradient(135deg, #1fc1ff 0%, #3b82f6 100%);
  --gradient-cta: linear-gradient(135deg, #1fc1ff 0%, #4dcfff 100%); /* Modern blue accent */
  --gradient-danger: linear-gradient(135deg, #ef4444 0%, #f43f5e 100%);

  /* Solid Colors */
  --primary: #4f46e5;
  --primary-light: #6366f1;
  --accent: #1fc1ff;
  --accent-light: #4dcfff;
  --accent-color: #1fc1ff; /* Modern blue accent */
  --accent-light: #4dcfff;
  --accent-dark: #0099e6;
  --success: #10b981;
  --success-light: #34d399;
  --danger: #ef4444;
  --danger-light: #f87171;
  --warning: #f59e0b;
  --warning-light: #fbbf24;

  /* Text Colors */
  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-muted: #64748b;
  --text-accent: #22d3ee;
  --text-dark: #1d1d1d;

  /* UI Elements */
  --border-radius-sm: 8px;
  --border-radius: 12px;
  --border-radius-lg: 16px;
  --border-radius-xl: 24px;
  --border-radius-full: 9999px;

  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);

  --glow-primary: 0 0 15px rgba(99, 102, 241, 0.5);
  --glow-accent: 0 0 15px rgba(31, 193, 255, 0.5); /* Adjusted for modern blue */
  --glow-success: 0 0 15px rgba(16, 185, 129, 0.5);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);

  /* Z-index */
  --z-0: 0;
  --z-10: 10;
  --z-20: 20;
  --z-30: 30;
  --z-40: 40;
  --z-50: 50;
  --z-auto: auto;
}

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

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

body {
  font-family: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--gradient-bg);
  background-attachment: fixed;
  overflow-x: hidden;
  min-height: 100vh;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-6);
  color: var(--text-primary);
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: var(--space-8);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--space-6);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: var(--space-4);
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  margin-bottom: var(--space-3);
}

p {
  margin-bottom: var(--space-4);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--text-secondary);
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--accent-light);
}

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

.text-gradient-primary {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
  position: relative;
  display: inline-block;
}

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

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

.text-center { text-align: center; }
.text-right { text-align: right; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: var(--space-2); }
.gap-4 { gap: var(--space-4); }
.gap-6 { gap: var(--space-6); }
.gap-8 { gap: var(--space-8); }
.w-full { width: 100%; }
.h-full { height: 100%; }
.relative { position: relative; }
.absolute { position: absolute; }
.z-10 { z-index: var(--z-10); }
.z-20 { z-index: var(--z-20); }
.overflow-hidden { overflow: hidden; }
.rounded { border-radius: var(--border-radius); }
.rounded-lg { border-radius: var(--border-radius-lg); }
.rounded-full { border-radius: var(--border-radius-full); }
.shadow { box-shadow: var(--shadow); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.glow-primary { box-shadow: var(--glow-primary); }
.glow-accent { box-shadow: var(--glow-accent); }
.glow-success { box-shadow: var(--glow-success); }

/* ===== SECTION STYLING ===== */
section {
  padding: var(--space-20) 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-16);
  position: relative;
}

.section-title h2 {
  display: inline-block;
  margin-bottom: var(--space-4);
  position: relative;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-accent);
  border-radius: 2px;
}

.section-subtitle {
  max-width: 700px;
  margin: 0 auto;
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4) var(--space-8);
  background: var(--gradient-primary);
  color: var(--text-primary);
  font-weight: 600;
  border-radius: var(--border-radius-full);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  font-size: 1rem;
  line-height: 1.5;
  box-shadow: var(--shadow), var(--glow-primary);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md), var(--glow-primary);
  color: var(--text-primary);
}

.btn:active {
  transform: translateY(-1px);
}

.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 100%);
  transform: translateX(-100%);
  transition: transform 0.6s;
  z-index: -1;
}

.btn:hover::after {
  transform: translateX(100%);
}

.btn-cta {
  background: var(--gradient-cta);
  box-shadow: var(--shadow), var(--glow-accent);
  color: var(--bg-darker);
  font-weight: 700;
}

.btn-cta:hover {
  box-shadow: var(--shadow-md), 0 0 20px rgba(31, 193, 255, 0.5);
  transform: translateY(-3px);
  background: linear-gradient(135deg, #4dcfff 0%, #1fc1ff 100%);
}

/* Button additional styling */
.cta .btn-cta .btn-text {
  position: relative;
  z-index: 2;
  margin-right: var(--space-3);
}

.cta .btn-cta i.fa-arrow-right {
  transition: transform var(--transition);
  position: relative;
  z-index: 2;
}

.cta .btn-cta:hover i.fa-arrow-right {
  transform: translateX(5px);
}

/* Secondary CTA Options */
.cta-secondary-options {
  margin-top: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  align-items: center;
}

.contact-option {
  font-size: 1.05rem;
  color: var(--text-secondary);
}

.limited-seats {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-top: var(--space-2);
  padding: var(--space-3) var(--space-6);
  background-color: rgba(245, 158, 11, 0.1);
  border-radius: var(--border-radius-full);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.limited-seats i {
  color: var(--warning);
}

.limited-seats strong {
  color: var(--warning);
}

/* Add subtle animation to the discount label */
@keyframes float {
  0% {
    transform: rotate(5deg) translateY(0);
  }
  50% {
    transform: rotate(7deg) translateY(-3px);
  }
  100% {
    transform: rotate(5deg) translateY(0);
  }
}

.discount-label {
  animation: float 3s ease-in-out infinite, pulse 2s infinite;
}

/* ===== CARD STYLING ===== */
.card {
  background: var(--bg-card);
  border-radius: var(--border-radius);
  padding: var(--space-6);
  box-shadow: var(--shadow);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  height: 100%;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  background: var(--bg-card-hover);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-accent);
  opacity: 0;
  transition: opacity var(--transition);
}

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

.card-title {
  font-size: 1.5rem;
  margin-bottom: var(--space-4);
  color: var(--text-primary);
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-4);
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.card-content {
  color: var(--text-secondary);
}

/* ===== HEADER & NAVIGATION ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-50);
  background: rgba(10, 11, 20, 0.8);
  backdrop-filter: blur(10px);
  transition: all var(--transition);
  padding: var(--space-4) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

header.scrolled {
  padding: var(--space-3) 0;
  background: rgba(10, 11, 20, 0.95);
  box-shadow: var(--shadow);
}

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

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

.logo img {
  height: 40px;
  transition: all var(--transition);
}

.nav-menu {
  display: flex;
  gap: var(--space-6);
  list-style: none;
}

.nav-link {
  color: var(--text-secondary);
  font-weight: 500;
  transition: all var(--transition-fast);
  position: relative;
  padding: var(--space-2) 0;
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-accent);
  transition: width var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

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

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: var(--space-32) 0 var(--space-20);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.15), transparent 50%),
              radial-gradient(circle at bottom left, rgba(6, 182, 212, 0.15), transparent 50%);
  z-index: 0;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: var(--space-12);
  position: relative;
  z-index: 1;
}

.hero-text {
  flex: 1;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: var(--space-6);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--text-secondary);
  margin-bottom: var(--space-8);
  max-width: 600px;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-image img {
  max-width: 100%;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}

/* ===== PRICING CONTAINER ===== */
.pricing-container {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  margin-bottom: var(--space-8);
  background: rgba(18, 20, 31, 0.6);
  backdrop-filter: blur(10px);
  padding: var(--space-6);
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
  max-width: 500px;
}

.pricing-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
}

.original-price {
  font-size: 1.5rem;
  color: var(--text-muted);
  text-decoration: line-through;
  position: relative;
}

.discount-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--gradient-cta);
  color: var(--bg-darker);
  font-size: 0.8rem;
  font-weight: bold;
  padding: var(--space-1) var(--space-2);
  border-radius: var(--border-radius-full);
  transform: rotate(10deg);
  box-shadow: var(--shadow);
}

.discounted-price {
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff !important;
  background: none;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: initial;
  background-clip: initial;
}

.price-label {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: var(--space-1);
}

/* Plain white price text without gradient or effects */
.price-white {
  color: #ffffff !important;
  font-weight: 700;
  background: none !important;
  -webkit-background-clip: initial !important;
  -webkit-text-fill-color: initial !important;
  background-clip: initial !important;
  text-shadow: none;
}

/* ===== ACCORDION STYLING ===== */
.accordion {
  background: var(--bg-card);
  border-radius: var(--border-radius);
  margin-bottom: var(--space-4);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  transition: all var(--transition);
}

.accordion::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity var(--transition);
}

.accordion.active {
  box-shadow: var(--shadow-md);
}

.accordion.active::before {
  opacity: 1;
}

.accordion-header {
  padding: var(--space-5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.accordion-header:hover {
  background: rgba(255, 255, 255, 0.05);
}

.accordion-header h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  color: var(--text-primary);
}

.accordion-header h3 span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: var(--gradient-accent);
  color: var(--text-primary);
  border-radius: 50%;
  margin-right: var(--space-3);
  font-size: 0.9rem;
  font-weight: bold;
}

.accordion-header i {
  color: var(--text-muted);
  transition: all var(--transition);
  font-size: 1rem;
}

.accordion.active .accordion-header i {
  transform: rotate(45deg);
  color: var(--accent);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 0 0 var(--border-radius) var(--border-radius);
}

.accordion.active .accordion-content {
  max-height: 500px;
  padding: var(--space-4);
}

.accordion-content p {
  margin: 0;
  color: #1d1d1d !important;
}

/* Ensure accordion content is always readable */
.dark-bg-section .accordion-content,
.modules .accordion-content,
.benefits .accordion-content,
.team-section .accordion-content,
.value-proposition .accordion-content,
.faq .accordion-content {
  background-color: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.dark-bg-section .accordion-content p,
.modules .accordion-content p,
.benefits .accordion-content p,
.team-section .accordion-content p,
.value-proposition .accordion-content p,
.faq .accordion-content p {
  color: #1d1d1d !important;
}

/* Fix for FAQ section */
.faq .accordion-header h3,
.faq .section-title h2,
.faq .section-subtitle {
  color: #ffffff !important;
}

.faq .accordion-header {
  background-color: rgba(30, 30, 50, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===== LIGHT & DARK SECTION STYLING ===== */
.light-bg-section {
  background-color: rgba(248, 249, 251, 0.97) !important;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg), 0 0 30px rgba(0, 0, 0, 0.15);
  padding: var(--space-8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  margin: var(--space-6) 0;
}

.dark-bg-section {
  background-color: rgba(10, 11, 20, 0.95) !important;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg), 0 0 30px rgba(0, 0, 0, 0.2);
  padding: var(--space-8);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  margin: var(--space-6) 0;
}

/* Text Colors for Light Backgrounds */
.light-bg-section *,
section[style*="background-color: #fff"] *,
section[style*="background-color: white"] *,
section[style*="background-color:#fff"] *,
section[style*="background-color:#ffffff"] *,
section[style*="background: #fff"] *,
section[style*="background: white"] *,
section[style*="background:#fff"] *,
section[style*="background:#ffffff"] * {
  color: #1d1d1d !important;
}

/* Text Colors for Dark Backgrounds */
.dark-bg-section *,
section[style*="background-color: #000"] *,
section[style*="background-color: black"] *,
section[style*="background-color:#000"] *,
section[style*="background-color:#000000"] *,
section[style*="background: #000"] *,
section[style*="background: black"] *,
section[style*="background:#000"] *,
section[style*="background:#000000"] *,
.modules *,
.benefits *,
.team-section *,
.gallery-section *,
.value-proposition *,
.faq * {
  color: #ffffff !important;
}

/* Fix Gradient Text on Light Backgrounds */
.light-bg-section .text-gradient-primary,
.light-bg-section .text-gradient-accent,
.light-bg-section .text-gradient-cta {
  color: #4f46e5 !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  -webkit-text-fill-color: initial !important;
  background-clip: initial !important;
}

/* Fix Gradient Text on Dark Backgrounds */
.dark-bg-section .text-gradient-primary,
.dark-bg-section .text-gradient-accent,
.dark-bg-section .text-gradient-cta {
  color: #ffffff !important;
  background: var(--gradient-primary) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

/* Accordion Styling for Light Backgrounds */
.light-bg-section .accordion-header {
  background-color: rgba(240, 240, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.light-bg-section .accordion-header h3 {
  color: #1d1d1d !important;
}

.light-bg-section .accordion-header span {
  background-color: var(--primary);
  color: #ffffff;
}

/* Accordion Styling for Dark Backgrounds */
.dark-bg-section .accordion-header {
  background-color: rgba(30, 30, 50, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.dark-bg-section .accordion-header h3 {
  color: #ffffff !important;
}

.dark-bg-section .accordion-header span {
  background-color: var(--accent-color);
  color: var(--bg-darker);
}

/* Card Styling in Different Backgrounds */
.dark-bg-section .card,
.dark-bg-section .benefit-card,
.dark-bg-section .audience-card,
.dark-bg-section .team-member,
.dark-bg-section .value-bullet,
.modules .card,
.modules .benefit-card,
.modules .audience-card,
.modules .team-member,
.modules .value-bullet,
.benefits .card,
.benefits .benefit-card,
.benefits .audience-card,
.benefits .team-member,
.benefits .value-bullet,
.team-section .card,
.team-section .benefit-card,
.team-section .audience-card,
.team-section .team-member,
.team-section .value-bullet,
.value-proposition .card,
.value-proposition .benefit-card,
.value-proposition .audience-card,
.value-proposition .team-member,
.value-proposition .value-bullet {
  background-color: rgba(30, 30, 50, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.light-bg-section .card,
.light-bg-section .benefit-card,
.light-bg-section .audience-card,
.light-bg-section .team-member,
.light-bg-section .value-bullet,
.about .card,
.about .benefit-card,
.about .audience-card,
.about .team-member,
.about .value-bullet,
.audience .card,
.audience .benefit-card,
.audience .audience-card,
.audience .team-member,
.audience .value-bullet {
  background-color: rgba(30, 30, 50, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Helper Classes for Manual Text Color Control */
.text-dark {
  color: #1d1d1d !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  -webkit-text-fill-color: initial !important;
  background-clip: initial !important;
}

.text-light {
  color: #ffffff !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  -webkit-text-fill-color: initial !important;
  background-clip: initial !important;
}

/* ===== SPECIFIC SECTION STYLES ===== */
/* About section */
.about-content p,
.objectives h3,
.objectives li {
  color: #1d1d1d !important;
}

.objectives {
  background-color: rgba(255, 255, 255, 0.8);
  padding: var(--space-4);
  border-radius: var(--border-radius);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

/* Fix for specific sections with contrast issues */
.modules h2,
.modules h3,
.modules p,
.modules li,
.modules .section-title h2,
.modules .section-subtitle,
.benefits h2,
.benefits h3,
.benefits p,
.benefits li,
.benefits .section-title h2,
.benefits .section-subtitle,
.team-section h2,
.team-section h3,
.team-section p,
.team-section .section-title h2,
.team-section .section-subtitle,
.value-proposition h2,
.value-proposition h3,
.value-proposition p,
.value-proposition li,
.value-proposition .section-title h2,
.value-proposition .section-subtitle,
.audience h2,
.audience h3,
.audience p,
.audience li,
.audience .section-title h2,
.audience .section-subtitle,
.family-banner h2,
.family-banner h3,
.family-banner p {
  color: #ffffff !important;
}

/* Fix for gradient text in dark sections */
.modules .text-gradient-primary,
.benefits .text-gradient-primary,
.team-section .text-gradient-primary,
.value-proposition .text-gradient-primary,
.audience .text-gradient-primary,
.family-banner .text-gradient-primary,
.family-banner .text-gradient-accent {
  color: #ffffff !important;
  background: var(--gradient-primary) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

/* Fix for card titles and content in dark sections */
.modules .card-title,
.modules .card-content,
.benefits .card-title,
.benefits .card-content,
.team-section .card-title,
.team-section .card-content,
.value-proposition .card-title,
.value-proposition .card-content,
.modules .value-bullet h3,
.modules .value-bullet p,
.benefits .benefit-card h3,
.benefits .benefit-card p,
.team-section .team-info h3,
.team-section .team-title,
.value-proposition .value-bullet h3,
.value-proposition .value-bullet p,
.audience .audience-card h3,
.audience .audience-card p {
  color: #ffffff !important;
}

/* Value bullets & Benefits */
.value-bullets,
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-6);
  margin-top: var(--space-10);
}

.value-bullet,
.benefit-card {
  background: var(--bg-card);
  border-radius: var(--border-radius);
  padding: var(--space-6);
  box-shadow: var(--shadow);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.value-bullet:hover,
.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  background: var(--bg-card-hover);
}

.value-bullet i,
.benefit-card i {
  font-size: 2.5rem;
  margin-bottom: var(--space-4);
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.value-bullet h3,
.benefit-card h3 {
  margin-bottom: var(--space-3);
  font-size: 1.3rem;
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: var(--space-6);
  margin-top: var(--space-10);
}

.team-member {
  background: var(--bg-card);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  height: 100%;
}

.team-photo {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all var(--transition);
}

.team-info {
  padding: var(--space-5);
  text-align: center;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: var(--space-4);
  margin-top: var(--space-10);
}

.gallery-item {
  border-radius: var(--border-radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 1/1;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all var(--transition);
}

/* Gallery section specific fixes */
.gallery-section h2,
.gallery-section h3,
.gallery-section p,
.gallery-section .section-title h2,
.gallery-section .section-subtitle {
  color: #ffffff !important;
}

.gallery-section .text-gradient-primary {
  color: #ffffff !important;
  background: var(--gradient-primary) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

/* Family Banner Styling */
.family-banner {
  background: linear-gradient(rgba(10, 11, 20, 0.85), rgba(10, 11, 20, 0.85)), url('../images/1745757272114.jpg');
  background-size: cover;
  background-position: center;
  padding: var(--space-16) 0;
}

.family-banner-content {
  background: rgba(18, 19, 27, 0.9);
  border-radius: var(--border-radius-lg);
  padding: var(--space-10);
  box-shadow: var(--shadow-lg), 0 0 30px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: var(--space-10);
}

.family-banner-text {
  flex: 1;
}

.family-banner-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: var(--space-6);
  line-height: 1.3;
}

.family-banner-text p {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  margin-bottom: var(--space-8);
  color: var(--text-secondary);
  max-width: 600px;
}

.family-banner-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.family-banner-image img {
  max-width: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

.family-banner-image img:hover {
  transform: scale(1.02);
}

/* Audience Cards Styling */
.audience-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.audience-card {
  background: rgba(30, 30, 50, 0.8);
  border-radius: var(--border-radius);
  padding: var(--space-6);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition);
}

.audience-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.audience-card h3 {
  color: #ffffff !important;
  margin-bottom: var(--space-3);
}

.audience-card p {
  color: var(--text-secondary) !important;
}

/* Fix for buttons on dark backgrounds to ensure visibility */
.dark-bg-section .btn,
.modules .btn,
.benefits .btn,
.team-section .btn,
.gallery-section .btn,
.value-proposition .btn,
.audience .btn,
.family-banner .btn {
  background: var(--gradient-cta);
  color: var(--bg-darker);
  font-weight: 700;
  box-shadow: var(--shadow), var (--glow-accent);
}

.dark-bg-section .btn:hover,
.modules .btn:hover,
.benefits .btn:hover,
.team-section .btn:hover,
.gallery-section .btn:hover,
.value-proposition .btn:hover,
.audience .btn:hover,
.family-banner .btn:hover {
  box-shadow: var(--shadow-md), var(--glow-accent);
  transform: translateY(-3px);
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent-color) 100%);
}

/* Force white text on all dark backgrounds */
body {
  background-color: var(--bg-dark);
}

section:not(.light-bg-section):not(.about) {
  background-color: var(--bg-dark);
}

section:not(.light-bg-section):not(.about) h1,
section:not(.light-bg-section):not(.about) h2,
section:not(.light-bg-section):not(.about) h3,
section:not(.light-bg-section):not(.about) h4,
section:not(.light-bg-section):not(.about) h5,
section:not(.light-bg-section):not(.about) h6,
section:not(.light-bg-section):not(.about) p,
section:not(.light-bg-section):not(.about) li,
section:not(.light-bg-section):not(.about) span:not(.icon-large) {
  color: #ffffff !important;
}

/* ===== FOOTER STYLES ===== */
#site-footer {
  background-color: var(--bg-darker);
  padding: var(--space-12) 0 var(--space-6);
  color: var(--text-secondary);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-8);
  margin-bottom: var(--space-8);
}

.footer-column {
  flex: 1;
  min-width: 250px;
}

.footer-column h3 {
  color: var(--text-primary);
  font-size: 1.25rem;
  margin-bottom: var(--space-4);
  position: relative;
  padding-bottom: var(--space-3);
}

.footer-column h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 40px;
  background: var(--gradient-accent);
  border-radius: var(--border-radius-full);
}

.footer-column p {
  line-height: 1.7;
  margin-bottom: var(--space-4);
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: var(--space-3);
}

.footer-column ul li a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.footer-column ul li a:hover {
  color: var(--accent);
  text-decoration: underline;
}

.footer-column ul li a i {
  margin-right: var (--space-2);
  color: var(--accent);
}

.copyright {
  text-align: center;
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Footer Responsive Styles */
@media (max-width: 992px) {
  .footer-content {
    gap: var(--space-6);
  }
  
  .footer-column {
    min-width: 200px;
  }
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: var(--space-8);
  }
  
  .footer-column {
    width: 100%;
  }
  
  .footer-column h3::after {
    width: 60px;
  }
}

/* ===== END FOOTER STYLES ===== */

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    order: 2;
  }

  .hero-image {
    order: 1;
    margin-bottom: var(--space-10);
  }

  .pricing-container {
    margin: 0 auto var(--space-8);
  }
}

@media (max-width: 992px) {
  :root {
    --space-32: 6rem;
    --space-24: 5rem;
    --space-20: 4rem;
    --space-16: 3rem;
  }

  section {
    padding: var(--space-16) 0;
  }

  .nav-menu {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .family-banner-content {
    flex-direction: column;
    padding: var(--space-6);
    gap: var(--space-8);
  }

  .family-banner-text {
    order: 2;
    text-align: center;
  }

  .family-banner-image {
    order: 1;
  }

  .nav-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg-darker);
    padding: var(--space-4) 0;
    box-shadow: var(--shadow);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1000;
  }

  .nav-menu.active li {
    width: 100%;
  }

  .nav-menu.active a {
    display: block;
    padding: var(--space-4) var(--space-6);
    padding-left: 1.5rem;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    min-height: 50px;
    display: flex;
    align-items: center;
  }

  .nav-menu.active a:hover {
    background: rgba(255, 255, 255, 0.05);
  }
}

@media (max-width: 768px) {
  :root {
    --space-16: 2.5rem;
    --space-12: 2rem;
    --space-10: 1.5rem;
  }

  .container {
    padding: 0 var(--space-4);
  }

  section {
    padding: var(--space-12) 0;
  }

  .section-title {
    margin-bottom: var(--space-10);
  }

  .pricing-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .original-price,
  .discounted-price {
    margin: var(--space-2) 0;
  }

  .card,
  .benefit-card,
  .value-bullet,
  .team-member,
  .audience-card {
    padding: var(--space-4);
  }
}

@media (max-width: 576px) {
  :root {
    --space-6: 1rem;
    --space-8: 1.5rem;
  }

  .btn {
    padding: var(--space-3) var(--space-6);
    font-size: 0.9rem;
  }

  .hero {
    padding-top: 120px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .section-title h2 {
    font-size: 1.8rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }
}

/* ===== TEAM SECTION STYLES ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: var(--space-6);
  margin-bottom: var(--space-8);
}

.team-member {
  background: var(--bg-card);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: var(--shadow);
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.team-photo {
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-member:hover .team-photo img {
  transform: scale(1.05);
}

.team-info {
  padding: var(--space-4);
  text-align: center;
}

.team-info h3 {
  margin: 0;
  margin-bottom: var(--space-1);
  color: var(--text-primary);
  font-size: 1.2rem;
}

.team-title {
  color: var(--text-accent);
  font-size: 0.95rem;
  margin-bottom: var(--space-3);
}

.team-social {
  display: flex;
  justify-content: center;
  gap: var(--space-3);
  margin-top: var(--space-3);
}

.team-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius-full);
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.team-social a:hover {
  background: var(--gradient-accent);
  color: white;
  transform: translateY(-3px);
}

/* Team Section Responsive */
@media (max-width: 992px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

@media (max-width: 576px) {
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .team-photo {
    height: 320px;
  }
}
/* ===== END TEAM SECTION STYLES ===== */

/* ===== ABOUT SECTION STYLES ===== */
#about.light-bg-section {
  background: linear-gradient(135deg, #f8f9ff 0%, #eff6ff 100%) !important;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg), 0 0 30px rgba(0, 0, 0, 0.08);
  padding: var(--space-16) 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin: var(--space-8) 0;
  position: relative;
  overflow: hidden;
}

#about.light-bg-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(79, 70, 229, 0.08), transparent 60%);
  pointer-events: none;
}

#about .section-title {
  position: relative;
  z-index: 2;
}

#about .section-title h2 {
  color: var(--primary);
  margin-bottom: var(--space-4);
  font-size: 2.2rem;
}

#about .section-subtitle {
  color: var(--text-dark);
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto var(--space-8);
}

#about .about-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  color: var(--text-dark);
}

#about .about-content p {
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: var(--space-6);
  font-size: 1.05rem;
}

#about .objectives {
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: var(--border-radius);
  padding: var(--space-6) var(--space-8);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(79, 70, 229, 0.1);
  margin-top: var(--space-8);
}

#about .objectives h3 {
  color: var(--primary);
  margin-bottom: var(--space-6);
  font-size: 1.5rem;
  position: relative;
  padding-bottom: var(--space-3);
  display: inline-block;
}

#about .objectives h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: var(--gradient-primary);
  border-radius: var(--border-radius-full);
}

#about .objectives ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var (--space-4);
}

#about .objectives li {
  padding-left: var(--space-6);
  position: relative;
  line-height: 1.6;
  color: var(--text-dark);
  font-weight: 500;
}

#about .objectives li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: bold;
}

@media (max-width: 768px) {
  #about.light-bg-section {
    padding: var(--space-10) var(--space-4);
  }
  
  #about .section-title h2 {
    font-size: 1.8rem;
  }
  
  #about .objectives {
    padding: var(--space-4);
  }

  #about .objectives ul {
    grid-template-columns: 1fr;
  }
}

/* Override for About section title to ensure gradient text works properly */
#about .text-gradient-primary {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
  position: relative;
  display: inline-block;
}
/* ===== END ABOUT SECTION STYLES ===== */
/* Video Player Section */
.video-section {
  background-color: white;
  padding: 100px 0;
}

.video-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.video-container iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.video-overlay:hover {
  background: rgba(0, 0, 0, 0.1);
}

.play-button {
  width: 80px;
  height: 80px;
  background: var(--cta-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
}

.play-button i {
  color: white;
  font-size: 2rem;
  margin-left: 8px;
}

.play-button:hover {
  transform: scale(1.1);
}


/* ===== GALLERY & LIGHTBOX STYLES ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: var(--space-4);
  margin: var(--space-8) 0;
}

.gallery-item {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  aspect-ratio: 1/1;
  cursor: pointer;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Gallery Item Overlay */
.gallery-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay i {
  color: #fff;
  font-size: 2rem;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay i {
  transform: scale(1);
}

/* Lightbox Styles */
.lightbox {
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 85vh;
  text-align: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--border-radius);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  z-index: 10000;
  transition: color 0.2s ease;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.5);
}

.lightbox-close:hover {
  color: var(--accent);
  background-color: rgba(0, 0, 0, 0.8);
}

/* Responsive gallery */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
  
  .lightbox-content img {
    max-width: 95%;
  }
}
/* ===== END GALLERY & LIGHTBOX STYLES ===== */
/* ===== ENHANCED CTA SECTION ===== */
.cta {
  background: linear-gradient(145deg, var(--bg-card) 0%, var(--bg-darker) 100%);
  color: var(--text-primary);
  text-align: center;
  padding: var(--space-24) 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* CTA Background elements */
.cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 70%;
  height: 200%;
  background: radial-gradient(circle, rgba(31, 193, 255, 0.08) 0%, rgba(99, 102, 241, 0.05) 50%, rgba(0, 0, 0, 0) 70%);
  transform: rotate(25deg);
  z-index: 1;
}

.cta::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 70%;
  height: 140%;
  background: radial-gradient(circle, rgba(31, 193, 255, 0.08) 0%, rgba(99, 102, 241, 0.05) 50%, rgba(0, 0, 0, 0) 70%);
  transform: rotate(-15deg);
  z-index: 1;
}

.cta .container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

/* CTA Heading */
.cta h2.text-gradient-cta {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: var(--space-6);
  line-height: 1.2;
  letter-spacing: -0.5px;
  position: relative;
  display: inline-block;
}

/* CTA Subtitle */
.cta p {
  font-size: clamp(1rem, 3vw, 1.3rem);
  margin-bottom: var(--space-10);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
  color: var(--text-secondary);
  font-weight: 400;
  line-height: 1.6;
}

/* Price Container */
.price-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  margin: var(--space-12) 0;
  flex-wrap: wrap;
  position: relative;
}

/* Connecting line between prices */
.price-container::before {
  content: '';
  position: absolute;
  top: 50%;
  left: calc(50% - 60px);
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
  transform: translateY(-50%);
  z-index: 1;
  display: none;
}

@media (min-width: 768px) {
  .price-container::before {
    display: block;
  }
}

/* Price Tags */
.price-tag {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 0;
  color: var(--text-primary);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-6) var(--space-8);
  border-radius: var(--border-radius);
  background: var(--bg-card);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform var(--transition), box-shadow var(--transition);
  min-width: 200px;
}

.price-tag:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg), 0 0 20px rgba(31, 193, 255, 0.15);
}

/* Original price styling */
.price-tag.original {
  font-size: 1.8rem;
  color: var(--text-muted);
  text-decoration: line-through;
  background: rgba(255, 255, 255, 0.05);
  padding: var(--space-4) var(--space-6);
  transform: scale(0.85);
  box-shadow: var(--shadow);
}

.price-tag.original:hover {
  transform: translateY(-3px) scale(0.85);
}

/* Price tag pointer */
.price-tag::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 12px solid var(--bg-card);
  z-index: 1;
}

.price-tag.original::after {
  border-top-color: rgba(255, 255, 255, 0.05);
}

/* Discount Label */
.discount-label {
  position: absolute;
  top: -15px;
  right: -15px;
  background: linear-gradient(135deg, var(--danger) 0%, var(--danger-light) 100%);
  color: white;
  font-size: 1rem;
  font-weight: bold;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--border-radius-full);
  box-shadow: 0 5px 15px rgba(239, 68, 68, 0.3);
  transform: rotate(5deg);
  animation: pulse 2s infinite;
  z-index: 2;
}

@keyframes pulse {
  0% {
    transform: rotate(5deg) scale(1);
    box-shadow: 0 5px 15px rgba(239, 68, 68, 0.3);
  }
  50% {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 5px 20px rgba(239, 68, 68, 0.5);
  }
  100% {
    transform: rotate(5deg) scale(1);
    box-shadow: 0 5px 15px rgba(239, 68, 68, 0.3);
  }
}

/* CTA Button Container */
.cta-button-container {
  margin: var(--space-10) 0 var(--space-6);
  position: relative;
}

/* CTA Button Styling */
.cta .btn-cta {
  padding: var(--space-5) var(--space-12);
  font-size: 1.2rem;
  font-weight: 700;
  position: relative;
  background: var(--gradient-cta);
  border: none;
  color: white;
  border-radius: var(--border-radius-full);
  box-shadow: var(--shadow-md), 0 0 15px rgba(31, 193, 255, 0.4);
  transition: all var(--transition);
  transform-origin: center;
}

.cta .btn-cta:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: var(--shadow-lg), 0 0 25px rgba(31, 193, 255, 0.6);
}

/* Glow effect behind button */
.cta-button-container::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(31, 193, 255, 0.3) 0%, rgba(31, 193, 255, 0.1) 30%, rgba(0, 0, 0, 0) 70%);
  filter: blur(15px);
  z-index: -1;
  opacity: 0.7;
  transition: all var(--transition);
}

.cta-button-container:hover::after {
  transform: translate(-50%, -50%) scale(1.1);
  opacity: 0.9;
}

/* WhatsApp Link */
.cta a[href^="https://wa.me"] {
  color: var(--accent);
  font-weight: 500;
  text-decoration: none;
  position: relative;
  transition: all var(--transition-fast);
  padding-bottom: 2px;
}

.cta a[href^="https://wa.me"]:hover {
  color: var(--accent-light);
}

.cta a[href^="https://wa.me"]::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gradient-accent);
  transition: width var(--transition-fast);
}

.cta a[href^="https://wa.me"]:hover::after {
  width: 100%;
}

.cta a[href^="https://wa.me"] i.fa-whatsapp {
  color: #25D366;
  margin-left: var(--space-1);
}

/* Limited Seats Text */
.cta p strong {
  color: var(--warning);
  font-weight: 700;
  position: relative;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .cta {
    padding: var(--space-16) 0;
  }
  
  .price-container {
    flex-direction: column;
    gap: var(--space-4);
  }
  
  .price-tag {
    width: 90%;
    max-width: 280px;
  }
}
/* ===== END ENHANCED CTA SECTION ===== */
