/**
 * Kirstenbosch Botanical Garden Premium Theme
 */

:root {
  --kb-primary: #2E7D32;
  --kb-primary-dark: #1B5E20;
  --kb-primary-light: #43A047;
  --kb-accent: #FF6F00;
  --kb-accent-dark: #E65100;
  --kb-gold: #FFC107;
  --kb-red: #D32F2F;
  --kb-blue: #1565C0;
  --kb-teal: #00695C;

  --kb-white: #ffffff;
  --kb-off-white: #fafafa;
  --kb-cream: #f5f5f0;
  --kb-gray-100: #f8f9fa;
  --kb-gray-200: #e9ecef;
  --kb-gray-300: #dee2e6;
  --kb-gray-500: #6c757d;
  --kb-gray-600: #545b62;
  --kb-gray-700: #495057;
  --kb-gray-900: #212529;
  --kb-black: #0a0a0a;

  --kb-font-primary: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --kb-font-display: 'Playfair Display', Georgia, serif;

  --kb-container: 1200px;
  --kb-gap: 24px;

  --kb-shadow-sm: 0 2px 8px rgba(0,0,0,.08);
  --kb-shadow-md: 0 4px 16px rgba(0,0,0,.12);
  --kb-shadow-lg: 0 8px 32px rgba(0,0,0,.16);
  --kb-shadow-xl: 0 16px 48px rgba(0,0,0,.2);

  --kb-ease: cubic-bezier(.4,0,.2,1);
  --kb-duration: .3s;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--kb-font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--kb-gray-900);
  background: var(--kb-white);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: all var(--kb-duration) var(--kb-ease); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.kb-container {
  width: 100%;
  max-width: var(--kb-container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== ANIMATIONS ===== */
@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 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%; }
}

/* ===== PROMO BANNER ===== */
.kb-promo-banner {
  background: linear-gradient(90deg, #1B5E20, var(--kb-primary), #2E7D32, var(--kb-primary), #1B5E20);
  background-size: 200% 100%;
  animation: gradientShift 4s ease infinite;
  color: var(--kb-white);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.kb-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;
}
.kb-promo-banner__icon { font-size: 20px; }
.kb-promo-banner__text {
  font-weight: 700; font-size: 13px;
  letter-spacing: .5px; text-transform: uppercase;
}
.kb-promo-banner__discount {
  background: linear-gradient(135deg, var(--kb-gold) 0%, #ffb300 100%);
  color: var(--kb-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);
}
.kb-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;
}
.kb-promo-banner__timer span:last-child {
  font-family: 'SF Mono', Monaco, monospace;
  font-weight: 700; font-size: 14px; min-width: 48px;
}

/* ===== HEADER ===== */
.kb-header {
  background: var(--kb-white);
  position: sticky; top: 0; z-index: 1000;
  box-shadow: var(--kb-shadow-sm);
  border-bottom: 1px solid var(--kb-gray-200);
}
.kb-header__inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 24px;
  padding: 12px 20px;
}
.kb-header__logo img { height: 48px; width: auto; }
.kb-header__nav { display: flex; align-items: center; gap: 8px; }
.kb-header__link {
  font-weight: 600; font-size: 14px;
  color: var(--kb-gray-700); padding: 10px 16px;
  border-radius: 8px; transition: all var(--kb-duration) var(--kb-ease);
}
.kb-header__link:hover { color: var(--kb-primary); background: var(--kb-gray-100); }
.kb-header__link--active { color: var(--kb-primary-dark); font-weight: 700; }
.kb-header__actions { display: flex; align-items: center; gap: 12px; }
.kb-header__menu {
  display: none; flex-direction: column;
  gap: 5px; width: 24px; padding: 4px;
}
.kb-header__menu span {
  display: block; width: 100%; height: 2px;
  background: var(--kb-gray-700); border-radius: 2px;
  transition: all var(--kb-duration) var(--kb-ease);
}

/* ===== BUTTONS ===== */
.kb-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(--kb-duration) var(--kb-ease);
  white-space: nowrap;
}
.kb-btn--primary {
  background: linear-gradient(135deg, var(--kb-accent) 0%, var(--kb-accent-dark) 100%);
  color: var(--kb-white);
  box-shadow: 0 4px 12px rgba(255,111,0,.3);
}
.kb-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,111,0,.4);
}
.kb-btn--secondary {
  background: linear-gradient(135deg, var(--kb-primary) 0%, var(--kb-primary-dark) 100%);
  color: var(--kb-white);
  box-shadow: 0 4px 12px rgba(27,94,32,.3);
}
.kb-btn--secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(27,94,32,.4);
}
.kb-btn--sm { padding: 8px 16px; font-size: 13px; }
.kb-btn--lg { padding: 16px 32px; font-size: 16px; }

/* ===== HERO ===== */
.kb-hero {
  position: relative; min-height: 600px;
  display: flex; align-items: center;
  background: linear-gradient(135deg, var(--kb-primary-dark) 0%, #0d3d0d 100%);
  overflow: hidden;
}
.kb-hero__bg { position: absolute; inset: 0; z-index: 0; }
.kb-hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .4; }
.kb-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(27,94,32,.85) 0%, rgba(0,0,0,.65) 100%);
}
.kb-hero__content {
  position: relative; z-index: 1;
  max-width: 800px; padding: 60px 0;
}
.kb-hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.15); backdrop-filter: blur(10px);
  color: var(--kb-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(--kb-ease) forwards, glow 3s ease-in-out infinite;
}
.kb-hero__title {
  font-family: var(--kb-font-display);
  font-size: clamp(40px, 6vw, 64px); font-weight: 700;
  color: var(--kb-white); line-height: 1.1;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s var(--kb-ease) 0.1s forwards;
  opacity: 0; text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.kb-hero__title span {
  display: block; color: var(--kb-gold);
  font-size: clamp(28px, 4vw, 40px);
}
.kb-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(--kb-ease) 0.2s forwards; opacity: 0;
}
.kb-hero__locations {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-bottom: 32px;
  animation: fadeInUp 0.8s var(--kb-ease) 0.3s forwards; opacity: 0;
}
.kb-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(--kb-white); transition: all var(--kb-duration) var(--kb-ease);
  min-width: 200px; position: relative; overflow: hidden;
}
.kb-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;
}
.kb-location-btn:hover::before { left: 100%; }
.kb-location-btn:hover {
  background: rgba(255,255,255,.2);
  transform: translateY(-4px) scale(1.02);
  border-color: var(--kb-gold);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.kb-location-btn__icon { font-size: 28px; }
.kb-location-btn__info { display: flex; flex-direction: column; text-align: left; flex: 1; }
.kb-location-btn__name { font-weight: 700; font-size: 16px; }
.kb-location-btn__state { font-size: 13px; opacity: .8; }
.kb-location-btn__arrow { font-size: 20px; opacity: .7; }
.kb-hero__features {
  display: flex; gap: 32px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.15);
  animation: fadeInUp 0.8s var(--kb-ease) 0.4s forwards; opacity: 0;
}
.kb-hero__feature {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,.9); font-size: 14px; font-weight: 500;
}
.kb-hero__feature-icon {
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  background: var(--kb-gold); color: var(--kb-gray-900);
  border-radius: 50%; font-size: 12px; font-weight: 700;
}

/* ===== SECTIONS ===== */
.kb-section { padding: 80px 0; }
.kb-section--alt { background: var(--kb-cream); }
.kb-section--dark { background: var(--kb-primary-dark); color: var(--kb-white); }
.kb-section__header { text-align: center; max-width: 700px; margin: 0 auto 48px; }
.kb-section__label {
  display: inline-block; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--kb-accent); margin-bottom: 12px;
}
.kb-section__title {
  font-family: var(--kb-font-display);
  font-size: clamp(28px, 4vw, 40px); font-weight: 700;
  color: var(--kb-gray-900); margin-bottom: 16px;
}
.kb-section--dark .kb-section__title { color: var(--kb-white); }
.kb-section__subtitle { font-size: 17px; color: var(--kb-gray-500); line-height: 1.7; }
.kb-section--dark .kb-section__subtitle { color: rgba(255,255,255,.7); }

/* ===== TICKET CARDS ===== */
.kb-tickets {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.kb-ticket {
  background: var(--kb-white); border-radius: 20px;
  overflow: hidden; box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transition: all 0.4s var(--kb-ease);
  position: relative; border: 1px solid rgba(0,0,0,0.04);
}
.kb-ticket:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}
.kb-ticket:hover .kb-ticket__image img { transform: scale(1.1); }
.kb-ticket__badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--kb-primary); color: var(--kb-white);
  padding: 6px 14px; border-radius: 6px;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .5px; z-index: 2;
}
.kb-ticket__badge--vip { background: var(--kb-gold); color: var(--kb-gray-900); }
.kb-ticket__discount {
  position: absolute; top: 16px; right: 16px;
  background: var(--kb-red); color: var(--kb-white);
  padding: 6px 10px; border-radius: 6px;
  font-size: 12px; font-weight: 700; z-index: 2;
}
.kb-ticket__image {
  position: relative; height: 180px;
  background: linear-gradient(135deg, var(--kb-primary-dark), var(--kb-primary));
  display: flex; align-items: center; justify-content: center;
  font-size: 48px; overflow: hidden;
}
.kb-ticket__image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s var(--kb-ease);
}
.kb-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;
}
.kb-ticket__body { padding: 24px; }
.kb-ticket__icon { font-size: 28px; margin-bottom: 12px; }
.kb-ticket__title {
  font-family: var(--kb-font-display);
  font-size: 22px; font-weight: 700;
  color: var(--kb-gray-900); margin-bottom: 8px;
}
.kb-ticket__desc { font-size: 14px; color: var(--kb-gray-500); margin-bottom: 16px; }
.kb-ticket__features { list-style: none; margin-bottom: 20px; }
.kb-ticket__feature {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--kb-gray-700); padding: 6px 0;
}
.kb-ticket__feature::before { content: '✓'; color: var(--kb-primary); font-weight: 700; }
.kb-ticket__pricing {
  border-top: 1px solid var(--kb-gray-200);
  padding-top: 16px; margin-bottom: 16px;
}
.kb-ticket__price-row {
  display: flex; justify-content: space-between;
  align-items: center; padding: 8px 0;
}
.kb-ticket__price-label { font-size: 13px; color: var(--kb-gray-600); }
.kb-ticket__price-value { display: flex; align-items: center; gap: 8px; }
.kb-ticket__price-original {
  font-size: 13px; color: var(--kb-gray-500);
  text-decoration: line-through;
}
.kb-ticket__price-current { font-size: 20px; font-weight: 800; color: var(--kb-red); }
.kb-ticket__cta {
  width: 100%; padding: 16px;
  background: linear-gradient(135deg, var(--kb-primary) 0%, var(--kb-primary-dark) 100%);
  color: var(--kb-white); font-weight: 700; font-size: 14px;
  border-radius: 12px; transition: all var(--kb-duration) var(--kb-ease);
  position: relative; overflow: hidden;
  text-transform: uppercase; letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(27,94,32,0.25);
}
.kb-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;
}
.kb-ticket__cta:hover::before { left: 100%; }
.kb-ticket__cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(27,94,32,0.35);
}

/* ===== EXPERIENCES ===== */
.kb-experiences {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.kb-experience {
  background: var(--kb-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(--kb-ease);
  border: 1px solid rgba(0,0,0,0.04);
  position: relative; overflow: hidden;
}
.kb-experience::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--kb-primary), var(--kb-accent));
  transform: scaleX(0); transition: transform 0.4s var(--kb-ease);
}
.kb-experience:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}
.kb-experience:hover::before { transform: scaleX(1); }
.kb-experience:hover .kb-experience__icon { transform: scale(1.15) rotate(5deg); }
.kb-experience__icon {
  font-size: 48px; margin-bottom: 20px;
  transition: transform 0.4s var(--kb-ease); display: inline-block;
}
.kb-experience__title {
  font-weight: 700; font-size: 18px;
  color: var(--kb-gray-900); margin-bottom: 10px;
}
.kb-experience__desc { font-size: 14px; color: var(--kb-gray-500); line-height: 1.6; }

/* ===== BENEFITS ===== */
.kb-benefits {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.kb-benefit {
  text-align: center; padding: 32px 24px;
  border-radius: 20px; transition: all 0.4s var(--kb-ease);
  background: rgba(255,255,255,0.6);
}
.kb-benefit:hover {
  background: var(--kb-white);
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}
.kb-benefit:hover .kb-benefit__icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 12px 30px rgba(255,111,0,.4);
}
.kb-benefit__icon {
  width: 72px; height: 72px; margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--kb-accent), var(--kb-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(--kb-ease);
}
.kb-benefit__title { font-weight: 700; font-size: 16px; color: var(--kb-gray-900); margin-bottom: 8px; }
.kb-benefit__desc { font-size: 14px; color: var(--kb-gray-500); }

/* ===== STEPS ===== */
.kb-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 40px; align-items: start;
}
.kb-step {
  text-align: center; position: relative;
  padding: 24px; border-radius: 20px;
  transition: all 0.4s var(--kb-ease);
}
.kb-step:hover {
  background: var(--kb-white);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}
.kb-step:hover .kb-step__number {
  transform: scale(1.15);
  box-shadow: 0 10px 30px rgba(27,94,32,0.3);
}
.kb-step__number {
  width: 56px; height: 56px; margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--kb-primary) 0%, var(--kb-primary-dark) 100%);
  color: var(--kb-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(--kb-ease);
}
.kb-step__title { font-weight: 700; font-size: 16px; color: var(--kb-gray-900); margin-bottom: 8px; }
.kb-step__desc { font-size: 14px; color: var(--kb-gray-500); }
.kb-step__arrow {
  position: absolute; right: -32px; top: 24px;
  color: var(--kb-gray-300); font-size: 20px;
}
.kb-step:last-child .kb-step__arrow { display: none; }

/* ===== CTA ===== */
.kb-cta {
  background: linear-gradient(135deg, var(--kb-primary-dark) 0%, #0a2e0a 50%, var(--kb-primary-dark) 100%);
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
  padding: 100px 0; text-align: center;
  position: relative; overflow: hidden;
}
.kb-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;
}
.kb-cta__title {
  font-family: var(--kb-font-display);
  font-size: clamp(28px, 4vw, 40px); font-weight: 700;
  color: var(--kb-white); margin-bottom: 16px;
}
.kb-cta__subtitle { font-size: 18px; color: rgba(255,255,255,.8); margin-bottom: 32px; }
.kb-cta__timer {
  display: inline-flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.1); padding: 12px 24px;
  border-radius: 100px; color: var(--kb-white);
  font-size: 14px; margin-bottom: 32px;
  border: 1px solid rgba(255,255,255,.2);
}
.kb-cta__timer-value {
  font-family: 'SF Mono', Monaco, monospace;
  font-weight: 700; font-size: 18px; color: var(--kb-gold);
}
.kb-cta__buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.kb-footer {
  background: linear-gradient(180deg, var(--kb-gray-900) 0%, #0a0a0a 100%);
  color: var(--kb-white); padding: 80px 0 32px; position: relative;
}
.kb-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);
}
.kb-footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 40px; margin-bottom: 40px;
}
.kb-footer__brand img, .kb-footer__logo {
  height: 56px; margin-bottom: 20px;
  transition: all 0.3s var(--kb-ease);
}
.kb-footer__brand:hover img {
  transform: scale(1.05);
}
.kb-footer__desc { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.7; }
.kb-footer__title {
  font-weight: 700; font-size: 14px;
  text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 20px; color: var(--kb-white);
}
.kb-footer__links { list-style: none; }
.kb-footer__link {
  display: block; font-size: 14px;
  color: rgba(255,255,255,.6); padding: 6px 0;
  transition: color var(--kb-duration) var(--kb-ease);
}
a.kb-footer__link:hover { color: var(--kb-gold); }
.kb-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;
}
.kb-footer__copy { font-size: 13px; color: rgba(255,255,255,.5); }
.kb-footer__payments {
  display: flex; align-items: center; gap: 12px;
  font-size: 12px; color: rgba(255,255,255,.6);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .kb-experiences, .kb-benefits, .kb-steps { grid-template-columns: repeat(2, 1fr); }
  .kb-footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .kb-header__nav {
    display: none; position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--kb-white); flex-direction: column;
    padding: 16px; box-shadow: var(--kb-shadow-lg);
  }
  .kb-header__nav.is-open { display: flex; }
  .kb-header__menu { display: flex; }
  .kb-hero { min-height: 500px; }
  .kb-hero__content { padding: 40px 0; }
  .kb-hero__locations { flex-direction: column; }
  .kb-hero__features { flex-direction: column; gap: 16px; }
  .kb-section { padding: 60px 0; }
  .kb-experiences, .kb-benefits, .kb-steps { grid-template-columns: 1fr; }
  .kb-tickets { grid-template-columns: 1fr; }
  .kb-step__arrow { display: none !important; }
  .kb-footer__grid { grid-template-columns: 1fr; text-align: center; }
  .kb-footer__bottom { justify-content: center; text-align: center; }
}

@media (max-width: 480px) {
  .kb-promo-banner { padding: 10px 16px; gap: 6px; flex-direction: column; }
  .kb-promo-banner__icon { font-size: 16px; display: none; }
  .kb-promo-banner__text { font-size: 11px; letter-spacing: 0.8px; }
  .kb-promo-banner__discount { padding: 5px 12px; font-size: 11px; border-radius: 4px; }
  .kb-promo-banner__timer { padding: 4px 10px; font-size: 11px; border-radius: 4px; gap: 6px; }
  .kb-promo-banner__timer span:last-child { font-size: 12px; min-width: 40px; }
  .kb-header__inner { padding: 10px 16px; }
  .kb-header__logo img { height: 36px; }
  .kb-header__actions .kb-btn { padding: 10px 16px; font-size: 12px; border-radius: 8px; }
  .kb-header__menu { padding: 8px; gap: 4px; }
  .kb-header__menu span { height: 2px; width: 20px; }
  .kb-hero { min-height: auto; padding: 0; }
  .kb-hero__content { padding: 32px 0 40px; text-align: center; max-width: 100%; }
  .kb-hero__badge { padding: 8px 16px; font-size: 11px; margin-bottom: 16px; border-radius: 50px; }
  .kb-hero__title { font-size: 32px; margin-bottom: 8px; line-height: 1.15; }
  .kb-hero__title span { font-size: 22px; margin-top: 4px; }
  .kb-hero__subtitle { font-size: 14px; margin-bottom: 24px; line-height: 1.6; padding: 0 8px; }
  .kb-hero__locations { gap: 12px; padding: 0 4px; }
  .kb-location-btn { min-width: unset; width: 100%; padding: 16px 20px; border-radius: 14px; }
  .kb-location-btn__icon { font-size: 32px; }
  .kb-location-btn__name { font-size: 17px; }
  .kb-location-btn__state { font-size: 12px; }
  .kb-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;
  }
  .kb-hero__features {
    gap: 10px; padding-top: 20px; margin-top: 8px;
    display: grid; grid-template-columns: 1fr 1fr;
  }
  .kb-hero__feature {
    font-size: 12px; gap: 6px; justify-content: center;
    background: rgba(255,255,255,.08); padding: 10px 12px; border-radius: 10px;
  }
  .kb-hero__feature-icon { width: 20px; height: 20px; font-size: 10px; }
  .kb-section { padding: 48px 0; }
  .kb-section__header { margin-bottom: 32px; }
  .kb-section__label { font-size: 11px; letter-spacing: 1.2px; margin-bottom: 8px; }
  .kb-section__title { font-size: 26px; margin-bottom: 12px; }
  .kb-section__subtitle { font-size: 14px; padding: 0 8px; }
  .kb-ticket { border-radius: 16px; margin: 0 4px; }
  .kb-ticket__image { height: 140px; }
  .kb-ticket__body { padding: 20px; }
  .kb-ticket__icon { font-size: 24px; margin-bottom: 8px; }
  .kb-ticket__title { font-size: 20px; }
  .kb-ticket__cta { padding: 14px; font-size: 13px; }
  .kb-experience { padding: 24px 20px; border-radius: 16px; margin: 0 4px; }
  .kb-experience__icon { font-size: 36px; margin-bottom: 12px; }
  .kb-experience__title { font-size: 16px; }
  .kb-experience__desc { font-size: 13px; }
  .kb-benefit { padding: 24px 16px; border-radius: 16px; }
  .kb-benefit__icon { width: 56px; height: 56px; font-size: 24px; border-radius: 14px; margin-bottom: 16px; }
  .kb-benefit__title { font-size: 15px; }
  .kb-benefit__desc { font-size: 13px; }
  .kb-step { padding: 20px 16px; }
  .kb-step__number { width: 48px; height: 48px; font-size: 18px; margin-bottom: 16px; }
  .kb-step__title { font-size: 15px; }
  .kb-step__desc { font-size: 13px; }
  .kb-cta { padding: 60px 0; }
  .kb-cta__title { font-size: 26px; padding: 0 16px; }
  .kb-cta__subtitle { font-size: 14px; padding: 0 16px; }
  .kb-cta__timer { padding: 10px 20px; font-size: 12px; gap: 8px; }
  .kb-cta__timer-value { font-size: 16px; }
  .kb-cta__buttons { flex-direction: column; width: 100%; padding: 0 16px; gap: 12px; }
  .kb-cta__buttons .kb-btn { width: 100%; padding: 16px 24px; font-size: 14px; }
  .kb-footer { padding: 48px 0 24px; }
  .kb-footer__grid { gap: 32px; margin-bottom: 32px; }
  .kb-footer__brand img { height: 44px; margin: 0 auto 16px; }
  .kb-footer__desc { font-size: 13px; padding: 0 16px; }
  .kb-footer__title { font-size: 13px; margin-bottom: 16px; }
  .kb-footer__link { font-size: 13px; padding: 5px 0; }
  .kb-footer__bottom { flex-direction: column; gap: 12px; padding-top: 20px; }
  .kb-footer__copy { font-size: 11px; }
  .kb-footer__payments { font-size: 11px; gap: 8px; }
}
