.elementor-4212 .elementor-element.elementor-element-abc13ca{--display:flex;--min-height:500px;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;overflow:visible;}/* Start custom CSS for html, class: .elementor-element-38b340d */:root {
  --blue: #0555a4;
  --blue-dark: #043d78;
  --blue-light: #e8f2fc;
  --green: #2E7D32;
  --green-light: #00d084;
  --green-bg: #e6f9ee;
  --white: #ffffff;
  --dark: #1a1a2e;
  --gray: #555;
  --light-gray: #f7f8fa;
  --orange: #ff6900;
  --amber: #fcb900;
  --red: #cf2e2e;
  --cyan: #7bdcb5;
}

* { margin: 0; padding: 0; box-sizing: border-box; }


/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--blue) 0%, #0a2f5c 60%, var(--dark) 100%);
  overflow: hidden;
  padding-top:80px ;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 70%, rgba(0,208,132,0.15) 0%, transparent 50%),
              radial-gradient(circle at 70% 30%, rgba(252,185,0,0.1) 0%, transparent 50%);
  animation: heroPulse 8s ease-in-out infinite;
}

@keyframes heroPulse {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.05) rotate(2deg); }
}

/* Animated confetti/dots */
.confetti-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.confetti {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  opacity: 0.4;
  animation: confettiFall linear infinite;
}

@keyframes confettiFall {
  0% { transform: translateY(-10vh) rotate(0deg); opacity: 0; }
  10% { opacity: 0.5; }
  90% { opacity: 0.3; }
  100% { transform: translateY(110vh) rotate(720deg); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 40px 20px;
}

.hero-badge {
  display: inline-block;
  background: var(--green-light);
  color: var(--dark);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 24px;
  border-radius: 50px;
  margin-bottom: 24px;
  animation: badgeBounce 2s ease-in-out infinite;
}

@keyframes badgeBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.hero h1 {
  font-size: clamp(2.5rem, 7vw, 5rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 8px;
}

.hero h1 .highlight {
  color: var(--amber);
  display: block;
}

.hero h1 .fun-text {
  color: var(--green-light);
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: rgba(255,255,255,0.85);
  max-width: 650px;
  margin: 20px auto 32px;
  line-height: 1.7;
  font-weight: 400;
}

.hero-date {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 16px;
  padding: 16px 32px;
  margin-bottom: 32px;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
}

.hero-date .date-icon {
  font-size: 1.6rem;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: var(--green-light);
  color: var(--dark);
  box-shadow: 0 4px 20px rgba(0,208,132,0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,208,132,0.5);
  background: #00e08e;
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-3px);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-indicator svg {
  width: 32px;
  height: 32px;
  stroke: rgba(255,255,255,0.5);
  fill: none;
  stroke-width: 2;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ===== NAV BAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(5,85,164,0.95);
  backdrop-filter: blur(10px);
  padding: 10px 40px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}


/* ===== COUNTDOWN ===== */
.countdown-section {
  background: var(--blue);
  padding: 50px 20px;
  text-align: center;
}

.countdown-label {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.countdown-item {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 20px 28px;
  min-width: 100px;
  backdrop-filter: blur(5px);
}

.countdown-item .number {
  font-size: 2.5rem;
  color: var(--amber);
  line-height: 1;
}

.countdown-item .unit {
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 4px;
}

/* ===== ABOUT / MISSION ===== */
.about-section {
  padding: 100px 20px;
  background: var(--white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-tag {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 900;
}

.section-title .blue { color: var(--blue); }
.section-title .green { color: var(--green); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 40px;
}

.about-text p {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-text p strong {
  color: var(--dark);
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.stat-card {
  background: var(--light-gray);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  transition: transform 0.3s;
}

.stat-card:hover { transform: translateY(-4px); }

.stat-card .stat-number {
  font-size: 2.2rem;
  color: var(--blue);
}

.stat-card .stat-label {
  font-size: 0.85rem;
  color: var(--gray);
  font-weight: 500;
  margin-top: 4px;
}

.about-visual {
  position: relative;
}

.about-visual .fun-card {
  background: linear-gradient(135deg, var(--blue-light), var(--green-bg));
  border-radius: 24px;
  padding: 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-visual .fun-card::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  background: var(--amber);
  border-radius: 50%;
  opacity: 0.2;
}

.about-visual .fun-card .emoji-big {
  font-size: 5rem;
  margin-bottom: 20px;
  display: block;
}

.about-visual .fun-card h3 {
  font-size: 1.6rem;
  color: var(--blue);
  margin-bottom: 12px;
}

.about-visual .fun-card p {
  color: var(--gray);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ===== EVENT DETAILS CARDS ===== */
.details-section {
  padding: 100px 20px;
  background: var(--light-gray);
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.detail-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.detail-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(5,85,164,0.12);
  border-color: var(--blue-light);
}

.detail-card .card-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
}

.detail-card:nth-child(1) .card-icon { background: var(--blue-light); }
.detail-card:nth-child(2) .card-icon { background: var(--green-bg); }
.detail-card:nth-child(3) .card-icon { background: #fff3e0; }
.detail-card:nth-child(4) .card-icon { background: #fce4ec; }

.detail-card h3 {
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--dark);
}

.detail-card p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.7;
}

.detail-card .card-highlight {
  font-size: 1.5rem;
  color: var(--blue);
  margin: 8px 0;
}

/* ===== RACE CATEGORIES ===== */
.races-section {
  padding: 100px 20px;
  background: var(--white);
}

.race-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.race-card {
  border-radius: 24px;
  padding: 40px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
}

.race-card:hover { transform: translateY(-6px); }

.race-card.card-5k {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: var(--white);
}

.race-card.card-fun {
  background: linear-gradient(135deg, var(--green), #1b5e20);
  color: var(--white);
}

.race-card.card-kids {
  background: linear-gradient(135deg, var(--orange), #e65100);
  color: var(--white);
}

.race-card .race-emoji {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
}

.race-card h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.race-card .race-distance {
  font-size: 0.85rem;
  opacity: 0.8;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 16px;
}

.race-card p {
  font-size: 0.95rem;
  opacity: 0.9;
  line-height: 1.7;
  margin-bottom: 20px;
}

.race-card .price {
  font-size: 2rem;
}

.race-card .price-note {
  font-size: 0.8rem;
  opacity: 0.7;
  display: block;
  margin-top: 4px;
}

.race-card .btn-race {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 28px;
  border-radius: 50px;
  background: rgba(255,255,255,0.2);
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  border: 2px solid rgba(255,255,255,0.4);
  transition: all 0.3s;
}

.race-card .btn-race:hover {
  background: rgba(255,255,255,0.3);
  border-color: var(--white);
}

/* ===== SCHEDULE / TIMELINE ===== */
.schedule-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, var(--dark) 0%, #0a2f5c 100%);
  color: var(--white);
}

.timeline {
  max-width: 700px;
  margin: 48px auto 0;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: rgba(255,255,255,0.15);
  border-radius: 3px;
}

.timeline-item {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  position: relative;
}

.timeline-dot {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  z-index: 1;
}

.timeline-dot.dot-green { background: var(--green-light); }
.timeline-dot.dot-blue { background: var(--blue); border: 2px solid rgba(255,255,255,0.3); }
.timeline-dot.dot-amber { background: var(--amber); }
.timeline-dot.dot-orange { background: var(--orange); }
.timeline-dot.dot-red { background: var(--red); }

.timeline-content {
  padding-top: 8px;
}

.timeline-time {
  font-size: 1.2rem;
  color: var(--amber);
}

.timeline-label {
  font-weight: 600;
  font-size: 1.05rem;
  margin-top: 2px;
}

.timeline-desc {
  font-size: 0.85rem;
  opacity: 0.65;
  margin-top: 4px;
  line-height: 1.5;
}

/* ===== FUN ZONE ===== */
.funzone-section {
  padding: 100px 20px;
  background: var(--white);
  text-align: center;
}

.funzone-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 48px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.funzone-item {
  background: var(--light-gray);
  border-radius: 20px;
  padding: 32px 20px;
  transition: all 0.3s;
}

.funzone-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.funzone-item .fz-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
  display: block;
}

.funzone-item h4 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 6px;
}

.funzone-item p {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ===== ROUTE MAP PLACEHOLDER ===== */
.route-section {
  padding: 80px 20px;
  background: var(--blue-light);
  text-align: center;
}

.route-placeholder {
  max-width: 800px;
  margin: 40px auto 0;
  background: var(--white);
  border-radius: 20px;
  padding: 60px 40px;
  border: 2px dashed var(--blue);
}

.route-placeholder .route-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.route-placeholder p {
  color: var(--gray);
  font-size: 1rem;
}

/* ===== SPONSORS ===== */
.sponsors-section {
  padding: 80px 20px;
  background: var(--light-gray);
  text-align: center;
}

.sponsor-tiers {
  margin-top: 48px;
}

.sponsor-tier {
  margin-bottom: 40px;
}

.sponsor-tier h3 {
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.sponsor-tier h3::before,
.sponsor-tier h3::after {
  content: '';
  width: 60px;
  height: 1px;
  background: #ddd;
}

.sponsor-logos {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
}

.sponsor-placeholder {
  width: 140px;
  height: 70px;
  background: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: #bbb;
  font-weight: 600;
  border: 1px solid #eee;
}

.sponsor-cta {
  margin-top: 40px;
}

.sponsor-cta p {
  color: var(--gray);
  margin-bottom: 16px;
}

/* ===== REGISTRATION CTA ===== */
.reg-cta-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--green) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.reg-cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.reg-cta-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: rgba(252,185,0,0.08);
  border-radius: 50%;
}

.reg-cta-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.reg-cta-content h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
}

.reg-cta-content p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.reg-cta-content .price-banner {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 16px;
  padding: 16px 32px;
  margin-bottom: 32px;
  color: var(--white);
}

.price-banner .price-label { font-size: 0.9rem; opacity: 0.8; }
.price-banner .price-value { font-size: 1.8rem; color: var(--amber); }
.price-banner .price-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.3); }

/* ===== FAQ ===== */
.faq-section {
  padding: 100px 20px;
  background: var(--white);
}

.faq-list {
  max-width: 750px;
  margin: 48px auto 0;
}

.faq-item {
  border-bottom: 1px solid #eee;
  padding: 20px 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 16px;
}

.faq-question h3 {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--dark);
}

.faq-toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
  color: var(--blue);
  transition: all 0.3s;
  font-weight: 700;
}

.faq-item.active .faq-toggle {
  background: var(--blue);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.8;
  padding-top: 16px;
}

/* ===== CONTACT / FOOTER ===== */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 60px 20px 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand .footer-logo {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-brand .footer-logo span { color: var(--green-light); }

.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  font-size: 0.85rem;
  transition: background 0.3s;
}

.footer-social a:hover { background: var(--blue); }

.footer-col h4 {
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.5);
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 4px 0;
  transition: color 0.3s;
}

.footer-col a:hover { color: var(--white); }

.footer-bottom {
  text-align: center;
  padding-top: 40px;
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.footer-bottom p {
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
}

.footer-bottom a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .navbar { padding: 12px 20px; }
  .nav-links { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-date { font-size: 0.9rem; padding: 12px 20px; }
  .countdown { gap: 12px; }
  .countdown-item { min-width: 70px; padding: 14px 16px; }
  .countdown-item .number { font-size: 1.8rem; }
  .timeline::before { left: 20px; }
  .price-banner { flex-direction: column; gap: 8px; }
  .price-banner .price-divider { width: 40px; height: 1px; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
}/* End custom CSS */