/* ============================================
   20th Kenya Trade Expo — Complete Stylesheet
   Inexpo Group | Kenya Trade Expo 2026
   ============================================ */

/* === CSS VARIABLES === */
:root {
  --primary: #006600;
  --primary-dark: #004400;
  --secondary: #D4AF37;
  --secondary-light: #F0D060;
  --accent: #CC0000;
  --dark: #0A0F0D;
  --dark-2: #0F1A14;
  --dark-3: #142019;
  --light: #F5F5F0;
  --text: #E8E8E8;
  --text-muted: #8A9E90;
  --success: #2ECC71;
  --border: rgba(212,175,55,0.3);
  --glass: rgba(255,255,255,0.04);
  --gold-gradient: linear-gradient(135deg, #D4AF37, #F0D060, #D4AF37);
  --kenya-pattern: repeating-linear-gradient(60deg, rgba(212,175,55,0.03) 0px, rgba(212,175,55,0.03) 2px, transparent 2px, transparent 16px),
                   repeating-linear-gradient(-60deg, rgba(0,102,0,0.03) 0px, rgba(0,102,0,0.03) 2px, transparent 2px, transparent 16px);
  --font-heading: 'Lexend', sans-serif;
  --font-subheading: 'Lexend', sans-serif;
  --font-body: 'Lexend', sans-serif;
  --font-stats: 'Lexend', sans-serif;
}

/* === RESET & BASE === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--secondary); text-decoration: none; transition: color 0.3s ease; }
a:hover { color: var(--secondary-light); }
img { max-width: 100%; height: auto; }
ul { list-style: none; padding: 0; margin: 0; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; color: #fff; }
h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
.section-label {
  font-family: var(--font-stats); font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 12px;
  display: block;
}
.section-title { position: relative; margin-bottom: 48px; }
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold-gradient);
  margin-top: 16px;
}
.section-title.text-center::after { margin-left: auto; margin-right: auto; }

/* === ANNOUNCEMENT RIBBON === */
.announcement-ribbon {
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  padding: 8px 0;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1100;
  transition: transform 0.3s ease;
}
.announcement-ribbon.hidden { transform: translateY(-100%); }
.ribbon-text { display: flex; align-items: center; flex-wrap: wrap; justify-content: center; gap: 4px; }
.ribbon-link { color: #fff; font-weight: 600; text-decoration: underline; }
.ribbon-link:hover { color: var(--secondary-light); }
.ribbon-close { background: none; border: none; color: #fff; cursor: pointer; font-size: 14px; padding: 2px 6px; opacity: 0.7; }
.ribbon-close:hover { opacity: 1; }

/* === NAVBAR === */
#mainNav {
  position: fixed;
  top: 38px; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,15,13,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212,175,55,0.2);
  padding: 12px 0;
  transition: all 0.3s ease;
}
#mainNav.scrolled { top: 0; padding: 8px 0; background: rgba(10,15,13,0.98); }
.navbar-brand { padding: 0; }
.logo-wrap { display: flex; align-items: center; gap: 12px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-main {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 1px;
}
.logo-divider { color: var(--secondary); }
.logo-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 2px;
}
#mainNav .nav-link {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  padding: 8px 14px;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
  position: relative;
}
#mainNav .nav-link:hover,
#mainNav .nav-link.active { color: var(--secondary); }
#mainNav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 14px; right: 14px;
  height: 2px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
#mainNav .nav-link:hover::after,
#mainNav .nav-link.active::after { transform: scaleX(1); }
.navbar-toggler {
  border: 1px solid var(--border);
  padding: 6px 12px;
  color: var(--secondary);
  background: none;
}
.navbar-toggler-icon { display: inline-flex; align-items: center; justify-content: center; color: var(--secondary); }

/* === MOBILE MENU OVERLAY === */
.mobile-menu-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10,15,13,0.98);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  padding: 24px;
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}
.mobile-menu-overlay.open { transform: translateX(0); }
.mobile-menu-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; }
.mobile-menu-close { background: none; border: none; color: var(--secondary); font-size: 1.5rem; cursor: pointer; }
.mobile-nav-list { flex: 1; overflow-y: auto; }
.mobile-nav-list li { border-bottom: 1px solid rgba(255,255,255,0.06); }
.mobile-nav-list li a {
  display: block;
  padding: 16px 0;
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  transition: color 0.3s ease, padding-left 0.3s ease;
}
.mobile-nav-list li a:hover { color: var(--secondary); padding-left: 8px; }
.mobile-menu-footer { margin-top: auto; text-align: center; padding-top: 16px; }

/* === BUTTONS === */
.btn-gold {
  background: var(--gold-gradient);
  color: #0A0F0D !important;
  font-weight: 600;
  border: none;
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-gold:hover {
  box-shadow: 0 0 24px rgba(212,175,55,0.4);
  transform: translateY(-2px);
  color: #0A0F0D;
}
.btn-outline-gold {
  background: transparent;
  color: var(--secondary);
  border: 1.5px solid var(--secondary);
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-outline-gold:hover {
  background: var(--secondary);
  color: #0A0F0D;
}
.btn-sm { padding: 8px 18px; font-size: 0.8rem; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }

/* === 20TH ANNIVERSARY BADGE === */
.anniversary-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #0A0F0D;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 1px;
  box-shadow: 0 0 20px rgba(212,175,55,0.4);
  flex-shrink: 0;
}
.anniversary-badge.large { width: 80px; height: 80px; font-size: 1.3rem; }

/* === HERO SECTIONS === */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 140px;
  padding-bottom: 80px;
}
.hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(10,15,13,0.92) 0%, rgba(10,15,13,0.7) 50%, rgba(10,15,13,0.85) 100%);
}
.hero-pattern {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--kenya-pattern);
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-block;
  background: rgba(212,175,55,0.15);
  border: 1px solid var(--border);
  color: var(--secondary);
  font-family: var(--font-stats); font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 3px;
  padding: 8px 20px;
  border-radius: 4px;
  margin-bottom: 24px;
}
.hero-title { margin-bottom: 20px; }
.hero-title span { color: var(--secondary); }
.hero-subtitle {
  font-family: var(--font-subheading);
  font-size: 2.5rem;
  color: var(--text);
  margin-bottom: 16px;
  font-weight: 400;
}
.hero-meta {
  font-family: var(--font-body);
  font-size: 1.5rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.hero-meta i { color: var(--secondary); margin-right: 6px; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 32px; }
.hero-stat-line {
  font-family: var(--font-stats); font-weight: 700;
  font-size: 2.1rem;
  letter-spacing: 3px;
  color: var(--text-muted);
}
.hero-scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--secondary);
  font-size: 1.5rem;
  animation: bounceDown 2s infinite;
  cursor: pointer;
}
@keyframes bounceDown {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* === EDITION MILESTONE STRIP === */
.edition-milestone-strip {
  background: linear-gradient(90deg, var(--primary), var(--primary-dark), var(--primary));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.edition-milestone-strip .milestone-text {
  font-family: var(--font-stats); font-weight: 700;
  font-size: 2.1rem;
  letter-spacing: 4.5px;
  color: var(--secondary);
}

/* === STATS BAR === */
.stats-bar {
  padding: 80px 0;
  background: var(--dark-2);
  position: relative;
}
.stat-item { text-align: center; padding: 20px; }
.stat-number {
  font-family: var(--font-stats); font-weight: 700;
  font-size: 3.0rem;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-family: var(--font-body);
  font-size: 1.30rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* === GLASS CARDS === */
.glass-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
  height: 100%;
}
.glass-card:hover {
  border-color: var(--secondary);
  box-shadow: 0 0 30px rgba(212,175,55,0.1);
  transform: translateY(-4px);
}
.glass-card .card-icon {
  font-size: 2.5rem;
  color: var(--secondary);
  margin-bottom: 16px;
}
.glass-card h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #fff;
}
.glass-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* === CATEGORY CARDS === */
.category-card {
  background: var(--glass);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}
.category-card:hover {
  border-color: var(--secondary);
  box-shadow: 0 8px 32px rgba(212,175,55,0.1);
  transform: translateY(-6px);
}
.category-card .cat-icon {
  font-size: 2.4rem;
  color: var(--secondary);
  margin-bottom: 16px;
  transition: transform 0.3s ease;
}
.category-card:hover .cat-icon { transform: scale(1.1); }
.category-card h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 10px;
}
.category-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* === SECTIONS === */
.section-padding { padding: 100px 0; }
.section-dark { background: var(--dark-2); }
.section-darker { background: var(--dark-3); }
.section-divider {
  position: relative;
}
.section-divider::before {
  content: '';
  position: absolute;
  top: -50px; left: 0; right: 0;
  height: 100px;
  background: var(--dark-2);
  clip-path: polygon(0 50%, 100% 0, 100% 100%, 0 100%);
}

/* === ABOUT IMAGE WRAP === */
.about-image-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.about-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-image-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--gold-gradient);
  color: #0A0F0D;
  padding: 12px 20px;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
}

/* === TIMELINE === */
.timeline { position: relative; padding-left: 30px; }
.timeline::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 8px;
  width: 2px;
  background: var(--gold-gradient);
}
.timeline-item {
  position: relative;
  padding-bottom: 32px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  top: 4px; left: -26px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--secondary);
  border: 3px solid var(--dark);
}
.timeline-year {
  font-family: var(--font-stats); font-weight: 700;
  font-size: 1.3rem;
  color: var(--secondary);
  letter-spacing: 2px;
}
.timeline-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* === PROGRAMME TABS === */
.programme-tabs .nav-link {
  font-family: var(--font-heading);
  color: var(--text-muted);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 14px 28px;
  margin-right: 8px;
  margin-bottom: 8px;
}
.programme-tabs .nav-link.active {
  background: var(--gold-gradient);
  color: #0A0F0D;
  border-color: var(--secondary);
}
.programme-item {
  display: flex;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.programme-time {
  font-family: var(--font-stats); font-weight: 700;
  color: var(--secondary);
  font-size: 1.1rem;
  letter-spacing: 1px;
  min-width: 90px;
  flex-shrink: 0;
}
.programme-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 4px;
}
.programme-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* === SPEAKER CARD === */
.speaker-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  text-align: center;
  transition: all 0.3s ease;
}
.speaker-card:hover { border-color: var(--secondary); transform: translateY(-4px); }
.speaker-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 2rem;
  color: #0A0F0D;
}
.speaker-name { font-family: var(--font-heading); font-size: 1.1rem; color: #fff; margin-bottom: 4px; }
.speaker-role { font-size: 0.8rem; color: var(--text-muted); }

/* === GALLERY === */
.gallery-grid {
  columns: 3;
  column-gap: 16px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.06);
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 16px 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-title { font-family: var(--font-heading); font-size: 0.95rem; color: #fff; }
.gallery-item-category {
  display: inline-block;
  background: var(--secondary);
  color: #0A0F0D;
  font-size: 0.65rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* === LIGHTBOX === */
.lightbox-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.95);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox-overlay.active { opacity: 1; pointer-events: all; }
.lightbox-img {
  max-width: 90%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 8px;
  border: 1px solid var(--border);
}
.lightbox-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  z-index: 10;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid var(--border);
  color: #fff;
  width: 50px; height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}
.lightbox-nav:hover { background: var(--secondary); color: #0A0F0D; }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-caption {
  margin-top: 16px;
  text-align: center;
  max-width: 600px;
}
.lightbox-caption h4 { font-size: 1.2rem; margin-bottom: 6px; }
.lightbox-caption p { font-size: 0.85rem; color: var(--text-muted); }

/* === FILTER PILLS === */
.filter-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; justify-content: center; }
.filter-pill {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--text-muted);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.filter-pill:hover, .filter-pill.active {
  background: var(--secondary);
  color: #0A0F0D;
  border-color: var(--secondary);
}

/* === PACKAGES PAGE === */
.packages-hero { position: relative; min-height: 70vh; display: flex; align-items: center; }
.pkg-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 32px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
}
.pkg-card.highlighted {
  border-color: var(--secondary);
  background: rgba(212,175,55,0.07);
  box-shadow: 0 0 40px rgba(212,175,55,0.12);
  transform: translateY(-8px);
}
.pkg-card .pkg-badge {
  position: absolute;
  top: 38px;
  right: -40px;
  width: 190px;
  text-align: center;
  background: var(--gold-gradient);
  color: #0A0F0D;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 6px 0;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
  transform: rotate(45deg);
}
.pkg-card .pkg-icon { font-size: 2.5rem; margin-bottom: 16px; display: block; }
.pkg-card .pkg-name { font-family: var(--font-heading); font-size: 1.6rem; color: #fff; margin-bottom: 8px; }
.pkg-card .pkg-price { font-family: var(--font-stats); font-weight: 700; font-size: 1.4rem; color: var(--secondary); margin-bottom: 4px; }
.pkg-card .pkg-note { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 24px; }
.pkg-features { list-style: none; padding: 0; margin: 0 0 28px; }
.pkg-features li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.85rem;
}
.pkg-features li .feat-label { color: var(--text-muted); }
.pkg-features li .feat-value { color: #fff; font-weight: 500; }
.pkg-comparison-table { width: 100%; border-collapse: collapse; }
.pkg-comparison-table thead th { background: rgba(212,175,55,0.1); color: var(--secondary); padding: 14px 16px; font-family: var(--font-heading); font-weight: 600; }
.pkg-comparison-table tbody td { padding: 12px 16px; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 0.88rem; }
.pkg-comparison-table tbody td:first-child { color: var(--text-muted); }
.pkg-comparison-table .col-highlight { background: rgba(212,175,55,0.06); }
.pkg-cta-strip {
  background: linear-gradient(135deg, var(--primary), var(--dark));
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 12px;
  padding: 48px 32px;
  text-align: center;
}

/* === SPONSORSHIP PAGE === */
.sponsorship-hero { position: relative; min-height: 70vh; display: flex; align-items: center; }
.spon-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 32px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
}
.spon-card.highlighted {
  border-color: var(--secondary);
  background: rgba(212,175,55,0.07);
  box-shadow: 0 0 50px rgba(212,175,55,0.15);
}
.spon-card .spon-icon { font-size: 2.5rem; margin-bottom: 16px; display: block; }
.spon-card .spon-tier-name { font-family: var(--font-heading); font-size: 2rem; color: #fff; margin-bottom: 12px; }
.spon-card .spon-badge {
  display: inline-block;
  background: rgba(212,175,55,0.15);
  border: 1px solid var(--border);
  color: var(--secondary);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.spon-card .spon-price { font-family: var(--font-stats); font-weight: 700; font-size: 1.3rem; color: var(--secondary); margin-bottom: 4px; }
.spon-card .spon-note { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 20px; }
.spon-benefits { list-style: none; padding: 0; margin: 0 0 28px; }
.spon-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.spon-benefits li .spon-check { color: var(--secondary); margin-top: 2px; flex-shrink: 0; }
.spon-visibility-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.spon-visibility-pills .pill {
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.25);
  color: var(--secondary);
  font-size: 0.72rem;
  padding: 4px 12px;
  border-radius: 20px;
}
.why-sponsor-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 24px;
  text-align: center;
  transition: all 0.3s ease;
}
.why-sponsor-card:hover { border-color: var(--secondary); transform: translateY(-4px); }
.why-sponsor-card .ws-icon { font-size: 2.2rem; color: var(--secondary); margin-bottom: 14px; }
.slot-indicator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.05);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  margin-bottom: 16px;
}
.slot-indicator .slot-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); }
.past-sponsors-strip { padding: 60px 0; text-align: center; }
.sponsor-marquee { display: flex; gap: 32px; justify-content: center; flex-wrap: wrap; margin-top: 32px; }
.sponsor-placeholder {
  width: 140px; height: 80px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-stats); font-weight: 700;
  color: var(--text-muted);
  font-size: 0.85rem;
  letter-spacing: 1px;
}

/* === TESTIMONIAL CARDS === */
.testimonial-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
}
.testimonial-card:hover { border-color: var(--secondary); }
.testimonial-quote {
  font-family: var(--font-subheading);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.6;
}
.testimonial-author { font-weight: 600; color: #fff; font-size: 0.9rem; }
.testimonial-role { font-size: 0.8rem; color: var(--text-muted); }

/* === STEPS / PROCESS === */
.step-card { text-align: center; padding: 24px; }
.step-number {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #0A0F0D;
  font-family: var(--font-stats); font-weight: 700;
  font-size: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.step-title { font-family: var(--font-heading); font-size: 1.1rem; color: #fff; margin-bottom: 8px; }
.step-desc { font-size: 0.85rem; color: var(--text-muted); }

/* === FORMS === */
.form-control, .form-select {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.form-control:focus, .form-select:focus {
  background: rgba(255,255,255,0.08);
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.15);
  color: #fff;
}
.form-control::placeholder { color: rgba(255,255,255,0.35); }
.form-control-dark { background: rgba(0,0,0,0.2); border-color: rgba(255,255,255,0.1); }
.form-control-dark:focus { background: rgba(0,0,0,0.3); border-color: var(--secondary); }
/* Fix: <option> items inherit white text but render on the browser's default white
   dropdown background, making them invisible. Force a dark background + light text
   on the options themselves so the open dropdown list is readable. */
.form-control option, .form-select option {
  background-color: var(--dark-3);
  color: #fff;
}
.form-label { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 6px; }
.form-label .required { color: var(--accent); }

/* === ACCORDION === */
.accordion-item {
  background: var(--glass);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
}
.accordion-button {
  background: transparent;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1rem;
  padding: 18px 24px;
  box-shadow: none;
}
.accordion-button:not(.collapsed) {
  background: rgba(212,175,55,0.08);
  color: var(--secondary);
  box-shadow: none;
}
.accordion-button::after { filter: invert(1); }
.accordion-body { color: var(--text-muted); font-size: 0.9rem; padding: 0 24px 18px; }

/* === PRE-FOOTER CTA === */
.pre-footer-cta {
  background: var(--gold-gradient);
  padding: 60px 0;
  text-align: center;
}
.pre-footer-title {
  font-family: var(--font-heading);
  color: #0A0F0D;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  margin-bottom: 24px;
}
.pre-footer-buttons .btn-gold {
  background: #0A0F0D;
  color: var(--secondary) !important;
}
.pre-footer-buttons .btn-gold:hover {
  background: #1a1a1a;
  color: var(--secondary-light) !important;
}
.pre-footer-buttons .btn-outline-gold {
  border-color: #0A0F0D;
  color: #0A0F0D;
}
.pre-footer-buttons .btn-outline-gold:hover {
  background: #0A0F0D;
  color: var(--secondary);
}

/* === MAIN FOOTER === */
.main-footer {
  background: var(--dark-2);
  padding: 80px 0 0;
}
.footer-logo-text {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 1px;
}
.footer-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; margin-top: 12px; }
.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--secondary);
  margin-bottom: 20px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links li a {
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: color 0.3s ease, padding-left 0.3s ease;
}
.footer-links li a:hover { color: var(--secondary); padding-left: 4px; }
.footer-contact-list li {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
}
.footer-contact-list li i { color: var(--secondary); margin-top: 3px; flex-shrink: 0; }
.footer-contact-list li a { color: var(--text-muted); }
.footer-contact-list li a:hover { color: var(--secondary); }
.social-icons { display: flex; gap: 10px; }
.social-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.social-icon:hover {
  background: var(--secondary);
  color: #0A0F0D;
  border-color: var(--secondary);
}
.newsletter-form .form-control { margin-bottom: 8px; }

/* Kenya Flag Stripe */
.kenya-flag-stripe {
  height: 6px;
  background: linear-gradient(90deg, #000000 0%, #000000 25%, #CC0000 25%, #CC0000 50%, #006600 50%, #006600 75%, #FFFFFF 75%, #FFFFFF 100%);
  margin-top: 60px;
}

/* Footer Bottom */
.footer-bottom {
  padding: 20px 0;
  margin-top: 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); }

/* === WHATSAPP FLOAT === */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  z-index: 900;
  transition: all 0.3s ease;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  color: #fff;
}

/* === TOAST NOTIFICATIONS === */
.toast-container {
  position: fixed;
  top: 100px;
  right: 24px;
  z-index: 4000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.toast-message {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-left: 4px solid var(--secondary);
  border-radius: 8px;
  padding: 14px 20px;
  color: var(--text);
  font-size: 0.88rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  animation: slideInRight 0.4s ease;
  max-width: 360px;
}
.toast-message.toast-error { border-left-color: var(--accent); }
.toast-message.toast-success { border-left-color: var(--success); }
@keyframes slideInRight {
  from { transform: translateX(120%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* === SCROLL REVEAL === */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* === SPINNER === */
.spinner {
  width: 40px; height: 40px;
  border: 3px solid rgba(212,175,55,0.2);
  border-top-color: var(--secondary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* === THANK YOU PAGE === */
.thankyou-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 100px;
}
.thankyou-icon {
  font-size: 5rem;
  color: var(--success);
  margin-bottom: 24px;
  animation: scaleIn 0.5s ease;
}
@keyframes scaleIn {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.thankyou-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  max-width: 600px;
  margin: 0 auto;
}

/* === MARQUEE === */
.marquee-track {
  display: flex;
  gap: 32px;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee-wrap { overflow: hidden; }

/* === MAP EMBED === */
.map-embed { width: 100%; border: none; border-radius: 12px; filter: grayscale(0.3) brightness(0.8); }

/* === ADMIN PANEL === */
.admin-body { background: var(--dark); font-family: var(--font-body); }
.admin-sidebar {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 260px;
  background: var(--dark-2);
  border-right: 1px solid var(--border);
  z-index: 1000;
  overflow-y: auto;
  padding: 24px 0;
}
.admin-sidebar-logo {
  padding: 0 24px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 16px;
}
.admin-sidebar-logo a {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: #fff;
}
.admin-sidebar-logo span { font-size: 0.72rem; color: var(--text-muted); display: block; margin-top: 4px; }
.admin-nav { list-style: none; padding: 0; }
.admin-nav li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}
.admin-nav li a:hover,
.admin-nav li a.active {
  background: rgba(212,175,55,0.08);
  color: var(--secondary);
  border-left-color: var(--secondary);
}
.admin-main {
  margin-left: 260px;
  padding: 32px;
  min-height: 100vh;
}
.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.kpi-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}
.kpi-number {
  font-family: var(--font-stats); font-weight: 700;
  font-size: 2.5rem;
  color: var(--secondary);
  line-height: 1;
}
.kpi-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 6px; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th {
  background: rgba(212,175,55,0.08);
  color: var(--secondary);
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 0.85rem;
}
.admin-table td { padding: 12px 16px; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 0.85rem; color: var(--text); }
.admin-table tr:hover td { background: rgba(255,255,255,0.02); }
.admin-login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
}
.admin-login-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px 40px;
  width: 100%;
  max-width: 420px;
}
.admin-login-logo {
  text-align: center;
  margin-bottom: 32px;
}
.admin-login-logo h2 {
  font-family: var(--font-heading);
  color: #fff;
  font-size: 1.5rem;
}
.admin-login-logo span { color: var(--secondary); font-size: 0.8rem; }
.admin-search {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 0.88rem;
  width: 300px;
}
.admin-search:focus { outline: none; border-color: var(--secondary); }
.feature-row, .benefit-row, .visibility-row {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
  align-items: center;
}
.feature-row input, .benefit-row textarea, .visibility-row input {
  flex: 1;
}
.btn-icon {
  width: 32px; height: 32px;
  border-radius: 6px;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.8rem;
}
.btn-icon-danger { background: rgba(204,0,0,0.15); color: var(--accent); }
.btn-icon-danger:hover { background: rgba(204,0,0,0.3); }
.btn-icon-success { background: rgba(46,204,113,0.15); color: var(--success); }
.btn-icon-success:hover { background: rgba(46,204,113,0.3); }
.add-feature-btn, .add-benefit-btn, .add-visibility-btn {
  background: transparent;
  border: 1px dashed var(--border);
  color: var(--secondary);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.add-feature-btn:hover, .add-benefit-btn:hover, .add-visibility-btn:hover {
  border-color: var(--secondary);
  background: rgba(212,175,55,0.08);
}
.admin-filter-tabs { display: flex; gap: 8px; margin-bottom: 20px; flex-wrap: wrap; }
.admin-filter-tab {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-muted);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.admin-filter-tab:hover, .admin-filter-tab.active {
  background: var(--secondary);
  color: #0A0F0D;
  border-color: var(--secondary);
}
.pagination { display: flex; gap: 6px; margin-top: 20px; justify-content: center; }
.page-btn {
  width: 36px; height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  background: transparent;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}
.page-btn:hover, .page-btn.active { background: var(--secondary); color: #0A0F0D; border-color: var(--secondary); }

/* === KENYA FACTS CARDS === */
.fact-card { text-align: center; padding: 28px 16px; }
.fact-icon { font-size: 2.2rem; color: var(--secondary); margin-bottom: 12px; }
.fact-value { font-family: var(--font-stats); font-weight: 700; font-size: 1.8rem; color: #fff; letter-spacing: 1px; }
.fact-label { font-size: 0.82rem; color: var(--text-muted); margin-top: 4px; }

/* === MODAL DARK === */
.modal-content {
  background: var(--dark-2);
  border: 1px solid var(--border);
  color: var(--text);
}
.modal-header { border-bottom: 1px solid rgba(255,255,255,0.08); }
.modal-footer { border-top: 1px solid rgba(255,255,255,0.08); }
.btn-close { filter: invert(1); }

/* === CONTACT PAGE === */
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 16px;
}
.contact-info-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: rgba(212,175,55,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--secondary);
  flex-shrink: 0;
}
.contact-info-title { font-family: var(--font-heading); font-size: 0.95rem; color: #fff; margin-bottom: 4px; }
.contact-info-text { font-size: 0.85rem; color: var(--text-muted); }
.contact-info-text a { color: var(--text-muted); }
.contact-info-text a:hover { color: var(--secondary); }

/* === RESPONSIVE === */
@media (max-width: 1200px) {
  .section-padding { padding: 80px 0; }
  .admin-sidebar { width: 220px; }
  .admin-main { margin-left: 220px; }
}

@media (max-width: 992px) {
  .section-padding { padding: 60px 0; }
  .gallery-grid { columns: 2; }
  .admin-sidebar { transform: translateX(-100%); }
  .admin-sidebar.open { transform: translateX(0); }
  .admin-main { margin-left: 0; }
  .stat-number { font-size: 2.5rem; }
  .hero-section { min-height: auto; padding: 140px 0 60px; }
}

@media (max-width: 768px) {
  .section-padding { padding: 50px 0; }
  .gallery-grid { columns: 1; }
  .hero-title { font-size: 2.2rem; }
  .pkg-card, .spon-card { padding: 28px 20px; }
  .stat-number { font-size: 2rem; }
  .whatsapp-float { width: 48px; height: 48px; font-size: 1.3rem; bottom: 20px; right: 20px; }
  .footer-bottom p { font-size: 0.72rem; }
  .admin-search { width: 100%; }
}

@media (max-width: 576px) {
  .hero-section { padding: 120px 0 40px; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; }
  .pre-footer-buttons .btn { width: 100%; margin-right: 0 !important; }
  .logo-main { font-size: 1.05rem; }
  .logo-sub { font-size: 0.55rem; }
  .anniversary-badge { width: 36px; height: 36px; font-size: 0.7rem; }
  .section-title { font-size: 1.6rem; }
  .filter-pills { gap: 6px; }
  .filter-pill { padding: 6px 14px; font-size: 0.78rem; }
  .admin-login-card { padding: 32px 24px; }
}

@media (max-width: 375px) {
  .hero-title { font-size: 1.8rem; }
  .hero-subtitle { font-size: 1.1rem; }
  .stat-number { font-size: 1.6rem; }
  .logo-main { font-size: 0.9rem; }
  .ribbon-text { font-size: 11px; }
}