/* ==========================================================================
   DUSK CAVERN - VIBRANT ENERGETIC DESIGN SYSTEM
   CSS Reset, Variables, Typography, Layout, Components
   ========================================================================== */

/* CSS RESET & NORMALIZE */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.7;
  color: #1a1a1a;
  background: #ffffff;
  overflow-x: hidden;
}

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

ul, ol {
  list-style-position: inside;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* ==========================================================================
   VIBRANT ENERGETIC COLOR SYSTEM
   Electric colors with high energy
   ========================================================================== */

:root {
  /* Primary Electric Purple */
  --primary: #8B00FF;
  --primary-dark: #6600CC;
  --primary-light: #B84AFF;
  
  /* Electric Pink Accent */
  --accent: #FF1B8D;
  --accent-dark: #D91574;
  --accent-light: #FF4DA6;
  
  /* Neon Cyan */
  --secondary: #00FFFF;
  --secondary-dark: #00CCCC;
  --secondary-light: #4DFFFF;
  
  /* Electric Yellow */
  --highlight: #FFE500;
  --highlight-dark: #CCBA00;
  
  /* Vibrant Orange */
  --energy: #FF6B00;
  --energy-dark: #CC5600;
  
  /* Bright Lime */
  --lime: #CCFF00;
  
  /* High Contrast Text */
  --text-dark: #0A0A0A;
  --text-medium: #333333;
  --text-light: #666666;
  
  /* Pure White */
  --white: #FFFFFF;
  
  /* Energetic Grays */
  --gray-100: #F5F5F5;
  --gray-200: #E8E8E8;
  --gray-300: #D1D1D1;
  
  /* Dynamic Gradients */
  --gradient-electric: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  --gradient-neon: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  --gradient-energy: linear-gradient(135deg, var(--energy) 0%, var(--highlight) 100%);
  
  /* Spacing System */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 48px;
  --space-xxl: 64px;
  
  /* Typography Scale */
  --font-display: 'Montserrat', 'Arial Black', sans-serif;
  --font-body: 'Open Sans', -apple-system, sans-serif;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  
  /* Shadows - Bold & Vibrant */
  --shadow-sm: 0 4px 12px rgba(139, 0, 255, 0.15);
  --shadow-md: 0 8px 24px rgba(139, 0, 255, 0.2);
  --shadow-lg: 0 12px 40px rgba(139, 0, 255, 0.25);
  --shadow-neon: 0 0 20px rgba(0, 255, 255, 0.4);
  --shadow-pink: 0 8px 24px rgba(255, 27, 141, 0.3);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ==========================================================================
   TYPOGRAPHY - BOLD & ENERGETIC
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: var(--space-md);
  color: var(--text-dark);
  letter-spacing: -0.5px;
}

h1 {
  font-size: 56px;
  background: var(--gradient-electric);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: -1px;
}

h2 {
  font-size: 42px;
  color: var(--primary);
  text-transform: uppercase;
  position: relative;
  padding-bottom: var(--space-sm);
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 5px;
  background: var(--gradient-energy);
  border-radius: 3px;
}

h3 {
  font-size: 28px;
  color: var(--accent);
  font-weight: 700;
}

h4 {
  font-size: 22px;
  color: var(--text-dark);
  font-weight: 700;
}

p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: var(--space-md);
  color: var(--text-medium);
}

.subtitle, .hero-subtitle {
  font-size: 24px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: var(--space-lg);
}

strong {
  font-weight: 700;
  color: var(--primary);
}

/* ==========================================================================
   CONTAINER & LAYOUT - FLEXBOX ONLY
   ========================================================================== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  width: 100%;
}

.section {
  margin-bottom: var(--space-xxl);
  padding: var(--space-xl) var(--space-md);
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

/* ==========================================================================
   HEADER & NAVIGATION - ELECTRIC ENERGY
   ========================================================================== */

header {
  background: var(--white);
  border-bottom: 3px solid var(--primary);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  animation: slideDown 0.5s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-sm) 0;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.logo img {
  height: 50px;
  width: auto;
  transition: transform var(--transition-fast);
}

.logo:hover img {
  transform: scale(1.05) rotate(-2deg);
}

.main-nav {
  display: flex;
  gap: var(--space-lg);
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding: 8px 0;
  transition: all var(--transition-fast);
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--gradient-electric);
  transition: width var(--transition-base);
}

.main-nav a:hover {
  color: var(--primary);
  transform: translateY(-2px);
}

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

.cta-button {
  background: var(--gradient-electric);
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--radius-lg);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: var(--shadow-lg);
}

/* ==========================================================================
   MOBILE MENU - DYNAMIC SLIDE-IN
   ========================================================================== */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: var(--space-md);
  right: var(--space-md);
  z-index: 2000;
  background: var(--gradient-electric);
  color: var(--white);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  font-size: 24px;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.mobile-menu-toggle:hover {
  transform: rotate(90deg) scale(1.1);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--gradient-electric);
  z-index: 1999;
  padding: var(--space-xxl) var(--space-lg);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
  transition: right var(--transition-slow);
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  border: 2px solid var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.mobile-menu-close:hover {
  background: var(--white);
  color: var(--primary);
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.mobile-nav a {
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  padding: var(--space-sm);
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  transition: all var(--transition-fast);
}

.mobile-nav a:hover {
  transform: translateX(10px);
  border-bottom-color: var(--white);
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  .main-nav {
    display: none;
  }
  
  .header-content .cta-button {
    display: none;
  }
}

/* ==========================================================================
   HERO SECTION - EXPLOSIVE ENERGY
   ========================================================================== */

.hero {
  background: var(--gradient-electric);
  padding: var(--space-xxl) var(--space-md);
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 255, 255, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.5;
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  color: var(--white);
  background: none;
  -webkit-text-fill-color: var(--white);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  margin-bottom: var(--space-lg);
  animation: fadeInUp 0.8s ease;
}

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

.hero-subtitle {
  color: var(--white);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: var(--space-xl);
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-lg);
  animation: fadeInUp 0.8s ease 0.4s both;
}

.trust-badge {
  color: var(--white);
  font-weight: 600;
  font-size: 16px;
  animation: fadeInUp 0.8s ease 0.6s both;
}

/* Hero Inner Pages */
.hero-inner {
  background: var(--gradient-neon);
  padding: var(--space-xxl) var(--space-md);
  text-align: center;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}

.hero-inner::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 27, 141, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 3s ease-in-out infinite;
}

.hero-inner h1 {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.hero-inner .subtitle {
  color: var(--white);
  font-size: 20px;
  margin-bottom: var(--space-sm);
}

.mission-statement {
  color: var(--white);
  font-size: 18px;
  font-style: italic;
  margin-top: var(--space-md);
}

/* ==========================================================================
   BUTTONS - HIGH ENERGY
   ========================================================================== */

.btn-primary, .btn-secondary, .btn, .btn-link {
  display: inline-block;
  padding: 16px 32px;
  border-radius: var(--radius-lg);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-base);
  border: none;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: var(--gradient-energy);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary);
  border: 3px solid var(--primary);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.btn {
  background: var(--gradient-electric);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-link {
  background: transparent;
  color: var(--accent);
  padding: 8px 16px;
  border-bottom: 3px solid var(--accent);
  font-size: 16px;
}

.btn-link:hover {
  color: var(--accent-dark);
  border-bottom-color: var(--accent-dark);
  transform: translateX(5px);
}

.cta-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-lg);
}

/* ==========================================================================
   CARDS & CONTENT SECTIONS - VIBRANT CONTAINERS
   ========================================================================== */

.card-container, .service-grid, .benefits-grid, .testimonial-grid,
.coach-grid, .stats-grid, .packages-grid, .methods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.card, .service-card, .benefit-card, .testimonial-card,
.coach-card, .stat-card, .package-card, .method-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  position: relative;
  margin-bottom: var(--space-md);
  flex: 1 1 calc(33.333% - var(--space-lg));
  min-width: 280px;
}

.card:hover, .service-card:hover, .benefit-card:hover,
.coach-card:hover, .package-card:hover, .method-card:hover {
  transform: translateY(-8px) rotate(1deg);
  box-shadow: var(--shadow-lg);
}

.service-card {
  border-top: 5px solid var(--primary);
}

.service-card.popular {
  border-top-color: var(--accent);
  background: linear-gradient(135deg, rgba(255, 27, 141, 0.05) 0%, rgba(139, 0, 255, 0.05) 100%);
}

.badge {
  display: inline-block;
  background: var(--gradient-energy);
  color: var(--white);
  padding: 6px 16px;
  border-radius: var(--radius-xl);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
  box-shadow: var(--shadow-sm);
}

.badge.popular {
  background: var(--accent);
}

.badge.premium {
  background: var(--gradient-electric);
}

.badge.professional {
  background: var(--gradient-neon);
}

.badge.weekend {
  background: var(--energy);
}

.price {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
  margin: var(--space-md) 0;
}

.package-price {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--primary);
  margin: var(--space-sm) 0;
}

/* ==========================================================================
   PROBLEM-SOLUTION SECTION - HIGH CONTRAST
   ========================================================================== */

.problem-solution {
  background: var(--gray-100);
  padding: var(--space-xxl) var(--space-md);
  margin-bottom: var(--space-xxl);
}

.problem-solution h2 {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.problem-box, .solution-box {
  background: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-lg);
  border-left: 8px solid var(--accent);
}

.solution-box {
  border-left-color: var(--primary);
}

.problem-box h3 {
  color: var(--accent);
  margin-bottom: var(--space-md);
}

.solution-box h3 {
  color: var(--primary);
  margin-bottom: var(--space-md);
}

/* ==========================================================================
   BENEFITS SECTION - ICON CARDS
   ========================================================================== */

.benefits {
  background: var(--white);
  padding: var(--space-xxl) var(--space-md);
  margin-bottom: var(--space-xxl);
}

.benefits h2 {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.benefits-grid {
  justify-content: center;
}

.benefit-item, .benefit-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  border: 3px solid var(--gray-200);
  flex: 1 1 calc(33.333% - var(--space-lg));
  min-width: 250px;
  margin-bottom: var(--space-md);
}

.benefit-item:hover, .benefit-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.benefit-item img {
  width: 60px;
  height: 60px;
  margin-bottom: var(--space-md);
}

.benefit-item h3, .benefit-card h3 {
  margin-bottom: var(--space-sm);
}

/* ==========================================================================
   TESTIMONIALS - READABLE & VIBRANT
   ========================================================================== */

.testimonials {
  background: var(--gradient-electric);
  padding: var(--space-xxl) var(--space-md);
  margin-bottom: var(--space-xxl);
  color: var(--white);
}

.testimonials h2 {
  color: var(--white);
  text-align: center;
  margin-bottom: var(--space-xl);
}

.testimonials h2::after {
  background: var(--white);
  left: 50%;
  transform: translateX(-50%);
}

.testimonial-card {
  background: var(--white);
  color: var(--text-dark);
  display: flex;
  flex-direction: column;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border-left: 6px solid var(--accent);
  flex: 1 1 calc(50% - var(--space-lg));
  min-width: 300px;
  margin-bottom: var(--space-md);
}

.testimonial-card p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-medium);
  font-style: italic;
  margin-bottom: var(--space-md);
}

.testimonial-author {
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 2px solid var(--gray-200);
  color: var(--text-dark);
  font-style: normal;
}

.testimonial-author strong {
  display: block;
  color: var(--primary);
  font-size: 18px;
  margin-bottom: 4px;
}

.rating {
  text-align: center;
  font-size: 24px;
  color: var(--highlight);
  margin: var(--space-lg) 0;
  font-weight: 700;
}

.overall-rating {
  text-align: center;
  font-size: 28px;
  color: var(--highlight);
  margin-bottom: var(--space-lg);
  font-weight: 800;
}

/* ==========================================================================
   CTA SECTIONS - EXPLOSIVE ENERGY
   ========================================================================== */

.cta-final, .cta-section {
  background: var(--gradient-neon);
  padding: var(--space-xxl) var(--space-md);
  text-align: center;
  margin-bottom: var(--space-xxl);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.cta-final::before, .cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 229, 0, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 5s ease-in-out infinite;
}

.cta-final h2, .cta-section h2 {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.cta-final h2::after, .cta-section h2::after {
  background: var(--white);
  left: 50%;
  transform: translateX(-50%);
}

.cta-final p, .cta-section p {
  color: var(--white);
  font-size: 20px;
  margin-bottom: var(--space-xl);
}

.urgency, .guarantee {
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
  margin-top: var(--space-md);
  text-transform: uppercase;
}

/* ==========================================================================
   COURSE & WORKSHOP DETAILS
   ========================================================================== */

.course-featured, .workshop-featured, .course-detail, .workshop-detail {
  background: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-xxl);
  border-top: 6px solid var(--primary);
}

.course-info, .workshop-info {
  background: var(--gray-100);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  margin: var(--space-lg) 0;
}

.course-info p, .workshop-info p {
  margin-bottom: var(--space-sm);
}

.course-benefits ul, .focus-list, .format-list {
  list-style: none;
  padding-left: 0;
}

.course-benefits ul li, .focus-list li, .format-list li {
  padding-left: var(--space-lg);
  margin-bottom: var(--space-sm);
  position: relative;
  color: var(--text-medium);
}

.course-benefits ul li::before, .focus-list li::before, .format-list li::before {
  content: '⚡';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 20px;
}

.tagline {
  font-size: 20px;
  color: var(--accent);
  font-weight: 600;
  font-style: italic;
  margin-bottom: var(--space-md);
}

/* ==========================================================================
   COACHING SECTIONS
   ========================================================================== */

.coaching-overview, .coaching-details {
  background: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-xxl);
}

.intensive-coaching {
  background: linear-gradient(135deg, rgba(139, 0, 255, 0.1) 0%, rgba(255, 27, 141, 0.1) 100%);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-xxl);
  border: 3px solid var(--primary);
}

.intensive-info {
  background: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  margin: var(--space-lg) 0;
}

/* ==========================================================================
   SUCCESS STORIES PAGE
   ========================================================================== */

.featured-story {
  background: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  margin-bottom: var(--space-xxl);
  border-left: 10px solid var(--accent);
}

.story-content blockquote {
  font-size: 24px;
  font-style: italic;
  color: var(--primary);
  border-left: 5px solid var(--accent);
  padding-left: var(--space-lg);
  margin: var(--space-lg) 0;
}

.transformation-details {
  margin-top: var(--space-lg);
}

.profession {
  font-weight: 600;
  color: var(--accent);
  margin-bottom: var(--space-md);
}

.stats-bar {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
  margin-top: var(--space-lg);
}

.stats-bar span {
  color: var(--white);
  font-weight: 700;
  font-size: 18px;
  padding: var(--space-sm) var(--space-md);
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
}

.success-metrics, .alumni-achievements {
  background: var(--gray-100);
  padding: var(--space-xxl) var(--space-md);
  margin-bottom: var(--space-xxl);
}

.metrics-grid, .achievements-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  justify-content: center;
}

.metric-card, .achievement-item {
  background: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  flex: 1 1 calc(33.333% - var(--space-lg));
  min-width: 200px;
  border-top: 5px solid var(--primary);
  margin-bottom: var(--space-md);
}

.metric-card h3, .achievement-item h3 {
  font-size: 48px;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}

.comparison-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
}

.comparison-card {
  background: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  flex: 1 1 calc(50% - var(--space-lg));
  min-width: 250px;
  margin-bottom: var(--space-md);
}

.before {
  color: var(--text-light);
  margin-bottom: var(--space-sm);
  text-decoration: line-through;
}

.after {
  color: var(--primary);
  font-weight: 700;
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */

.contact-methods {
  background: var(--gray-100);
  padding: var(--space-xxl) var(--space-md);
  margin-bottom: var(--space-xxl);
}

.methods-grid {
  justify-content: center;
}

.method-card {
  text-align: center;
  flex: 1 1 calc(33.333% - var(--space-lg));
  min-width: 250px;
}

.method-card img {
  width: 60px;
  height: 60px;
  margin: 0 auto var(--space-md);
}

.method-card h3 {
  margin-bottom: var(--space-md);
}

.method-card a {
  color: var(--accent);
  font-weight: 600;
}

.method-card a:hover {
  color: var(--accent-dark);
  text-decoration: underline;
}

.contact-form-section {
  background: var(--white);
  padding: var(--space-xxl) var(--space-md);
  margin-bottom: var(--space-xxl);
}

.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: var(--gray-100);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.form-note {
  background: var(--white);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-lg);
  border-left: 4px solid var(--accent);
}

.field-group {
  margin-bottom: var(--space-lg);
}

.field-group label {
  display: block;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: var(--space-sm);
  font-family: var(--font-display);
}

.input-placeholder, .submit-placeholder, .checkbox-placeholder {
  background: var(--white);
  border: 3px solid var(--gray-300);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  color: var(--text-light);
  font-style: italic;
  transition: all var(--transition-fast);
}

.input-placeholder:hover {
  border-color: var(--primary);
}

.submit-placeholder {
  background: var(--gradient-electric);
  color: var(--white);
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  border: none;
  font-family: var(--font-display);
  font-size: 18px;
  text-transform: uppercase;
}

.submit-placeholder:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.privacy-note {
  font-size: 14px;
  color: var(--text-light);
  margin-top: var(--space-md);
}

.privacy-note a {
  color: var(--accent);
  font-weight: 600;
}

.consultation-booking {
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, rgba(139, 0, 255, 0.1) 100%);
  padding: var(--space-xxl) var(--space-md);
  margin-bottom: var(--space-xxl);
  text-align: center;
}

.booking-placeholder {
  background: var(--white);
  border: 3px dashed var(--primary);
  border-radius: var(--radius-lg);
  padding: var(--space-xxl);
  margin: var(--space-lg) auto;
  max-width: 600px;
  color: var(--text-light);
  font-style: italic;
}

.location-info {
  background: var(--white);
  padding: var(--space-xxl) var(--space-md);
  margin-bottom: var(--space-xxl);
}

.location-content {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
  align-items: flex-start;
}

.location-details {
  flex: 1 1 400px;
}

.map-placeholder {
  flex: 1 1 500px;
  background: var(--gray-200);
  border: 3px solid var(--gray-300);
  border-radius: var(--radius-lg);
  padding: var(--space-xxl);
  text-align: center;
  color: var(--text-light);
  font-style: italic;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-quick {
  background: var(--gray-100);
  padding: var(--space-xxl) var(--space-md);
  margin-bottom: var(--space-xxl);
}

.faq-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
}

.faq-item {
  background: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  flex: 1 1 calc(50% - var(--space-lg));
  min-width: 280px;
  border-left: 4px solid var(--accent);
  margin-bottom: var(--space-md);
}

.faq-item h3 {
  margin-bottom: var(--space-md);
  color: var(--primary);
}

.what-happens-next {
  background: var(--white);
  padding: var(--space-xxl) var(--space-md);
  margin-bottom: var(--space-xxl);
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.step-card {
  background: var(--gradient-electric);
  color: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  flex: 1 1 calc(25% - var(--space-lg));
  min-width: 200px;
  margin-bottom: var(--space-md);
}

.step-card h3 {
  color: var(--white);
  margin-bottom: var(--space-md);
  font-size: 24px;
}

.step-card p {
  color: var(--white);
}

.reassurance {
  text-align: center;
  font-style: italic;
  color: var(--text-medium);
  margin-top: var(--space-lg);
}

/* ==========================================================================
   THANK YOU PAGE
   ========================================================================== */

.thank-you-hero {
  background: var(--gradient-electric);
  padding: var(--space-xxl) var(--space-md);
  text-align: center;
  margin-bottom: var(--space-xxl);
}

.thank-you-content {
  max-width: 800px;
  margin: 0 auto;
}

.success-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto var(--space-lg);
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}

.success-icon img {
  width: 60px;
  height: 60px;
}

.thank-you-hero h1 {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.thank-you-hero .subtitle {
  color: var(--white);
}

.next-steps {
  background: var(--gray-100);
  padding: var(--space-xxl) var(--space-md);
  margin-bottom: var(--space-xxl);
}

.free-resources {
  background: var(--white);
  padding: var(--space-xxl) var(--space-md);
  margin-bottom: var(--space-xxl);
}

.resources-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
}

.resource-card {
  background: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  flex: 1 1 calc(33.333% - var(--space-lg));
  min-width: 250px;
  border-top: 5px solid var(--accent);
  margin-bottom: var(--space-md);
}

.resource-card img {
  width: 60px;
  height: 60px;
  margin: 0 auto var(--space-md);
}

.continue-exploring {
  background: var(--gray-100);
  padding: var(--space-xxl) var(--space-md);
  margin-bottom: var(--space-xxl);
}

.navigation-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
}

.nav-card {
  background: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  flex: 1 1 calc(50% - var(--space-lg));
  min-width: 250px;
  border-left: 5px solid var(--primary);
  transition: all var(--transition-base);
  margin-bottom: var(--space-md);
}

.nav-card:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-md);
  border-left-color: var(--accent);
}

/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */

.story, .methodology, .team, .impact {
  background: var(--white);
  padding: var(--space-xxl) var(--space-md);
  margin-bottom: var(--space-xxl);
}

.story:nth-child(even), .methodology:nth-child(even) {
  background: var(--gray-100);
}

.values-list {
  background: linear-gradient(135deg, rgba(139, 0, 255, 0.1) 0%, rgba(255, 27, 141, 0.1) 100%);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  margin-top: var(--space-lg);
}

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

.values-list ul li {
  padding-left: var(--space-lg);
  margin-bottom: var(--space-md);
  position: relative;
}

.values-list ul li::before {
  content: '⚡';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 20px;
}

.principle-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.principle-card {
  background: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  flex: 1 1 calc(50% - var(--space-lg));
  min-width: 280px;
  border-top: 4px solid var(--primary);
  margin-bottom: var(--space-md);
}

.coach-card {
  text-align: center;
  flex: 1 1 calc(33.333% - var(--space-lg));
  min-width: 250px;
}

.coach-title {
  color: var(--accent);
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.collective-stats {
  text-align: center;
  font-weight: 700;
  color: var(--primary);
  margin-top: var(--space-xl);
  font-size: 18px;
}

/* ==========================================================================
   LEGAL PAGES
   ========================================================================== */

.legal-page {
  background: var(--white);
  padding: var(--space-xxl) var(--space-md);
  margin-bottom: var(--space-xxl);
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  background: var(--gray-100);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.legal-content h1 {
  color: var(--primary);
  margin-bottom: var(--space-md);
}

.legal-content h2 {
  font-size: 24px;
  color: var(--accent);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
}

.last-updated, .intro {
  color: var(--text-light);
  font-style: italic;
  margin-bottom: var(--space-lg);
}

.intro {
  font-size: 18px;
  color: var(--text-medium);
  font-weight: 600;
  font-style: normal;
}

/* ==========================================================================
   FOOTER - ENERGETIC CLOSURE
   ========================================================================== */

footer {
  background: var(--text-dark);
  color: var(--white);
  padding: var(--space-xxl) var(--space-md) var(--space-lg);
  margin-top: var(--space-xxl);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
  justify-content: space-between;
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.footer-about, .footer-links, .footer-contact {
  flex: 1 1 250px;
}

.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: var(--space-md);
}

.footer-about p {
  color: var(--gray-300);
}

footer h4 {
  color: var(--accent);
  font-size: 18px;
  margin-bottom: var(--space-md);
  font-family: var(--font-display);
  text-transform: uppercase;
}

.footer-links nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-links a, .footer-contact a {
  color: var(--gray-300);
  transition: all var(--transition-fast);
}

.footer-links a:hover, .footer-contact a:hover {
  color: var(--accent);
  transform: translateX(5px);
}

.footer-contact p {
  color: var(--gray-300);
  margin-bottom: var(--space-sm);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-legal a {
  color: var(--gray-300);
  font-size: 14px;
  transition: all var(--transition-fast);
}

.footer-legal a:hover {
  color: var(--accent);
}

.footer-bottom p {
  color: var(--gray-300);
  font-size: 14px;
  margin-bottom: 0;
}

/* ==========================================================================
   COOKIE CONSENT BANNER - VIBRANT & CLEAR
   ========================================================================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--gradient-electric);
  color: var(--white);
  padding: var(--space-lg) var(--space-md);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1500;
  transform: translateY(100%);
  transition: transform var(--transition-slow);
}

.cookie-banner.active {
  transform: translateY(0);
}

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

.cookie-text {
  flex: 1 1 400px;
}

.cookie-text p {
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.cookie-buttons {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.cookie-accept, .cookie-reject, .cookie-settings {
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
}

.cookie-accept {
  background: var(--white);
  color: var(--primary);
}

.cookie-accept:hover {
  background: var(--highlight);
  color: var(--text-dark);
  transform: scale(1.05);
}

.cookie-reject {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.cookie-reject:hover {
  background: var(--white);
  color: var(--primary);
}

.cookie-settings {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.cookie-settings:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Cookie Preferences Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

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

.cookie-modal-content {
  background: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  transform: scale(0.9);
  transition: transform var(--transition-base);
}

.cookie-modal.active .cookie-modal-content {
  transform: scale(1);
}

.cookie-modal h2 {
  color: var(--primary);
  margin-bottom: var(--space-lg);
}

.cookie-category {
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 2px solid var(--gray-200);
}

.cookie-category h3 {
  color: var(--accent);
  margin-bottom: var(--space-sm);
}

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--space-sm);
}

.cookie-modal-buttons {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-lg);
  flex-wrap: wrap;
}

.cookie-save, .cookie-close {
  flex: 1;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
}

.cookie-save {
  background: var(--gradient-electric);
  color: var(--white);
}

.cookie-save:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.cookie-close {
  background: var(--gray-200);
  color: var(--text-dark);
}

.cookie-close:hover {
  background: var(--gray-300);
}

/* ==========================================================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ========================================================================== */

@media (max-width: 768px) {
  :root {
    --space-xl: 32px;
    --space-xxl: 48px;
  }
  
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 22px;
  }
  
  p {
    font-size: 16px;
  }
  
  .subtitle, .hero-subtitle {
    font-size: 18px;
  }
  
  .header-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .hero {
    padding: var(--space-xl) var(--space-md);
  }
  
  .hero-cta {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
  }
  
  .service-grid, .benefits-grid, .testimonial-grid,
  .coach-grid, .stats-grid, .packages-grid, .methods-grid {
    flex-direction: column;
  }
  
  .card, .service-card, .benefit-card, .testimonial-card,
  .coach-card, .stat-card, .package-card, .method-card {
    flex: 1 1 100%;
  }
  
  .content-wrapper {
    flex-direction: column;
  }
  
  .location-content {
    flex-direction: column;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal {
    flex-direction: column;
    align-items: center;
  }
  
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-accept, .cookie-reject, .cookie-settings {
    width: 100%;
  }
  
  .steps-grid {
    flex-direction: column;
  }
  
  .step-card {
    flex: 1 1 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .service-card, .benefit-card, .coach-card {
    flex: 1 1 calc(50% - var(--space-lg));
  }
  
  .stat-card, .package-card {
    flex: 1 1 calc(50% - var(--space-lg));
  }
}

/* ==========================================================================
   ANIMATIONS & MICRO-INTERACTIONS
   ========================================================================== */

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

/* Scroll Animations */
.fade-in {
  animation: fadeIn 0.8s ease;
}

.slide-in-left {
  animation: slideInLeft 0.8s ease;
}

.slide-in-right {
  animation: slideInRight 0.8s ease;
}

/* Hover Effects */
.hover-bounce:hover {
  animation: bounce 0.6s ease;
}

/* Focus States for Accessibility */
a:focus, button:focus {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal {
    display: none !important;
  }
  
  header {
    position: static;
  }
  
  * {
    box-shadow: none !important;
  }
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */

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

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

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

.mt-0 { margin-top: 0; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }

.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

.hidden {
  display: none;
}

.visible {
  display: block;
}

/* Screen Reader Only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* END OF CSS */
