/* Reduce space between #enroll section and .social-links */
#enroll {
  margin-bottom: 12px !important;
  padding-bottom: 0 !important;
}
.social-links {
  margin-top: 8px !important;
}
/* Only remove bottom margin for the specific CTA button with all classes */
a.cta-button.cta-margin-large.bounce.flash {
  margin-bottom: 0 !important;
}
/* Only remove bottom margin for Graphic_07.png testimonial image */
img[src$="Graphic_07.png"] {
  margin-bottom: 0 !important;
}
/* Add bottom margin to Graphic 2 testimonial image */
img[src$="Graphic_02.png"] {
  margin-bottom: 100px;
}
/* CSS Custom Properties for Theme System */
:root {
  /* Dark Theme (Default) */
  --bg-primary: #0a0a0a;
  --bg-secondary: #1a1a1a;
  --bg-accent: #2a2a2a;
  --text-primary: #ffffff;
  --text-secondary: #e0e0e0;
  --text-muted: #b0b0b0;
  --accent-gold: #FFD700;
  --accent-gold-hover: #FFA500;
  --accent-gold-light: rgba(255, 215, 0, 0.1);
  --accent-gold-border: rgba(255, 215, 0, 0.3);
  --shadow-light: rgba(255, 215, 0, 0.2);
  --shadow-dark: rgba(0, 0, 0, 0.3);
  --overlay-dark: rgba(0, 0, 0, 0.9);
}

/* Light Theme */
[data-theme="light"] {
  --bg-primary: #ffffff;
  --bg-secondary: #f8f9fa;
  --bg-accent: #e9ecef;
  --text-primary: #212529;
  --text-secondary: #495057;
  --text-muted: #6c757d;
  --accent-gold: #B8860B;
  --accent-gold-hover: #9A7209;
  --accent-gold-light: rgba(184, 134, 11, 0.1);
  --accent-gold-border: rgba(184, 134, 11, 0.3);
  --shadow-light: rgba(184, 134, 11, 0.2);
  --shadow-dark: rgba(0, 0, 0, 0.1);
  --overlay-dark: rgba(255, 255, 255, 0.95);
}

/* SEO Accessibility Improvements */
.skip-to-content {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--accent-gold);
  color: var(--bg-primary);
  padding: 8px 12px;
  text-decoration: none;
  z-index: 10000;
  border-radius: 4px;
  font-weight: bold;
  transition: top 0.3s ease;
}

.skip-to-content:focus {
  top: 6px;
}

/* Enhanced image SEO optimization */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Print styles for SEO */
@media print {
  .mobile-cta-bar,
  .exit-popup-overlay,
  .cookie-consent,
  .back-to-top,
  .theme-toggle {
    display: none !important;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
    color: black !important;
    background: white !important;
  }
  
  h1, h2, h3 {
    page-break-after: avoid;
    color: black !important;
  }
  
  .cta-button {
    border: 2px solid black;
    color: black !important;
    background: white !important;
  }
}

/* Theme Toggle Button */
.theme-toggle {
  background: var(--accent-gold-light);
  border: 2px solid var(--accent-gold-border);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  position: relative;
  flex-shrink: 0;
  z-index: 1002;
}

.theme-toggle:hover {
  background: var(--accent-gold);
  transform: scale(1.1);
  box-shadow: 0 4px 20px var(--shadow-light);
}

.theme-icon {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.theme-toggle:hover .theme-icon {
  transform: rotate(180deg);
}

/* Desktop theme toggle - hide on desktop, show in mobile header */
@media (min-width: 601px) {
  .theme-toggle {
    display: none;
  }
}

/* Mobile theme toggle positioning within header */
@media (max-width: 600px) {
  .theme-toggle {
    display: flex;
    order: 2; /* Position between logo and hamburger */
  }
}

/* Scroll Animation Classes */
.animate {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1), transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.visible {
  opacity: 1;
  transform: none;
}

/* Countdown Timer Styles */
.countdown-section {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #0a0a0a;
  padding: 40px 20px;
  text-align: center;
  margin: 40px 0;
  border-radius: 10px;
}

.countdown-section h3 {
  font-size: 1.8em;
  margin-bottom: 10px;
  font-weight: 700;
}

.countdown-section p {
  font-size: 1.1em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.countdown-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.countdown-item {
  background: var(--accent-gold-light);
  padding: 20px 15px;
  border-radius: 10px;
  min-width: 80px;
  backdrop-filter: blur(5px);
}

.countdown-number {
  display: block;
  font-size: 2.5em;
  font-weight: 700;
  line-height: 1;
}

.countdown-label {
  display: block;
  font-size: 0.9em;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 5px;
  opacity: 0.8;
}

.countdown-expired {
  font-size: 1.5em;
  font-weight: 700;
  color: #ff4444;
  padding: 20px;
}

/* Exit Intent Popup Styles */
.exit-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  display: none;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(5px);
}

.exit-popup-overlay.show {
  display: flex;
}

.exit-popup {
  background: var(--bg-primary);
  border: 2px solid var(--accent-gold);
  border-radius: 15px;
  max-width: 600px;
  width: 90%;
  max-height: 90%;
  overflow-y: auto;
  position: relative;
  animation: popupSlideIn 0.3s ease-out;
}

@keyframes popupSlideIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.exit-popup-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2em;
  color: #FFD700;
  cursor: pointer;
  z-index: 10001;
}

.exit-popup-close:hover {
  color: #ff4444;
}

.exit-popup-content {
  padding: 40px 30px 30px;
  text-align: center;
}

.exit-popup-content h2 {
  color: #ff4444;
  font-size: 1.8em;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(255, 68, 68, 0.3);
}

.exit-popup-offer h3 {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #0a0a0a;
  padding: 15px 20px;
  border-radius: 10px;
  font-size: 2em;
  margin: 20px 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}

.exit-popup-offer p {
  color: #d3d3d3;
  font-size: 1.2em;
  margin-bottom: 20px;
}

.exit-popup-price {
  color: #00C853;
  font-weight: 700;
  font-size: 1.3em;
  text-decoration: underline;
}

.exit-popup-benefits {
  text-align: left;
  max-width: 400px;
  margin: 20px auto;
  padding: 0;
  list-style: none;
}

.exit-popup-benefits li {
  color: #d3d3d3;
  padding: 8px 0;
  font-size: 1.1em;
}

.exit-popup-cta {
  margin-top: 30px;
}

.exit-popup-button {
  display: inline-block;
  background: linear-gradient(135deg, #00C853, #4CAF50);
  color: white;
  padding: 18px 30px;
  font-size: 1.3em;
  font-weight: 700;
  text-decoration: none;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 200, 83, 0.3);
}

.exit-popup-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 200, 83, 0.4);
}

.exit-popup-timer {
  color: #ff4444;
  font-weight: 600;
  margin-top: 15px;
  font-size: 1.1em;
}

.exit-popup-timer span {
  color: #FFD700;
  font-weight: 700;
  font-size: 1.2em;
}
/* Smooth Scrolling for Anchor Links */
html {
  scroll-behavior: smooth;
}

/* Mobile logo - hidden by default, shown on mobile */
.mobile-logo {
  display: none;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #0a0a0a;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5em;
  font-weight: bold;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
  background: linear-gradient(135deg, #FFA500, #FFD700);
}

.back-to-top:active {
  transform: translateY(-2px);
}

body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background-color: var(--bg-primary);
  color: var(--text-secondary);
  line-height: 1.6;
  transition: background-color 0.3s ease, color 0.3s ease;
}

nav a {
  padding: 24px 0;
}

header, footer {
  background: var(--bg-primary);
  text-align: center;
  padding: 20px;
  transition: background-color 0.3s ease;
}

/* Sticky Header */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

/* Enhanced header when scrolling */
header.scrolled {
  background: var(--bg-primary);
  box-shadow: 0 2px 20px var(--shadow-dark);
  padding: 15px 20px;
}


nav a {
  color: var(--text-primary);
  text-decoration: none;
  margin: 0 15px;
  font-weight: 500;
  transition: color 0.3s;
}

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

.nav-enroll {
  background: linear-gradient(45deg, var(--accent-gold-hover), var(--accent-gold));
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: bold;
  color: var(--bg-primary) !important;
}

/* Desktop Theme Toggle in Navigation */
.desktop-theme-toggle {
  background: var(--accent-gold-light);
  border: 2px solid var(--accent-gold-border);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-left: 15px;
}

.desktop-theme-toggle:hover {
  background: var(--accent-gold);
  transform: scale(1.1);
  box-shadow: 0 4px 20px var(--shadow-light);
}

.desktop-theme-icon {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.desktop-theme-toggle:hover .desktop-theme-icon {
  transform: rotate(180deg);
}

/* Hide desktop theme toggle on mobile */
@media (max-width: 600px) {
  .desktop-theme-toggle {
    display: none;
  }
}

.hero {
  text-align: center;
  padding: 100px 20px;
  margin-bottom: 24px;
  padding-top: 0px;
}

.hero h1 {
  font-size: 48px;
  color: var(--accent-gold);
  transition: color 0.3s ease;
}

.hero p {
  max-width: 600px;
  margin: 20px auto;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.cta-button {
  display: inline-block;
  margin-top: 30px;
  padding: 15px 40px;
  font-size: 18px;
  background: #00C853;
  color: var(--bg-primary);
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  animation: ctaBounce 2s infinite;
  box-shadow: 0 0 20px rgba(0, 200, 83, 0.4);
  transition: all 0.3s ease;
}

.cta-button:hover {
  animation: none;
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(0, 200, 83, 0.6);
}

/* CTA Button Bounce Animation */
@keyframes ctaBounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* CTA Button Flash Animation */
@keyframes ctaFlash {
  0%, 50%, 100% {
    box-shadow: 0 0 20px rgba(0, 200, 83, 0.4);
  }
  25%, 75% {
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.8), 0 0 60px rgba(0, 200, 83, 0.6);
  }
}

/* Add flash animation to specific CTA buttons */
.cta-button.flash {
  animation: ctaBounce 2s infinite, ctaFlash 3s infinite;
}

/* Pulse animation for high-priority CTAs */
.cta-button.pulse {
  animation: ctaPulse 1.5s infinite;
}

@keyframes ctaPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 20px rgba(0, 200, 83, 0.4);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.8), 0 0 60px rgba(0, 200, 83, 0.6);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 20px rgba(0, 200, 83, 0.4);
  }
}

/* Wiggle animation for extra attention */
.cta-button.wiggle {
  animation: ctaWiggle 0.8s infinite;
}

@keyframes ctaWiggle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-3deg); }
  75% { transform: rotate(3deg); }
}
section {
  padding: 80px 20px;
  max-width: 900px;
  margin: 0 auto;
}
h2 {
  color: var(--accent-gold);
  margin-bottom: 20px;
  transition: color 0.3s ease;
}
.testimonial-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Responsive Video Player Styles */
.testimonial-item {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.testimonial-item video {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  background: var(--bg-primary);
}

.testimonial-item video:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(255, 215, 0, 0.2);
}

/* Video Container for Aspect Ratio */
.video-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.video-container video {
  width: 100%;
  height: auto;
  display: block;
  background: var(--bg-primary);
}

/* Enhanced Video Player Features */
.responsive-video {
  object-fit: contain;
  max-width: 100%;
  transition: all 0.3s ease;
}

.responsive-video:focus {
  outline: 3px solid #FFD700;
  outline-offset: 3px;
}

/* Video loading state */
.responsive-video[data-src] {
  background: linear-gradient(90deg, var(--bg-primary) 25%, var(--bg-secondary) 50%, var(--bg-primary) 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Fullscreen Video Preview Feature */
.fullscreen-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
  pointer-events: none;
  z-index: 10;
}

.video-container:hover .fullscreen-overlay {
  opacity: 1;
  pointer-events: all;
}

.fullscreen-icon {
  background: rgba(255, 215, 0, 0.9);
  color: #0a0a0a;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  transform: scale(0.8);
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

.fullscreen-overlay:hover .fullscreen-icon {
  transform: scale(1);
  background: #FFD700;
  box-shadow: 0 6px 30px rgba(255, 215, 0, 0.5);
}

/* Enhanced video hover state for fullscreen */
.video-container {
  cursor: pointer;
}

.video-container video {
  transition: transform 0.3s ease;
}

.video-container:hover video {
  transform: scale(1.02);
}

/* Fullscreen video controls enhancement */
video:fullscreen {
  background: #000;
  object-fit: contain;
}

video:-webkit-full-screen {
  background: #000;
  object-fit: contain;
}

video:-moz-full-screen {
  background: #000;
  object-fit: contain;
}

video:-ms-fullscreen {
  background: #000;
  object-fit: contain;
}

/* Image Lightbox/Popup Feature */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--overlay-dark);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  backdrop-filter: blur(5px);
  touch-action: manipulation;
}

.lightbox-container {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-image {
  max-width: 100%;
  max-height: 80vh;
  min-height: 200px;
  min-width: 200px;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 8px 40px var(--shadow-light);
  animation: lightboxZoomIn 0.3s ease-out;
  background: var(--bg-secondary);
}

.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: var(--accent-gold);
  color: var(--bg-primary);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 100000;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.lightbox-close:hover {
  background: var(--accent-gold-hover);
  transform: scale(1.1);
  box-shadow: 0 4px 20px var(--shadow-light);
}

.lightbox-caption {
  color: var(--accent-gold);
  text-align: center;
  margin-top: 15px;
  font-size: 16px;
  font-weight: 500;
  max-width: 600px;
  padding: 0 20px;
}

/* Clickable image hover effects */
.clickable-image {
  transition: all 0.3s ease;
  touch-action: manipulation;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.clickable-image:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

/* Mobile touch feedback for images */
@media (max-width: 600px) {
  .clickable-image:active {
    transform: scale(0.98);
    filter: brightness(0.9);
  }
}

/* Animation for lightbox appearance */
@keyframes lightboxZoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Mobile lightbox adjustments */
@media (max-width: 600px) {
  .lightbox-container {
    max-width: 95vw;
    max-height: 95vh;
  }
  
  .lightbox-image {
    max-height: 75vh;
  }
  
  .lightbox-close {
    top: -40px;
    width: 44px;
    height: 44px;
    font-size: 20px;
    /* Larger touch target for mobile */
  }
  
  .lightbox-caption {
    font-size: 14px;
    margin-top: 10px;
  }
  
  /* Ensure images are easily tappable */
  .clickable-image {
    min-height: 44px;
    min-width: 44px;
  }
}

/* Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-secondary);
  border-top: 3px solid var(--accent-gold);
  padding: 20px;
  z-index: 10000;
  box-shadow: 0 -4px 20px var(--shadow-dark);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-consent.show {
  transform: translateY(0);
}

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

.cookie-text h4 {
  color: var(--accent-gold);
  margin: 0 0 8px 0;
  font-size: 18px;
}

.cookie-text p {
  color: var(--text-secondary);
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
}

.cookie-accept {
  background: var(--accent-gold);
  color: var(--bg-primary);
}

.cookie-accept:hover {
  background: var(--accent-gold-hover);
  transform: translateY(-2px);
}

.cookie-decline {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--text-muted);
}

.cookie-decline:hover {
  background: var(--text-muted);
  color: var(--bg-primary);
}

.cookie-link {
  background: none;
  border: none;
  color: var(--accent-gold);
  text-decoration: underline;
  cursor: pointer;
  font-size: 14px;
  padding: 5px;
}

.cookie-link:hover {
  color: var(--accent-gold-hover);
}

/* Mobile cookie banner */
@media (max-width: 600px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .cookie-actions {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .cookie-btn {
    min-width: 100px;
  }
}

/* Disclaimer Modal */
.disclaimer-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--overlay-dark);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  backdrop-filter: blur(5px);
}

.disclaimer-modal.show {
  display: flex;
}

.disclaimer-content {
  background: var(--bg-secondary);
  border: 2px solid var(--accent-gold);
  border-radius: 12px;
  max-width: 800px;
  max-height: 90vh;
  width: 90%;
  overflow: hidden;
  box-shadow: 0 8px 40px var(--shadow-dark);
  animation: disclaimerSlideIn 0.3s ease-out;
}

.disclaimer-header {
  background: var(--accent-gold);
  color: var(--bg-primary);
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.disclaimer-header h2 {
  margin: 0;
  font-size: 24px;
  color: var(--bg-primary) !important;
}

.disclaimer-close {
  background: none;
  border: none;
  color: var(--bg-primary);
  font-size: 28px;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.disclaimer-close:hover {
  background: rgba(0, 0, 0, 0.1);
}

.disclaimer-body {
  padding: 30px;
  max-height: 60vh;
  overflow-y: auto;
  color: var(--text-secondary);
  line-height: 1.6;
}

.disclaimer-body h3 {
  color: var(--accent-gold);
  margin: 20px 0 10px 0;
  font-size: 18px;
}

.disclaimer-body h3:first-child {
  margin-top: 0;
}

.disclaimer-body p {
  margin: 0 0 15px 0;
  font-size: 14px;
}

.disclaimer-body strong {
  color: var(--text-primary);
}

.disclaimer-body ul {
  margin: 10px 0 15px 20px;
  color: var(--text-secondary);
}

.disclaimer-body li {
  margin: 5px 0;
  font-size: 14px;
}

.disclaimer-footer {
  padding: 20px 30px;
  border-top: 1px solid var(--accent-gold-border);
  text-align: center;
}

.disclaimer-btn {
  background: var(--accent-gold);
  color: var(--bg-primary);
  border: none;
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
}

.disclaimer-btn:hover {
  background: var(--accent-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px var(--shadow-light);
}

/* Disclaimer modal animation */
@keyframes disclaimerSlideIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Mobile disclaimer modal */
@media (max-width: 600px) {
  .disclaimer-content {
    width: 95%;
    max-height: 95vh;
  }
  
  .disclaimer-header {
    padding: 15px;
  }
  
  .disclaimer-header h2 {
    font-size: 20px;
  }
  
  .disclaimer-body {
    padding: 20px;
    max-height: 50vh;
  }
  
  .disclaimer-footer {
    padding: 15px 20px;
  }
  
  .disclaimer-btn {
    padding: 10px 25px;
    font-size: 14px;
  }
}
.highlight {
  color: #FFD700;
  font-weight: bold;
}
footer {
  color: var(--text-muted);
  font-size: 14px;
}
.hero-bar {
  width: 90%;
  border: none;
  border-top: 4px solid gold;
  margin-bottom: 24px;
  margin-top: 0;
}

.hero-image {
  display: block;
  margin: 0 auto;
}

.hero-cta {
  display: inline-block;
  margin-top: 20px;
}

.story-headlines {
  text-align: center;
  margin-top: 50px;
}
.story-headlines h2:first-child {
  margin-bottom: 0.2em;
  padding-top: 0;
  padding-bottom: 0.2em;
}
.tommy-intro {
  padding-top: 32px;
}
.hero-center {
  text-align: center;
  margin-bottom: -150px;
}

.centered-img {
  display: block;
  margin: 0 auto;
}
.centered-heading {
  text-align: center;
}

.cta-margin-large{
  margin-left: 100px;
  margin-bottom: 100px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 24px 0 8px 0;
}

.social-links a {
  color: #d4af37;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.1em;
  transition: color 0.2s;
}

.social-links button {
  background: none;
  border: none;
  color: #d4af37;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.1em;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s;
  font-family: inherit;
}

.social-links a:hover,
.social-links button:hover {
  color: #b8860b;
  text-decoration: underline;
}

.hamburger{
  font-size: 2rem;
  cursor:pointer;
  position: absolute;
  top: 30px;
  right: 20px;
  z-index: 102;
  display:none; /* Hidden on desktop by default */
}

.close-menu {
  font-size: 2rem;
  cursor: pointer;
  position: absolute;
  top: 30px;
  right: 20px;
  z-index: 102;
  display: none; /* Hidden by default */
}

#menu-toggle {
  display: none;
}

#mobile-cta-bar {
  display: none;
}

.faq-section {
  max-width: 600px;
  margin: 32px auto;
  padding: 20px;
  background: var(--bg-primary);
  text-align: center;
  transition: background-color 0.3s ease;
}
.faq-item {
  border-bottom: 1px solid var(--accent-gold-border);
}
.faq-question {
  width: 100%;
  text-align: center;
  background: none;
  border: none;
  font-size: 1.1em;
  font-weight: 600;
  padding: 16px 0;
  color: var(--text-muted);
  cursor: pointer;
  outline: none;
  transition: color 0.2s;
}
.faq-question[aria-expanded="true"] {
  color: var(--accent-gold);
}
.faq-answer {
  padding: 0 0 16px 0;
  color: var(--text-muted);
  font-size: 14px;
  background: none;
  text-align: center;
}


/* Responsive Design */
@media (max-width: 600px) {

  /*
    h1, h2, h3, h4, h5, h6 {
      text-wrap: balance;
    }
  */
  nav a {
 padding: 32px 0 24px 0; /* top, right, bottom, left */
    /* Add more if you want more space on the sides: */
    /* padding: 32px 20px 24px 20px; */
  }

  #story, #enroll {
    padding-top: 0px; /* Adjusts padding for the story section on mobile */
  }

  .hero h1 {
    font-size: 2em;
  }
  .hero {
    padding: 20px 10px;
    margin-bottom: 12px;
    padding-top: 10px;
  }
  section {
    padding: 40px 10px;
  }

  .testimonial-grid {
    flex-direction: column;
    gap: 16px;
  }

  /* Mobile Video Player Enhancements */
  .testimonial-item {
    max-width: 100%;
    margin: 0 auto 20px auto;
  }

  .testimonial-item video {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }

  .video-container {
    max-width: 100%;
    border-radius: 8px;
    margin-bottom: 20px;
  }

  /* Optimize video controls for touch */
  .testimonial-item video::-webkit-media-controls {
    border-radius: 8px;
  }

  .testimonial-item video::-webkit-media-controls-panel {
    background: rgba(0, 0, 0, 0.8);
  }
  .social-links {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 12px;
    margin: 24px 0 8px 0;
    display: flex;
  }

  .hero-bar {
    width: 100%;
  }
  .hero-image {
    width: 100%;
    max-width: 320px;
    height: auto;
  }
  .centered-img,
  .centered-img-img {
    width: 100%;
    /*max-width: 320px;*/
    height: auto;
    display: block;
    margin: 0 auto;
  }
  .hero-center {
    margin-bottom: 0px; /* Pushes content below the image down on mobile */
  }
  .hero-cta {
    margin-top: 32px; /* Adds space above the "Get Started" button */
  }
  .cta-margin-large {
    display: block;
    margin: 32px auto 32px auto; /* top, right/left, bottom */
    text-align: center;
    max-width: 70%;
  }
  /* Make all images responsive */
img {
  max-width: 100%;
  height: auto;
}

nav{
  display:flex;
}

  .hamburger {
    display: block !important;  /* Force show hamburger on mobile */
    position: relative !important;
    top: auto !important;
    right: auto !important;
    z-index: 1002 !important;
    background: rgba(255, 215, 0, 0.1);
    padding: 8px 10px;
    border-radius: 5px;
    color: #FFD700;
    border: 1px solid rgba(255, 215, 0, 0.3);
    margin: 0;
    font-size: 1.2em;
    min-width: 40px;
    text-align: center;
    flex-shrink: 0;
  }

  .close-menu {
    display: none;
    position: relative !important;
    top: auto !important;
    right: auto !important;
    z-index: 1002 !important;
    background: var(--accent-gold-light);
    padding: 8px 10px;
    border-radius: 5px;
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold-border);
    margin: 0;
    font-size: 1.2em;
    min-width: 40px;
    text-align: center;
    flex-shrink: 0;
    order: 3; /* Hamburger last */
  }

  nav {
    display: none;
    flex-direction: column;
    background: var(--bg-primary);
    width: 100%;
    left: 0;
    z-index: 1000;
    padding: 80px 0 1em 0;
    text-align: center;
    position: fixed !important;
    top: 0;
    box-shadow: 0 2px 20px var(--shadow-dark);
  }

  /* Mobile Header - Truly Fixed and Sticky */
  header {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--bg-primary) !important;
    backdrop-filter: none;
    border-bottom: 2px solid var(--accent-gold-border);
    z-index: 1001;
    box-shadow: 0 2px 15px var(--shadow-dark);
    padding: 12px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    gap: 10px; /* Add space between elements */
  }

  header.scrolled {
    padding: 10px 15px;
    background: var(--bg-primary) !important;
    box-shadow: 0 2px 20px var(--shadow-dark);
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 60px !important;
  }

  /* Hamburger menu positioning within header */
  .hamburger, .close-menu {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    z-index: 1002 !important;
    background: var(--accent-gold-light);
    padding: 8px 10px;
    border-radius: 5px;
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold-border);
    margin: 0;
    font-size: 1.2em;
    min-width: 40px;
    text-align: center;
    flex-shrink: 0;
    order: 3; /* Hamburger last */
  }

  .hamburger:hover, .close-menu:hover {
    background: var(--accent-gold-light);
    color: var(--accent-gold-hover);
  }

  /* Mobile logo/title */
  .mobile-logo {
    display: block;
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 1.1em;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    order: 1; /* Logo first */
  }

  /* Hide mobile logo on desktop */
  @media (min-width: 601px) {
    .mobile-logo {
      display: none;
    }
  }

  #menu-toggle:checked ~ nav {
    display: flex;            /* Show menu when hamburger checked */
  }

  #menu-toggle:checked ~ .hamburger {
    display: none;
  }
  #menu-toggle:checked ~ .close-menu {
    display: block;
  }

  #mobile-cta-bar {
    display: flex;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background: #FFD700;
    color: #0a0a0a;
    justify-content: center;
    align-items: center;
    padding: 16px 0;
    z-index: 9999;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.12);
  }
  #mobile-cta-bar a {
    color: #0a0a0a;
    font-weight: 700;
    font-size: 1.2em;
    text-decoration: none;
    padding: 0 24px;
    border-radius: 24px;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
  #mobile-cta-bar a:hover {
    background: var(--bg-primary);
    color: var(--accent-gold);
    transform: scale(1.02);
  }
  
  #mobile-cta-bar a:active {
    transform: scale(0.98);
  }
  
  /* Add subtle pulse animation hint for double-click */
  #mobile-cta-bar a::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
  }

  /* Countdown Timer Mobile Styles */
  .countdown-section {
    padding: 30px 15px;
    margin: 20px 0;
  }
  
  .countdown-section h3 {
    font-size: 1.5em;
  }
  
  .countdown-container {
    gap: 15px;
  }
  
  .countdown-item {
    padding: 15px 10px;
    min-width: 70px;
  }
  
  .countdown-number {
    font-size: 2em;
  }
  
  .countdown-label {
    font-size: 0.8em;
  }

  /* Exit Intent Popup Mobile Styles */
  .exit-popup {
    width: 95%;
    max-height: 95%;
  }
  
  .exit-popup-content {
    padding: 30px 20px 20px;
  }
  
  .exit-popup-content h2 {
    font-size: 1.5em;
  }
  
  .exit-popup-offer h3 {
    font-size: 1.5em;
    padding: 12px 15px;
  }
  
  .exit-popup-offer p {
    font-size: 1em;
  }
  
  .exit-popup-benefits li {
    font-size: 1em;
  }
  
  .exit-popup-button {
    padding: 15px 25px;
    font-size: 1.1em;
  }

  /* Back to Top Button Mobile Styles */
  .back-to-top {
    bottom: 80px; /* Above mobile CTA bar */
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 1.3em;
  }

}



