/**
 * Busch Gardens Premium Theme
 * Professional, modern design inspired by official branding
 */

/* ===== CSS VARIABLES ===== */
:root {
  /* Brand Colors - Busch Gardens */
  --bg-primary: #1B5E20;
  --bg-primary-dark: #0D3D10;
  --bg-primary-light: #2E7D32;
  --bg-accent: #FF6F00;
  --bg-accent-dark: #E65100;
  --bg-gold: #FFC107;
  --bg-red: #D32F2F;
  --bg-blue: #1565C0;
  
  /* Neutrals */
  --bg-white: #ffffff;
  --bg-off-white: #fafafa;
  --bg-cream: #f5f5f5;
  --bg-gray-100: #f8f9fa;
  --bg-gray-200: #e9ecef;
  --bg-gray-300: #dee2e6;
  --bg-gray-500: #6c757d;
  --bg-gray-700: #495057;
  --bg-gray-900: #212529;
  --bg-black: #0a0a0a;
  
  /* Typography */
  --bg-font-primary: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --bg-font-display: 'Playfair Display', Georgia, serif;
  
  /* Spacing */
  --bg-container: 1200px;
  --bg-gap: 24px;
  
  /* Shadows */
  --bg-shadow-sm: 0 2px 8px rgba(0,0,0,.08);
  --bg-shadow-md: 0 4px 16px rgba(0,0,0,.12);
  --bg-shadow-lg: 0 8px 32px rgba(0,0,0,.16);
  --bg-shadow-xl: 0 16px 48px rgba(0,0,0,.2);
  
  /* Transitions */
  --bg-ease: cubic-bezier(.4,0,.2,1);
  --bg-duration: .3s;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--bg-font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--bg-gray-900);
  background: var(--bg-white);
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; transition: all var(--bg-duration) var(--bg-ease); }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ===== CONTAINER ===== */
.bg-container {
  width: 100%;
  max-width: var(--bg-container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== PROMO BANNER ===== */
.bg-promo-banner {
  background: linear-gradient(90deg, #b71c1c, var(--bg-red), #c62828, var(--bg-red), #b71c1c);
  background-size: 200% 100%;
  animation: gradientShift 4s ease infinite;
  color: var(--bg-white);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.bg-promo-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.1), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes glow {
  0%, 100% { box-shadow: 0 0 20px rgba(255, 193, 7, 0.3); }
  50% { box-shadow: 0 0 40px rgba(255, 193, 7, 0.6); }
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes bounceIn {
  0% { transform: scale(0.3); opacity: 0; }
  50% { transform: scale(1.05); }
  70% { transform: scale(0.9); }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes slideInFromBottom {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Animate on scroll utility classes */
.animate-fade-in-up {
  animation: fadeInUp 0.8s var(--bg-ease) forwards;
}

.animate-fade-in-left {
  animation: fadeInLeft 0.8s var(--bg-ease) forwards;
}

.animate-fade-in-right {
  animation: fadeInRight 0.8s var(--bg-ease) forwards;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}

/* Staggered animation delays */
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }

.bg-promo-banner__icon { font-size: 20px; }

.bg-promo-banner__text {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.bg-promo-banner__discount {
  background: linear-gradient(135deg, var(--bg-gold) 0%, #ffb300 100%);
  color: var(--bg-gray-900);
  padding: 6px 16px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .3px;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 2px 10px rgba(255, 193, 7, 0.4);
}

.bg-promo-banner__timer {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  background: rgba(0,0,0,.2);
  padding: 6px 12px;
  border-radius: 6px;
}

.bg-promo-banner__timer span:last-child {
  font-family: 'SF Mono', Monaco, monospace;
  font-weight: 700;
  font-size: 14px;
  min-width: 48px;
}

/* ===== HEADER ===== */
.bg-header {
  background: var(--bg-white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--bg-shadow-sm);
  border-bottom: 1px solid var(--bg-gray-200);
}

.bg-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 20px;
}

.bg-header__logo img {
  height: 48px;
  width: auto;
}

.bg-header__nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.bg-header__link {
  font-weight: 600;
  font-size: 14px;
  color: var(--bg-gray-700);
  padding: 10px 16px;
  border-radius: 8px;
  transition: all var(--bg-duration) var(--bg-ease);
}

.bg-header__link:hover {
  color: var(--bg-primary);
  background: var(--bg-gray-100);
}

.bg-header__link--active {
  color: var(--bg-primary-dark);
  font-weight: 700;
}

.bg-header__actions { display: flex; align-items: center; gap: 12px; }

.bg-header__menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  padding: 4px;
}

.bg-header__menu span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--bg-gray-700);
  border-radius: 2px;
  transition: all var(--bg-duration) var(--bg-ease);
}

/* ===== BUTTONS ===== */
.bg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  border-radius: 8px;
  padding: 12px 24px;
  transition: all var(--bg-duration) var(--bg-ease);
  white-space: nowrap;
}

.bg-btn--primary {
  background: linear-gradient(135deg, var(--bg-accent) 0%, var(--bg-accent-dark) 100%);
  color: var(--bg-white);
  box-shadow: 0 4px 12px rgba(255, 111, 0, .3);
}

.bg-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 111, 0, .4);
}

.bg-btn--secondary {
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-primary-dark) 100%);
  color: var(--bg-white);
  box-shadow: 0 4px 12px rgba(27, 94, 32, .3);
}

.bg-btn--secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(27, 94, 32, .4);
}

.bg-btn--outline {
  background: transparent;
  color: var(--bg-primary);
  border: 2px solid var(--bg-primary);
}

.bg-btn--outline:hover {
  background: var(--bg-primary);
  color: var(--bg-white);
}

.bg-btn--sm { padding: 8px 16px; font-size: 13px; }
.bg-btn--lg { padding: 16px 32px; font-size: 16px; }

/* ===== HERO SECTION ===== */
.bg-hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--bg-primary-dark) 0%, #0d3d0d 100%);
  overflow: hidden;
}

.bg-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.bg-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .35;
}

.bg-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27,94,32,.9) 0%, rgba(0,0,0,.7) 100%);
}

.bg-hero__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 60px 0;
}

.bg-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(10px);
  color: var(--bg-gold);
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(255,255,255,.2);
  animation: fadeInUp 0.8s var(--bg-ease) forwards, glow 3s ease-in-out infinite;
}

.bg-hero__title {
  font-family: var(--bg-font-display);
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 700;
  color: var(--bg-white);
  line-height: 1.1;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s var(--bg-ease) 0.1s forwards;
  opacity: 0;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.bg-hero__title span {
  display: block;
  color: var(--bg-gold);
  font-size: clamp(28px, 4vw, 40px);
}

.bg-hero__subtitle {
  font-size: 18px;
  color: rgba(255,255,255,.85);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 600px;
  animation: fadeInUp 0.8s var(--bg-ease) 0.2s forwards;
  opacity: 0;
}

.bg-hero__locations {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  animation: fadeInUp 0.8s var(--bg-ease) 0.3s forwards;
  opacity: 0;
}

.bg-location-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255,255,255,.2);
  padding: 16px 24px;
  border-radius: 16px;
  color: var(--bg-white);
  transition: all var(--bg-duration) var(--bg-ease);
  min-width: 200px;
  position: relative;
  overflow: hidden;
}

.bg-location-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
  transition: left 0.5s ease;
}

.bg-location-btn:hover::before {
  left: 100%;
}

.bg-location-btn:hover {
  background: rgba(255,255,255,.2);
  transform: translateY(-4px) scale(1.02);
  border-color: var(--bg-gold);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.bg-location-btn__icon { font-size: 28px; }

.bg-location-btn__info {
  display: flex;
  flex-direction: column;
  text-align: left;
  flex: 1;
}

.bg-location-btn__name {
  font-weight: 700;
  font-size: 16px;
}

.bg-location-btn__state {
  font-size: 13px;
  opacity: .8;
}

.bg-location-btn__arrow {
  font-size: 20px;
  opacity: .7;
}

.bg-hero__features {
  display: flex;
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.15);
  animation: fadeInUp 0.8s var(--bg-ease) 0.4s forwards;
  opacity: 0;
}

.bg-hero__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.9);
  font-size: 14px;
  font-weight: 500;
}

.bg-hero__feature-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-gold);
  color: var(--bg-gray-900);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
}

/* ===== SECTIONS ===== */
.bg-section {
  padding: 80px 0;
}

.bg-section--alt { background: var(--bg-cream); }
.bg-section--dark { background: var(--bg-primary-dark); color: var(--bg-white); }

.bg-section__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

.bg-section__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--bg-accent);
  margin-bottom: 12px;
}

.bg-section__title {
  font-family: var(--bg-font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--bg-gray-900);
  margin-bottom: 16px;
}

.bg-section--dark .bg-section__title { color: var(--bg-white); }

.bg-section__subtitle {
  font-size: 17px;
  color: var(--bg-gray-500);
  line-height: 1.7;
}

.bg-section--dark .bg-section__subtitle { color: rgba(255,255,255,.7); }

/* ===== LOCATION CARDS ===== */
.bg-locations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.bg-location-card {
  background: var(--bg-white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  transition: all 0.4s var(--bg-ease);
  position: relative;
  border: 1px solid rgba(0,0,0,0.05);
}

.bg-location-card:hover {
  transform: translateY(-12px) scale(1.01);
  box-shadow: 0 25px 60px rgba(0,0,0,0.18);
}

.bg-location-card:hover .bg-location-card__image img {
  transform: scale(1.08);
}

.bg-location-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--bg-primary);
  color: var(--bg-white);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  z-index: 2;
}

.bg-location-card__discount {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, #ff1744 0%, var(--bg-red) 100%);
  color: var(--bg-white);
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 800;
  z-index: 2;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 4px 15px rgba(211, 47, 47, 0.4);
}

.bg-location-card__image {
  position: relative;
  height: 240px;
  background: linear-gradient(135deg, var(--bg-primary-dark), var(--bg-primary));
  overflow: hidden;
}

.bg-location-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--bg-ease);
}

.bg-location-card__image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
  pointer-events: none;
}

.bg-location-card__body { padding: 28px; }

.bg-location-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.bg-location-card__icon { font-size: 40px; }

.bg-location-card__title {
  font-family: var(--bg-font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--bg-gray-900);
}

.bg-location-card__state {
  font-size: 14px;
  color: var(--bg-gray-500);
  font-weight: 500;
}

.bg-location-card__desc {
  font-size: 15px;
  color: var(--bg-gray-600);
  margin-bottom: 20px;
  line-height: 1.6;
}

.bg-location-card__features {
  list-style: none;
  margin-bottom: 24px;
}

.bg-location-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--bg-gray-700);
  padding: 8px 0;
}

.bg-location-card__features li::before {
  content: '✓';
  color: var(--bg-primary);
  font-weight: 700;
}

.bg-location-card__pricing {
  border-top: 1px solid var(--bg-gray-200);
  padding-top: 20px;
  margin-bottom: 20px;
}

.bg-location-card__price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--bg-gray-600);
}

.bg-location-card__price-value {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bg-location-card__price-original {
  font-size: 14px;
  color: var(--bg-gray-400);
  text-decoration: line-through;
}

.bg-location-card__price-current {
  font-size: 24px;
  font-weight: 800;
  color: var(--bg-red);
}

.bg-location-card__cta {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, var(--bg-accent) 0%, var(--bg-accent-dark) 100%);
  color: var(--bg-white);
  font-weight: 700;
  font-size: 15px;
  border-radius: 14px;
  transition: all var(--bg-duration) var(--bg-ease);
  box-shadow: 0 6px 20px rgba(255, 111, 0, .3);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bg-location-card__cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.3), transparent);
  transition: left 0.5s ease;
}

.bg-location-card__cta:hover::before {
  left: 100%;
}

.bg-location-card__cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(255, 111, 0, .45);
}

/* ===== TICKET CARDS ===== */
.bg-tickets {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.bg-ticket {
  background: var(--bg-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transition: all 0.4s var(--bg-ease);
  position: relative;
  border: 1px solid rgba(0,0,0,0.04);
}

.bg-ticket:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.bg-ticket:hover .bg-ticket__image img {
  transform: scale(1.1);
}

.bg-ticket__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--bg-primary);
  color: var(--bg-white);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  z-index: 2;
}

.bg-ticket__badge--hot { background: var(--bg-red); }
.bg-ticket__badge--vip { background: var(--bg-gold); color: var(--bg-gray-900); }

.bg-ticket__discount {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--bg-red);
  color: var(--bg-white);
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  z-index: 2;
}

.bg-ticket__image {
  position: relative;
  height: 180px;
  background: linear-gradient(135deg, var(--bg-primary-dark), var(--bg-primary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  overflow: hidden;
}

.bg-ticket__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--bg-ease);
}

.bg-ticket__image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0,0,0,0.2), transparent);
  pointer-events: none;
}

.bg-ticket__body { padding: 24px; }

.bg-ticket__icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.bg-ticket__title {
  font-family: var(--bg-font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--bg-gray-900);
  margin-bottom: 8px;
}

.bg-ticket__desc {
  font-size: 14px;
  color: var(--bg-gray-500);
  margin-bottom: 16px;
}

.bg-ticket__features {
  list-style: none;
  margin-bottom: 20px;
}

.bg-ticket__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--bg-gray-700);
  padding: 6px 0;
}

.bg-ticket__feature::before {
  content: '✓';
  color: var(--bg-primary);
  font-weight: 700;
}

.bg-ticket__pricing { 
  border-top: 1px solid var(--bg-gray-200);
  padding-top: 16px;
  margin-bottom: 16px;
}

.bg-ticket__price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}

.bg-ticket__price-label {
  font-size: 13px;
  color: var(--bg-gray-600);
}

.bg-ticket__price-value {
  display: flex;
  align-items: center;
  gap: 8px;
}

.bg-ticket__price-original {
  font-size: 13px;
  color: var(--bg-gray-400);
  text-decoration: line-through;
}

.bg-ticket__price-current {
  font-size: 20px;
  font-weight: 800;
  color: var(--bg-red);
}

.bg-ticket__cta {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-primary-dark) 100%);
  color: var(--bg-white);
  font-weight: 700;
  font-size: 14px;
  border-radius: 12px;
  transition: all var(--bg-duration) var(--bg-ease);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(27, 94, 32, 0.25);
}

.bg-ticket__cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
  transition: left 0.5s ease;
}

.bg-ticket__cta:hover::before {
  left: 100%;
}

.bg-ticket__cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(27, 94, 32, 0.35);
}

/* ===== EXPERIENCE GRID ===== */
.bg-experiences {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.bg-experience {
  background: var(--bg-white);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.4s var(--bg-ease);
  border: 1px solid rgba(0,0,0,0.04);
  position: relative;
  overflow: hidden;
}

.bg-experience::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--bg-primary), var(--bg-accent));
  transform: scaleX(0);
  transition: transform 0.4s var(--bg-ease);
}

.bg-experience:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.bg-experience:hover::before {
  transform: scaleX(1);
}

.bg-experience:hover .bg-experience__icon {
  transform: scale(1.15) rotate(5deg);
}

.bg-experience__icon {
  font-size: 48px;
  margin-bottom: 20px;
  transition: transform 0.4s var(--bg-ease);
  display: inline-block;
}

.bg-experience__title {
  font-weight: 700;
  font-size: 18px;
  color: var(--bg-gray-900);
  margin-bottom: 10px;
}

.bg-experience__desc {
  font-size: 14px;
  color: var(--bg-gray-500);
  line-height: 1.6;
}

/* ===== BENEFITS ===== */
.bg-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.bg-benefit {
  text-align: center;
  padding: 32px 24px;
  border-radius: 20px;
  transition: all 0.4s var(--bg-ease);
  background: rgba(255,255,255,0.6);
}

.bg-benefit:hover {
  background: var(--bg-white);
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.bg-benefit:hover .bg-benefit__icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 12px 30px rgba(255, 111, 0, .4);
}

.bg-benefit__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--bg-accent), var(--bg-accent-dark));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 10px 30px rgba(255, 111, 0, .3);
  transition: all 0.4s var(--bg-ease);
}

.bg-benefit__title {
  font-weight: 700;
  font-size: 16px;
  color: var(--bg-gray-900);
  margin-bottom: 8px;
}

.bg-benefit__desc {
  font-size: 14px;
  color: var(--bg-gray-500);
}

/* ===== HOW IT WORKS ===== */
.bg-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  align-items: start;
}

.bg-step {
  text-align: center;
  position: relative;
  padding: 24px;
  border-radius: 20px;
  transition: all 0.4s var(--bg-ease);
}

.bg-step:hover {
  background: var(--bg-white);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.bg-step:hover .bg-step__number {
  transform: scale(1.15);
  box-shadow: 0 10px 30px rgba(27, 94, 32, 0.3);
}

.bg-step__number {
  width: 56px;
  height: 56px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-primary-dark) 100%);
  color: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(27, 94, 32, 0.25);
  transition: all 0.4s var(--bg-ease);
}

.bg-step__title {
  font-weight: 700;
  font-size: 16px;
  color: var(--bg-gray-900);
  margin-bottom: 8px;
}

.bg-step__desc {
  font-size: 14px;
  color: var(--bg-gray-500);
}

.bg-step__arrow {
  position: absolute;
  right: -32px;
  top: 24px;
  color: var(--bg-gray-300);
  font-size: 20px;
}

.bg-step:last-child .bg-step__arrow { display: none; }

/* ===== CTA SECTION ===== */
.bg-cta {
  background: linear-gradient(135deg, var(--bg-primary-dark) 0%, #0a2e0a 50%, var(--bg-primary-dark) 100%);
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.bg-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255,193,7,0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 50%, rgba(255,111,0,0.1) 0%, transparent 50%);
  pointer-events: none;
}

.bg-cta__title {
  font-family: var(--bg-font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--bg-white);
  margin-bottom: 16px;
}

.bg-cta__subtitle {
  font-size: 18px;
  color: rgba(255,255,255,.8);
  margin-bottom: 32px;
}

.bg-cta__timer {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,.1);
  padding: 12px 24px;
  border-radius: 100px;
  color: var(--bg-white);
  font-size: 14px;
  margin-bottom: 32px;
  border: 1px solid rgba(255,255,255,.2);
}

.bg-cta__timer-value {
  font-family: 'SF Mono', Monaco, monospace;
  font-weight: 700;
  font-size: 18px;
  color: var(--bg-gold);
}

.bg-cta__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.bg-footer {
  background: linear-gradient(180deg, var(--bg-gray-900) 0%, #0a0a0a 100%);
  color: var(--bg-white);
  padding: 80px 0 32px;
  position: relative;
}

.bg-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,193,7,0.3), transparent);
}

.bg-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.bg-footer__brand img,
.bg-footer__logo {
  height: 56px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
  transition: all 0.3s var(--bg-ease);
}

.bg-footer__brand:hover img {
  transform: scale(1.05);
  filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255,193,7,0.3));
}

.bg-footer__desc {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
}

.bg-footer__title {
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: var(--bg-white);
}

.bg-footer__links {
  list-style: none;
}

.bg-footer__link {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,.6);
  padding: 6px 0;
  transition: color var(--bg-duration) var(--bg-ease);
}

a.bg-footer__link:hover { color: var(--bg-gold); }

.bg-footer__bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.bg-footer__copy {
  font-size: 13px;
  color: rgba(255,255,255,.5);
}

.bg-footer__payments {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: rgba(255,255,255,.6);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .bg-locations-grid { grid-template-columns: 1fr; }
  .bg-experiences, .bg-benefits, .bg-steps { grid-template-columns: repeat(2, 1fr); }
  .bg-footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .bg-header__nav { 
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-white);
    flex-direction: column;
    padding: 16px;
    box-shadow: var(--bg-shadow-lg);
  }
  .bg-header__nav.is-open { display: flex; }
  .bg-header__menu { display: flex; }
  
  .bg-hero { min-height: 500px; }
  .bg-hero__content { padding: 40px 0; }
  .bg-hero__locations { flex-direction: column; }
  .bg-hero__features { flex-direction: column; gap: 16px; }
  
  .bg-section { padding: 60px 0; }
  
  .bg-experiences, .bg-benefits, .bg-steps { grid-template-columns: 1fr; }
  .bg-tickets { grid-template-columns: 1fr; }
  
  .bg-step__arrow { display: none !important; }
  
  .bg-footer__grid { grid-template-columns: 1fr; text-align: center; }
  .bg-footer__bottom { justify-content: center; text-align: center; }
}

@media (max-width: 480px) {
  /* Promo Banner - More compact and elegant */
  .bg-promo-banner { 
    padding: 10px 16px; 
    gap: 6px;
    flex-direction: column;
  }
  .bg-promo-banner__icon { font-size: 16px; display: none; }
  .bg-promo-banner__text { 
    font-size: 11px; 
    letter-spacing: 0.8px;
  }
  .bg-promo-banner__discount {
    padding: 5px 12px;
    font-size: 11px;
    border-radius: 4px;
  }
  .bg-promo-banner__timer {
    padding: 4px 10px;
    font-size: 11px;
    border-radius: 4px;
    gap: 6px;
  }
  .bg-promo-banner__timer span:last-child {
    font-size: 12px;
    min-width: 40px;
  }
  
  /* Header - Cleaner mobile look */
  .bg-header__inner {
    padding: 10px 16px;
  }
  .bg-header__logo img { height: 36px; }
  .bg-header__actions .bg-btn {
    padding: 10px 16px;
    font-size: 12px;
    border-radius: 8px;
  }
  .bg-header__menu {
    padding: 8px;
    gap: 4px;
  }
  .bg-header__menu span {
    height: 2px;
    width: 20px;
  }
  
  /* Hero Section - Premium mobile layout */
  .bg-hero { 
    min-height: auto; 
    padding: 0;
  }
  .bg-hero__content { 
    padding: 32px 0 40px; 
    text-align: center; 
    max-width: 100%;
  }
  .bg-hero__badge { 
    padding: 8px 16px; 
    font-size: 11px; 
    margin-bottom: 16px;
    border-radius: 50px;
    animation: fadeInUp 0.6s var(--bg-ease) forwards;
  }
  .bg-hero__badge span:first-child {
    font-size: 14px;
  }
  .bg-hero__title { 
    font-size: 32px; 
    margin-bottom: 8px;
    line-height: 1.15;
  }
  .bg-hero__title span { 
    font-size: 22px;
    margin-top: 4px;
  }
  .bg-hero__subtitle { 
    font-size: 14px; 
    margin-bottom: 24px; 
    line-height: 1.6;
    padding: 0 8px;
    color: rgba(255,255,255,.8);
  }
  
  /* Location Buttons - Card-like mobile style */
  .bg-hero__locations {
    gap: 12px;
    padding: 0 4px;
  }
  .bg-location-btn { 
    min-width: unset; 
    width: 100%;
    padding: 16px 20px;
    border-radius: 14px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.18);
  }
  .bg-location-btn__icon {
    font-size: 32px;
  }
  .bg-location-btn__name {
    font-size: 17px;
  }
  .bg-location-btn__state {
    font-size: 12px;
  }
  .bg-location-btn__arrow {
    font-size: 18px;
    background: rgba(255,255,255,.15);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Feature Pills - Horizontal scroll or compact grid */
  .bg-hero__features {
    gap: 10px;
    padding-top: 20px;
    margin-top: 8px;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .bg-hero__feature {
    font-size: 12px;
    gap: 6px;
    justify-content: center;
    background: rgba(255,255,255,.08);
    padding: 10px 12px;
    border-radius: 10px;
  }
  .bg-hero__feature-icon {
    width: 20px;
    height: 20px;
    font-size: 10px;
  }
  
  /* Section Headers */
  .bg-section { padding: 48px 0; }
  .bg-section__header { margin-bottom: 32px; }
  .bg-section__label { 
    font-size: 11px; 
    letter-spacing: 1.2px;
    margin-bottom: 8px;
  }
  .bg-section__title { 
    font-size: 26px;
    margin-bottom: 12px;
  }
  .bg-section__subtitle { 
    font-size: 14px;
    padding: 0 8px;
  }
  
  /* Location Cards */
  .bg-location-card {
    border-radius: 18px;
    margin: 0 4px;
  }
  .bg-location-card__image {
    height: 180px;
  }
  .bg-location-card__badge {
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    font-size: 10px;
  }
  .bg-location-card__discount {
    top: 12px;
    right: 12px;
    padding: 8px 10px;
    font-size: 13px;
  }
  .bg-location-card__body {
    padding: 20px;
  }
  .bg-location-card__icon {
    font-size: 32px;
  }
  .bg-location-card__title {
    font-size: 24px;
  }
  .bg-location-card__desc {
    font-size: 14px;
  }
  .bg-location-card__features li {
    font-size: 13px;
    padding: 6px 0;
  }
  .bg-location-card__cta {
    padding: 16px;
    font-size: 14px;
    border-radius: 12px;
  }
  
  /* Ticket Cards */
  .bg-ticket {
    border-radius: 16px;
    margin: 0 4px;
  }
  .bg-ticket__image {
    height: 140px;
  }
  .bg-ticket__body {
    padding: 20px;
  }
  .bg-ticket__icon {
    font-size: 24px;
    margin-bottom: 8px;
  }
  .bg-ticket__title {
    font-size: 20px;
  }
  .bg-ticket__cta {
    padding: 14px;
    font-size: 13px;
  }
  
  /* Experience Cards */
  .bg-experience {
    padding: 24px 20px;
    border-radius: 16px;
    margin: 0 4px;
  }
  .bg-experience__icon {
    font-size: 36px;
    margin-bottom: 12px;
  }
  .bg-experience__title {
    font-size: 16px;
  }
  .bg-experience__desc {
    font-size: 13px;
  }
  
  /* Benefit Cards */
  .bg-benefit {
    padding: 24px 16px;
    border-radius: 16px;
  }
  .bg-benefit__icon {
    width: 56px;
    height: 56px;
    font-size: 24px;
    border-radius: 14px;
    margin-bottom: 16px;
  }
  .bg-benefit__title {
    font-size: 15px;
  }
  .bg-benefit__desc {
    font-size: 13px;
  }
  
  /* Steps */
  .bg-step {
    padding: 20px 16px;
  }
  .bg-step__number {
    width: 48px;
    height: 48px;
    font-size: 18px;
    margin-bottom: 16px;
  }
  .bg-step__title {
    font-size: 15px;
  }
  .bg-step__desc {
    font-size: 13px;
  }
  
  /* CTA Section */
  .bg-cta {
    padding: 60px 0;
  }
  .bg-cta__title {
    font-size: 26px;
    padding: 0 16px;
  }
  .bg-cta__subtitle {
    font-size: 14px;
    padding: 0 16px;
  }
  .bg-cta__timer {
    padding: 10px 20px;
    font-size: 12px;
    gap: 8px;
  }
  .bg-cta__timer-value {
    font-size: 16px;
  }
  .bg-cta__buttons { 
    flex-direction: column; 
    width: 100%; 
    padding: 0 16px;
    gap: 12px;
  }
  .bg-cta__buttons .bg-btn { 
    width: 100%;
    padding: 16px 24px;
    font-size: 14px;
  }
  
  /* Footer */
  .bg-footer { 
    padding: 48px 0 24px;
  }
  .bg-footer__grid {
    gap: 32px;
    margin-bottom: 32px;
  }
  .bg-footer__brand img { 
    height: 44px; 
    margin: 0 auto 16px;
  }
  .bg-footer__desc {
    font-size: 13px;
    padding: 0 16px;
  }
  .bg-footer__title {
    font-size: 13px;
    margin-bottom: 16px;
  }
  .bg-footer__link {
    font-size: 13px;
    padding: 5px 0;
  }
  .bg-footer__bottom {
    flex-direction: column;
    gap: 12px;
    padding-top: 20px;
  }
  .bg-footer__copy {
    font-size: 11px;
  }
  .bg-footer__payments {
    font-size: 11px;
    gap: 8px;
  }
}
