/* ============================================================================
   CSS Variables (replaced by generator)
   ============================================================================ */
:root {
  /* Colors */
  --color-primary: #16A34A;
  --color-primary-rgb: 22, 163, 74;
  --color-secondary: #22C55E;
  --color-secondary-rgb: 34, 197, 94;
  --color-accent: #4ADE80;
  --color-accent-rgb: 74, 222, 128;
  --color-background: #14120E;
  --color-background-rgb: 20, 18, 14;
  --color-surface: #1C1A16;
  --color-surface-rgb: 28, 26, 22;
  --color-text: #F0FDF4;
  --color-text-muted: #86EFAC;

  /* Fonts */
  --font-heading: 'Orbitron', sans-serif;
  --font-body: 'Rajdhani', sans-serif;

  /* Typography */
  --heading-weight: 900;
  --heading-transform: uppercase;
  --heading-letter-spacing: 0.1em;
  --body-line-height: 1.6;

  /* Animations */
  --animation-fade-in: opacity 0.6s ease-out, transform 0.6s ease-out;
  --animation-hover: transform 0.3s ease, box-shadow 0.3s ease;

  /* Spacing */
  --container-width: 1200px;
  --section-padding: 100px;
  --card-radius: 20px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.2);
  --shadow-glow: 0 0 40px rgba(var(--color-primary-rgb), 0.3);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-background);
  color: var(--color-text);
  line-height: var(--body-line-height);
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--heading-weight);
  line-height: 1.2;
  text-transform: var(--heading-transform);
  letter-spacing: var(--heading-letter-spacing);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--color-secondary);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================================================
   Buttons
   ============================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--animation-hover);
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: white;
}

.btn-primary:hover {
  box-shadow: 0 0 30px var(--primary), 0 0 60px rgba(var(--primary-rgb), 0.4);
  color: white;
}

.btn-secondary {
  background: var(--color-surface);
  color: var(--color-text);
  border: 1px solid var(--color-text-muted);
}

.btn-secondary:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: white;
}

.btn-large {
  padding: 18px 48px;
  font-size: 1.125rem;
  position: relative;
  overflow: hidden;
}

/* Shimmer effect on primary buttons */
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

/* Button Style Variants */
.btn-pill {
  border-radius: 50px;
}

.btn-sharp {
  border-radius: 0;
}

.btn-gradient {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  background-size: 200% 200%;
  animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.btn-neon {
  box-shadow:
    0 0 10px var(--color-primary),
    0 0 20px rgba(var(--color-primary-rgb), 0.3),
    0 0 30px rgba(var(--color-primary-rgb), 0.1);
}

.btn-neon:hover {
  box-shadow:
    0 0 20px var(--color-primary),
    0 0 40px rgba(var(--color-primary-rgb), 0.5),
    0 0 60px rgba(var(--color-primary-rgb), 0.3);
}

.btn-outline-style {
  background: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
}

.btn-outline-style:hover {
  background: var(--color-primary);
  color: white;
}

/* ============================================================================
   Navigation
   ============================================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
}

.logo:hover {
  color: var(--color-primary);
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--color-primary);
}

.logo-icon svg {
  width: 32px;
  height: 32px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: var(--color-text-muted);
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-text);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: transform 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: var(--color-background);
  padding: 20px;
  flex-direction: column;
  gap: 16px;
  z-index: 999;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  color: var(--color-text);
  font-size: 1.125rem;
  padding: 10px 0;
}

/* ============================================================================
   Hero Section
   ============================================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 70px;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.85) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: var(--section-padding) 20px;
}

.hero-centered .hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-left .hero-content {
  text-align: left;
  max-width: 600px;
}

.hero-title {
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--color-text), var(--color-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: var(--color-text);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  opacity: 0.95;
}

.hero-left .hero-subtitle {
  margin-left: 0;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-left .hero-cta {
  justify-content: flex-start;
}

.hero-disclaimer {
  margin-top: 24px;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  opacity: 0.7;
}

/* ============================================================================
   Features Section
   ============================================================================ */
.features {
  padding: var(--section-padding) 0;
  background: var(--color-surface);
}

.section-title {
  text-align: center;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 60px;
}

/* Base Features Grid - Simple responsive layout */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

/* Ensure consistent card sizing */
.features-grid .feature-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Feature Layout Variants - All use consistent grid */
.features-grid-equal,
.features-grid-large-first,
.features-grid-alternating,
.features-grid-stacked,
.features-grid-masonry {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

/* Spacing between multiple feature grids (images section + icons section) */
.features-grid + .features-grid {
  margin-top: 48px;
}

/* Features with images section */
.features-with-images .feature-card {
  overflow: hidden;
}

.features-with-images .feature-image {
  margin: -32px -32px 0 -32px;
  overflow: hidden;
}

.features-with-images .feature-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.features-with-images .feature-content {
  padding: 24px 0 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Features with icons section */
.features-with-icons .feature-card {
  padding-top: 40px;
}

.features-with-icons .feature-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border-radius: 16px;
  color: white;
  box-shadow: 0 8px 24px rgba(var(--color-primary-rgb), 0.3);
}

.features-with-icons .feature-icon svg {
  width: 36px;
  height: 36px;
}

.features-with-icons .feature-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Base Feature Card with Dynamic Styling */
.feature-card {
  background: rgba(255,255,255,0.05); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: var(--animation-hover);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card:hover {
  box-shadow: 0 0 30px rgba(var(--primary-rgb), 0.4), 0 10px 40px rgba(0,0,0,0.3);
}

/* Card Style Variants */
.card-glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-gradient-border::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border-radius: calc(var(--card-radius) + 2px);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card-gradient-border:hover::before {
  opacity: 1;
}

.card-neon {
  box-shadow:
    0 0 20px rgba(var(--color-primary-rgb), 0.2),
    inset 0 0 20px rgba(var(--color-primary-rgb), 0.05);
}

.card-neon:hover {
  box-shadow:
    0 0 40px rgba(var(--color-primary-rgb), 0.4),
    inset 0 0 30px rgba(var(--color-primary-rgb), 0.1);
}

.feature-image {
  width: 100%;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 24px;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border-radius: 20px;
  color: white;
}

.feature-icon svg {
  width: 40px;
  height: 40px;
}

.feature-content {
  padding: 16px 0 0;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--color-text);
}

.feature-card p {
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ============================================================================
   About Section
   ============================================================================ */
.about {
  padding: var(--section-padding) 0;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 24px;
}

.about p {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  margin-bottom: 32px;
}

/* ============================================================================
   Footer
   ============================================================================ */
.footer {
  background: var(--color-surface);
  padding: 60px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-tagline {
  color: var(--color-text-muted);
  font-size: 0.875rem;
}

.footer-links h4 {
  font-size: 1rem;
  margin-bottom: 16px;
  color: var(--color-text);
}

.footer-links a {
  display: block;
  color: var(--color-text-muted);
  margin-bottom: 8px;
  font-size: 0.875rem;
}

.footer-links a:hover {
  color: var(--color-primary);
}

.responsible-gaming {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 30px;
  text-align: center;
}

.responsible-gaming h4 {
  color: var(--color-secondary);
  margin-bottom: 8px;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.responsible-gaming p {
  color: var(--color-text-muted);
  font-size: 0.8rem;
  line-height: 1.5;
}

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

.footer-bottom p {
  color: var(--color-text-muted);
  font-size: 0.875rem;
}

.no-real-money {
  margin-top: 12px;
  padding: 12px 24px;
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-radius: 8px;
  display: inline-block;
}

.no-real-money p {
  color: #ffc107;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================================================
   Legal Pages
   ============================================================================ */
.legal-page {
  padding: 120px 0 var(--section-padding);
}

.legal-page h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.last-updated {
  color: var(--color-text-muted);
  margin-bottom: 48px;
}

.legal-section {
  margin-bottom: 40px;
}

.legal-section h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--color-primary);
}

.legal-section h3 {
  font-size: 1.125rem;
  margin: 24px 0 12px;
  color: var(--color-secondary);
}

.legal-section p {
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

.legal-section ul {
  list-style: none;
  padding-left: 0;
}

.legal-section li {
  color: var(--color-text-muted);
  padding-left: 24px;
  position: relative;
  margin-bottom: 8px;
}

.legal-section li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--color-primary);
  border-radius: 50%;
}

/* ============================================================================
   Cookie Banner
   ============================================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-surface);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px;
  z-index: 1001;
}

.cookie-content {
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-content p {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  flex: 1;
  min-width: 200px;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
}

.cookie-buttons .btn {
  padding: 10px 20px;
  font-size: 0.875rem;
}

/* ============================================================================
   Age Verification Modal
   ============================================================================ */
.age-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 20px;
}

.age-modal-content {
  background: var(--color-surface);
  border-radius: var(--card-radius);
  padding: 48px;
  max-width: 500px;
  text-align: center;
  border: 1px solid var(--color-primary);
}

.age-modal h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--color-secondary);
}

.age-modal p {
  color: var(--color-text-muted);
  margin-bottom: 32px;
}

.age-modal .age-warning {
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 32px;
}

.age-modal .age-warning p {
  color: #ffc107;
  font-size: 0.875rem;
  margin: 0;
}

.age-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}

/* ============================================================================
   Animations
   ============================================================================ */
.animate-fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.6s ease-out forwards;
}

.animate-fade-in-delay {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.6s ease-out 0.2s forwards;
}

.animate-fade-in-delay-2 {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.6s ease-out 0.4s forwards;
}

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

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: var(--animation-fade-in);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================================
   Responsive
   ============================================================================ */
@media (max-width: 768px) {
  :root {
    --section-padding: 60px;
  }

  .nav-links {
    display: none;
  }

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

  .hero-content {
    padding: 60px 20px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .hero-cta .btn {
    width: 100%;
    max-width: 300px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .age-modal-content {
    padding: 32px 24px;
  }

  .age-buttons {
    flex-direction: column;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  .footer-columns .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* ============================================================================
   STATS SECTION
   ============================================================================ */
.stats-section {
  padding: 80px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(var(--color-primary-rgb), 0.05) 50%, transparent 100%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  padding: 30px 20px;
  background: var(--color-surface);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--animation-hover);
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stat-number {
  display: block;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

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

/* ============================================================================
   TESTIMONIALS SECTION
   ============================================================================ */
.testimonials-section {
  padding: var(--section-padding) 0;
  background: var(--color-surface);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.testimonial-card {
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  transition: var(--animation-hover);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.testimonial-stars {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.author-name {
  font-weight: 600;
  color: var(--color-text);
}

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

/* ============================================================================
   FAQ SECTION
   ============================================================================ */
.faq-section {
  padding: var(--section-padding) 0;
}

.faq-list {
  max-width: 800px;
  margin: 50px auto 0;
}

.faq-item {
  margin-bottom: 16px;
  border-radius: 12px;
  overflow: hidden;
  transition: var(--animation-hover);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  color: var(--color-text);
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: rgba(var(--color-primary-rgb), 0.1);
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--color-primary);
  transition: transform 0.3s ease;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 24px 20px;
}

.faq-answer p {
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ============================================================================
   CTA BANNER SECTION
   ============================================================================ */
.cta-banner-section {
  padding: var(--section-padding) 0;
}

.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 60px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(var(--color-primary-rgb), 0.2) 0%, rgba(var(--color-secondary-rgb), 0.2) 100%);
  border: 1px solid rgba(var(--color-primary-rgb), 0.3);
}

.cta-content h2 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: 12px;
}

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

/* ============================================================================
   NAV LAYOUT VARIANTS
   ============================================================================ */
.navbar-centered .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
}

.navbar-centered .nav-left,
.navbar-centered .nav-right {
  display: flex;
  gap: 24px;
}

.navbar-centered .nav-left a,
.navbar-centered .nav-right a {
  color: var(--color-text-muted);
  font-weight: 500;
  transition: color 0.2s ease;
}

.navbar-centered .nav-left a:hover,
.navbar-centered .nav-right a:hover,
.navbar-centered .nav-left a.active,
.navbar-centered .nav-right a.active {
  color: var(--color-text);
}

.navbar-centered .logo {
  order: 0;
}

.navbar-minimal {
  background: transparent;
  box-shadow: none;
}

.navbar-minimal .container {
  justify-content: space-between;
}

.navbar-minimal .logo-text {
  display: none;
}

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

.navbar-split .nav-center {
  display: flex;
  gap: 24px;
}

.navbar-split .nav-center a {
  color: var(--color-text-muted);
  font-weight: 500;
  transition: color 0.2s ease;
}

.navbar-split .nav-center a:hover,
.navbar-split .nav-center a.active {
  color: var(--color-text);
}

.navbar-split .nav-cta .btn {
  padding: 8px 20px;
  font-size: 0.875rem;
}

/* ============================================================================
   FOOTER LAYOUT VARIANTS
   ============================================================================ */
.footer-centered {
  text-align: center;
}

.footer-centered .logo {
  display: inline-flex;
  margin-bottom: 16px;
}

.footer-centered .footer-tagline {
  margin-bottom: 24px;
}

.footer-links-inline {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 30px;
}

.footer-links-inline a {
  color: var(--color-text-muted);
}

.footer-links-inline a:hover {
  color: var(--color-primary);
}

.footer-links-inline .separator {
  color: var(--color-text-muted);
}

.footer-minimal {
  padding: 30px 0;
}

.footer-minimal .footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

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

.footer-col h4 {
  font-size: 1rem;
  margin-bottom: 16px;
  color: var(--color-text);
}

.footer-col a {
  display: block;
  color: var(--color-text-muted);
  margin-bottom: 10px;
  font-size: 0.875rem;
}

.footer-col a:hover {
  color: var(--color-primary);
}

.footer-contact {
  color: var(--color-text-muted);
  font-size: 0.875rem;
}