*,
*::before,
*::after {
    box-sizing: border-box;
}

/* =========================
   RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {

    font-family: 'Manrope', sans-serif;
    background: #111;
    color: #fff;
    overflow-x: hidden;

}

/* =========================
   HEADER
========================= */

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

.inner-page .header {

    background: #333;

    box-shadow: 0 8px 30px rgba(0, 0, 0, .15);

}

.inner-page .header.scrolled {

    background: #333;

}

.header {

    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    z-index: 1000;

    padding: 20px 8%;

    background: transparent;

    transition:
        background .35s ease,
        backdrop-filter .35s ease,
        padding .35s ease;

}

.navbar {

    display: flex;
    justify-content: space-between;
    align-items: center;

}

.logo {

    display: flex;
    align-items: center;
    text-decoration: none;

}

.logo img {

    height: 82px;
    width: auto;
    display: block;

}

.nav-links {

    list-style: none;

    display: flex;
    gap: 42px;

}

.nav-links a {
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    transition: .3s;
}

.nav-links a:hover {

    color: #e6322b;

}

.register-btn {

    background: #e6322b;

    color: white;

    padding: 14px 30px;

    border-radius: 40px;

    text-decoration: none;

    font-weight: 700;

    transition: .3s;

}

.register-btn:hover {

    background: #ff433b;

}

.header.scrolled {

    background: rgba(10, 10, 10, .82);

    backdrop-filter: blur(16px);

    -webkit-backdrop-filter: blur(16px);

    padding: 14px 8%;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .25);

}

/*====================================
  NAVIGATION DROPDOWN
====================================*/

.nav-links {

    display: flex;
    align-items: center;
    gap: 42px;
    list-style: none;

}

.nav-links li {

    position: relative;

}

.nav-links li>a {

    display: flex;
    align-items: center;
    gap: 6px;

    color: #fff;
    text-decoration: none;
    font-weight: 600;

    transition: .3s;

}

.nav-links li>a:hover {

    color: #ff3b30;

}

.nav-links i {

    width: 16px;
    height: 16px;

    transition: .3s;

}

.dropdown:hover i {

    transform: rotate(180deg);

}

/* Dropdown */

.dropdown-menu {

    position: absolute;

    top: 45px;
    left: 50%;

    transform: translateX(-50%) translateY(12px);

    min-width: 190px;

    list-style: none;

    padding: 6px 0;



    border-radius: 8px;
    background: rgba(255, 255, 255, .94);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 255, 255, .35);

    box-shadow: 0 12px 30px rgba(0, 0, 0, .12);

    opacity: 0;
    visibility: hidden;

    transition: .25s ease;

    z-index: 999;

}

.dropdown:hover .dropdown-menu {

    opacity: 1;

    visibility: visible;

    transform: translateX(-50%) translateY(0);

}

.dropdown-menu li {

    width: 100%;

}

.dropdown-menu a {

    display: block;

    color: #222 !important;

    padding: 12px 20px;

    font-weight: 600;

    transition: .25s;

    padding-left: 20px;

}

.dropdown-menu a:hover {

    background: #f6f6f6;

    color: #ff3b30 !important;

    padding-left: 24px;

}

/* =========================
   HERO
========================= */

.hero {

    position: relative;

    width: 100%;
    height: 100vh;

    overflow: hidden;

}

/* Slides */

.hero-slider {

    position: absolute;

    width: 100%;
    height: 100%;

}

.slide {

    position: absolute;

    width: 100%;
    height: 100%;

    background-size: cover;
    background-position: center;

    opacity: 0;

    transition: opacity 1.5s ease;

}

.slide.active {

    opacity: 1;

}

/* Overlay */

.hero-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(to bottom,
            rgba(0, 0, 0, .48),
            rgba(0, 0, 0, .48));

}

/* Hero Content */

.hero-content {

    position: relative;

    z-index: 5;

    width: 100%;
    height: 100%;

    display: flex;

    flex-direction: column;

    justify-content: center;
    align-items: center;

    text-align: center;

    padding: 20px;
    padding-top: 70px;

}

.campaign-logo {
    height: 80px;
    margin-bottom: 15px;
}

.event-date {

    font-size: 24px;
    letter-spacing: 3px;
    font-weight: 300;
    text-transform: uppercase;
    opacity: .95;

    margin-bottom: 28px;

}

.hero h1 {

    font-family: 'Bebas Neue', sans-serif;

    font-size: 112px;

    letter-spacing: 4px;

    line-height: 1;

}

.hero h2 {

    margin-top: 16px;
    font-size: 34px;
    font-style: italic;
    font-weight: 600;
    line-height: 1.35;
    color: #fff;

}

.countdown-box {

    margin-top: 55px;

}

.countdown-box p {

    font-size: 18px;

    margin-bottom: 15px;
    opacity: .85;
    letter-spacing: 1px;

}

#countdown {

    font-size: 46px;

    font-weight: 700;

    letter-spacing: 2px;

}

.hero-btn {

    margin-top: 40px;

    display: inline-block;

    background: #e6322b;

    color: white;

    padding: 18px 46px;

    border-radius: 50px;

    text-decoration: none;

    font-size: 18px;

    font-weight: 700;

    transition: .3s;

}

.hero-btn:hover {

    background: #ff433b;

    transform: translateY(-3px);

}

.scroll-down {

    position: absolute;

    bottom: 30px;

    left: 50%;

    transform: translateX(-50%);

    z-index: 10;

    color: white;

    font-size: 14px;

    letter-spacing: 2px;

    opacity: .8;

}

/* =========================
   ABOUT
========================= */

.about {

    background: #111;

    padding: 120px 8%;

}

.about-container {

    max-width: 1300px;

    margin: auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;

}

.about-image img {

    width: 100%;

    border-radius: 22px;

    display: block;

    box-shadow: 0 30px 70px rgba(0, 0, 0, .45);

}

.section-label {
    color: #ff4b3e;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.about-content h2 {

    font-family: 'Bebas Neue', sans-serif;

    font-size: 68px;

    line-height: 1;

    margin-bottom: 30px;

}

.about-content p {

    color: #cfcfcf;

    font-size: 18px;

    line-height: 1.9;

    margin-bottom: 24px;

}

.about-highlights {

    display: grid;

    grid-template-columns: 1fr;

    gap: 16px;

    margin-top: 35px;

}

.highlight {

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 18px 22px;

    background: #181818;

    border-left: 4px solid #e6322b;

    border-radius: 12px;

    font-weight: 600;

}

.highlight i {

    width: 24px;

    height: 24px;

    color: #e6322b;

    flex-shrink: 0;

}

.highlight span {

    font-size: 18px;

}

/* =========================
   CHOOSE YOUR CHALLENGE
========================= */

.challenge {

    background: #181818;

    padding: 120px 8%;

}

.challenge-header {
    max-width: 980px;
    margin: 0 auto 80px;
    text-align: center;
}

.challenge-header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 92px;
    line-height: .95;
    margin-bottom: 24px;
}

.challenge-intro {
    max-width: 760px;
    margin: 0 auto;
    color: #bdbdbd;
    font-size: 21px;
    line-height: 1.9;
}

.challenge-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 35px;

    max-width: 1300px;

    margin: auto;

}

.challenge-card {

    background: #111;

    border: 1px solid rgba(255, 255, 255, .08);

    border-radius: 22px;

    padding: 40px;

    transition: .35s;

    position: relative;

    overflow: hidden;

}

.challenge-card:hover {

    transform: translateY(-10px);

    border-color: #e6322b;

    box-shadow: 0 25px 60px rgba(0, 0, 0, .45);

}

.challenge-card::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 5px;

    background: #e6322b;

    transform: scaleX(0);

    transition: .35s;

}

.challenge-card:hover::before {

    transform: scaleX(1);

}

.distance {

    font-family: 'Bebas Neue', sans-serif;

    font-size: 92px;

    color: #e6322b;

    line-height: 1;

    margin-bottom: 10px;

}

.challenge-card h3 {

    font-size: 28px;

    margin-bottom: 18px;

}

.challenge-card p {

    color: #bfbfbf;

    line-height: 1.8;

    margin-bottom: 30px;

}

.challenge-info {

    display: flex;

    justify-content: space-between;

    margin-bottom: 14px;

    padding-bottom: 14px;

    border-bottom: 1px solid rgba(255, 255, 255, .08);

}

.challenge-info span {

    color: #9d9d9d;

}

.challenge-info strong {

    font-weight: 700;

}

.price {

    margin-top: 30px;

    font-size: 42px;

    font-weight: 800;

    color: #fff;

}

.price small {

    display: block;

    margin-top: 6px;

    color: #e6322b;

    font-size: 15px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 2px;

}

.card-btn {

    display: inline-block;

    margin-top: 35px;

    color: #fff;

    text-decoration: none;

    font-weight: 700;

    transition: .3s;

}

.card-btn:hover {

    color: #e6322b;

}

.featured {

    background: linear-gradient(135deg,
            #181818,
            #111);

}

/* =========================
   REGISTRATION FEES
========================= */

.pricing {

    background: #111;
    padding: 120px 8%;

}

.pricing-header {

    max-width: 760px;
    margin: 0 auto 60px;
    text-align: center;

}

.pricing-header h2 {

    font-family: 'Bebas Neue', sans-serif;
    font-size: 72px;
    line-height: 1;
    margin-bottom: 18px;

}

.pricing-subtitle {

    color: #bfbfbf;
    font-size: 20px;
    line-height: 1.8;

}

.pricing-table {

    max-width: 1100px;
    margin: auto;

    border-radius: 20px;
    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, .08);

}

.pricing-row {

    display: grid;
    grid-template-columns:
        1fr 1fr 1fr;

    align-items: center;

    background: #171717;

}

.pricing-row:nth-child(even) {

    background: #111;

}

.pricing-row div {

    padding: 26px 34px;
    font-size: 20px;

}

.pricing-row div:first-child {

    font-weight: 700;

}

.pricing-head {

    background: #e6322b;

}

.pricing-head div {

    color: white;
    font-size: 22px;
    font-weight: 700;

}

.pricing-note {

    max-width: 900px;

    margin: 45px auto 0;

    text-align: center;

    color: #bfbfbf;

    line-height: 1.9;

    font-size: 18px;

}

.pricing-note strong {

    color: white;

}

/* =========================
   RACE INCLUSIONS
========================= */

.inclusions {

    background: #181818;
    padding: 120px 8%;

}

.inclusion-grid {

    max-width: 1300px;

    margin: 70px auto 0;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;

}

.inclusion-card {

    background: #111;

    border: 1px solid rgba(255, 255, 255, .08);

    border-radius: 22px;

    padding: 40px 35px;

    text-align: center;

    transition: .35s;

}

.inclusion-icon {

    width: 68px;
    height: 68px;

    margin: 0 auto 28px;

    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 50%;

    background: rgba(230, 50, 43, .08);

    transition:
        background .35s ease,
        transform .35s ease;

}

.inclusion-icon i {

    width: 30px;
    height: 30px;
    stroke-width: 2;

    color: #e6322b;

}

.inclusion-card:hover .inclusion-icon {

    transform: scale(1.08);

    background: rgba(230, 50, 43, .18);

}


.inclusion-card:hover {

    transform: translateY(-10px);

    border-color: #e6322b;

    box-shadow:
        0 25px 60px rgba(0, 0, 0, .45),
        0 0 20px rgba(230, 50, 43, .15);

}

.inclusion-card .icon {

    font-size: 54px;

    margin-bottom: 25px;

}

.inclusion-card {

    display: flex;
    flex-direction: column;
    justify-content: flex-start;

    min-height: 255px;

}

.inclusion-card h3 {

    font-size: 28px;

    margin-bottom: 15px;

}

.inclusion-card p {

    color: #bfbfbf;

    line-height: 1.8;

    font-size: 17px;

}

.icon {

    width: 72px;
    height: 72px;

    margin: 0 auto 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(230, 50, 43, .08);

}

.icon svg {

    width: 34px;
    height: 34px;

    color: #e6322b;

    stroke-width: 2;

}

/* =========================
   HERITAGE EXPERIENCE
========================= */

.experience {

    background: #181818;

    padding: 120px 8%;

}


.experience-header {

    max-width: 760px;

    margin: 0 auto 90px;

    text-align: center;

}

.experience-header h2 {

    font-family: 'Bebas Neue', sans-serif;

    font-size: 72px;

    line-height: 1;

    margin-bottom: 20px;

}

.experience-intro {

    color: #cfcfcf;

    font-size: 20px;

    line-height: 1.8;

}

.experience-row {

    max-width: 1300px;

    margin: 0 auto 120px;

    display: grid;

    grid-template-columns: 1.05fr .95fr;

    gap: 70px;

    align-items: center;

}


.experience-row.reverse .experience-image {

    order: 2;

}

.experience-row.reverse .experience-content {

    order: 1;

}

.experience-image {

    overflow: hidden;
    border-radius: 28px;
    position: relative;
    cursor: pointer;

}

.experience-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background: rgba(0, 0, 0, .18);

}

.experience-image img {

    width: 100%;
    height: 430px;
    object-fit: cover;
    display: block;

    transition:
        transform .8s cubic-bezier(.22, 1, .36, 1),
        filter .8s ease;

}

.experience-image:hover img {

    transform: scale(1.08);
    filter: brightness(1.05);

}

.experience-content h3 {

    font-size: 42px;

    margin-bottom: 24px;

}

.experience-content p {

    color: #cfcfcf;

    font-size: 19px;

    line-height: 1.9;

}

/*====================================
COUNTDOWN BANNER
====================================*/

.countdown-banner {

    position: relative;

    overflow: hidden;

    padding: 180px 20px 140px;

    background:
        linear-gradient(rgba(0, 0, 0, .72), rgba(0, 0, 0, .72)),
        url("../images/banner/countdown-bg.jpg");

    background-size: cover;

    background-position: center;

    background-attachment: fixed;

}

.countdown-content {

    max-width: 1200px;

    margin: auto;

    text-align: center;

    position: relative;

    z-index: 2;

}

.countdown-banner h2 {

    font-size: 4rem;

    font-weight: 800;

    color: #fff;

    margin: 18px 0 25px;

}

.countdown-text {

    max-width: 720px;

    margin: 0 auto 50px;

    font-size: 1.18rem;

    line-height: 1.9;

    color: #d5d5d5;

}

.countdown-grid {
    display: flex;
    justify-content: center;
    gap: 22px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.countdown-grid::before {

    content: "";

    position: absolute;

    width: 650px;
    height: 220px;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    background: rgba(230, 50, 43, .10);

    filter: blur(90px);

    z-index: -1;

}

.count-card {
    width: 175px;
    height: 155px;

    background: #181818;
    border-radius: 22px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.count-card:hover {

    transform: translateY(-8px);

    border-color: #E6322B;

    box-shadow: 0 20px 45px rgba(230, 50, 43, .25);

}

.count-card span {

    display: block;

    font-size: 4.6rem;
    font-weight: 800;

    color: #fff;

    line-height: 1;

}

.count-card small {
    margin-top: 14px;
    font-size: .82rem;
    letter-spacing: 4px;
    color: #ef3d2f;
    font-weight: 700;
}

.countdown-date {

    margin: 45px 0 50px;

    font-size: 1rem;

    font-weight: 500;

    letter-spacing: 1px;

    color: rgba(255, 255, 255, .88);

    text-align: center;

}

@media(max-width:900px) {

    .countdown-banner h2 {

        font-size: 2.6rem;

    }

    .countdown-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media(max-width:600px) {

    .countdown-grid {

        grid-template-columns: 1fr;

    }

    .count-card span {

        font-size: 3rem;

    }

}

.countdown-event {

    font-size: clamp(2.6rem, 4.5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 35px;

}

.countdown-event span {

    display: block;

    margin-top: 8px;

    font-size: .58em;

    letter-spacing: 4px;

}

.countdown-title {

    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.05;

    margin-bottom: 28px;

}

/* ========================================
   HERITAGE RUN JOURNEY
======================================== */

.journey {

    padding: 140px 20px;

    background: #181818;

}

.journey-header {

    max-width: 800px;

    margin: 0 auto 70px;

    text-align: center;

}

.journey-header h2 {

    font-size: 3rem;

    margin: 20px 0;

}

.journey-intro {

    color: #cfcfcf;

    line-height: 1.8;

    font-size: 1.1rem;

}

/* timeline */

.journey-timeline {

    max-width: 1300px;

    margin: 0 auto 90px;

    display: grid;

    grid-template-columns:
        1fr auto 1fr auto 1fr auto 1fr;

    align-items: center;

    gap: 25px;

}

.timeline-item {

    background: #202020;

    border: 1px solid rgba(255, 255, 255, .08);

    border-radius: 18px;

    padding: 35px 20px;

    text-align: center;

    transition: .35s;
    height: 190px;

}

.timeline-item:hover {

    transform: translateY(-8px);

    border-color: #ef3b2d;

}

.timeline-item.active {

    background: #ef3b2d;

}

.timeline-item.active h3,

.timeline-item.active p,

.timeline-item.active .timeline-year {

    color: #fff;

}

.timeline-year {

    display: block;

    color: #ef3b2d;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 12px;

}

.timeline-item h3 {

    font-size: 1.5rem;

    margin-bottom: 12px;

}

.timeline-item p {

    color: #bdbdbd;

}

.timeline-line {

    height: 3px;

    background: #ef3b2d;

    border-radius: 999px;

}

/* stats */

.journey-stats {

    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 25px;

}

.stat-card {

    background: #202020;

    border-radius: 18px;

    padding: 40px;

    text-align: center;

    border: 1px solid rgba(255, 255, 255, .08);

    transition: .35s;

}

.stat-card:hover {

    transform: translateY(-8px);

    border-color: #ef3b2d;

    box-shadow: 0 20px 45px rgba(239, 59, 45, .18);

}

.stat-card h3 {

    font-size: 3rem;

    font-weight: 800;

    color: #ef3b2d;

    margin-bottom: 10px;

}

.stat-card p {

    color: #cfcfcf;

    font-size: 1rem;

}

.timeline-item.active {

    background: #ef3b2d;

    transform: translateY(-12px) scale(1.03);

    box-shadow: 0 20px 45px rgba(239, 59, 45, .35);

}

/*====================================
  PARTNERS
====================================*/

.partners {

    background: #f7f7f7;

    padding: 90px 8% 70px;

}

.partners-container {

    max-width: 1400px;

    margin: auto;

    text-align: center;

}

.partners h2 {

    color: #111;

    margin: 15px 0;

    font-size: 2.6rem;

}

.partners-intro {

    color: #666;

    max-width: 700px;

    margin: auto;

    line-height: 1.8;

}

.partners-logos {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 60px;

    margin-top: 70px;

    align-items: center;

    justify-items: center;

}

.partner-logo {

    transition: .35s;

    opacity: .9;

}

.partner-logo:hover {

    opacity: 1;

    transform: translateY(-6px);

}

.partner-adworx img {

    max-width: 180px;

}

.partner-city img {

    max-width: 115px;

}

.partner-province img {

    max-width: 115px;

}

.partner-paddlers img {

    max-width: 160px;

}

.partner-item {

    width: 220px;

    height: 120px;

    display: flex;

    justify-content: center;

    align-items: center;

    transition: transform .35s cubic-bezier(.22, 1, .36, 1);

    will-change: transform;

}

.partner-item:hover {

    transform: translateY(-6px);

}

.partner-item img {

    width: auto;

    height: auto;

    max-width: 190px;

    max-height: 90px;

    object-fit: contain;

    transition: filter .35s ease;

}

.partner-item:hover {

    transform: translateY(-4px) scale(1.05);

}

.organizer-divider {

    width: 160px;
    height: 1px;

    background: #d9d9d9;

    margin: 55px auto 20px;

}

.organized-by-title {

    font-size: .85rem;

    letter-spacing: 4px;

    color: #666;
    ;

    margin-bottom: 15px;

    font-weight: 700;

    text-align: center;

    width: 100%;

}

.organizer-logo {

    display: flex;
    justify-content: center;
    align-items: center;


}

.organizer-logo img {

    width: 220px;

    opacity: .85;

    transition: opacity .35s ease;

    transition:
        transform .35s ease,
        opacity .35s ease,
        filter .35s ease;

    will-change: transform;

}

.organizer-logo img:hover {

    transform: translateY(-4px) scale(1.03);

    opacity: 1;

    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, .18));

}


/*====================================
  FOOTER
====================================*/

.footer-event-logo {

    width: 220px;

    margin-bottom: 18px;

}

.organized-by {

    color: #999;

    font-size: .9rem;

    letter-spacing: 2px;

    text-transform: uppercase;

    margin-bottom: 12px;

}

.footer-organizer-logo {

    width: 170px;

    margin-bottom: 28px;

}

.footer {

    background: #0d0d0d;

    border-top: 1px solid rgba(255, 255, 255, .08);

    padding: 90px 8% 30px;

    overflow: visible;
}

.footer-container {

    max-width: 1400px;

    margin: auto;

    display: grid;

    grid-template-columns: 2fr 1fr 1fr 1.2fr;

    gap: 70px;

    overflow: visible;

}

.footer-brand img {

    width: 240px;

    margin-bottom: 25px;

}

.footer-brand p {

    color: #c7c7c7;

    line-height: 1.8;

    max-width: 380px;

}

.footer-links h4 {

    color: #fff;

    margin-bottom: 22px;

    font-size: 1.15rem;

}

.footer-links {

    display: flex;

    flex-direction: column;

    gap: 14px;

}

.footer-links a {

    color: #bbbbbb;

    text-decoration: none;

    display: inline-block;

    transition:
        color .3s ease,
        transform .3s ease;

}

.footer-links a:hover {

    color: #ff3b30;

    transform: translateX(6px);

}

.footer-social {

    display: flex;
    gap: 12px;
    margin-top: 28px;

}

.footer-social a {

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 50%;

    color: #fff;
    font-size: 18px;

    text-decoration: none;

    transition: .3s;

    overflow: visible;

}

.footer-social a:hover {

    background: #ff3b30;

    border-color: #ff3b30;

    transform: translateY(-3px);

}

.footer-bottom {

    border-top: 1px solid rgba(255, 255, 255, .08);

    margin-top: 60px;

    padding-top: 25px;

    text-align: center;

}

.footer-bottom p {

    color: #888;

    font-size: .95rem;

}

.footer-bottom a {

    color: #ff3b30;

    text-decoration: none;

}

.footer-bottom a:hover {

    text-decoration: underline;

}

.footer-social i {

    font-size: 18px;

    display: block;

    align-items: center;

    justify-content: center;

    line-height: 1;

}

/*====================================
  FLOATING COUNTDOWN
====================================*/

.floating-countdown {

    position: fixed;

    bottom: 20px;

    left: 50%;

    transform: translateX(-50%) translateY(140%);

    width: min(640px, 92%);

    background: rgba(18, 18, 18, .90);

    border: 1px solid rgba(255, 255, 255, .08);

    backdrop-filter: blur(14px);

    opacity: 0;

    -webkit-backdrop-filter: blur(14px);

    color: #fff;

    border-radius: 18px;

    padding: 12px 22px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 40px;

    box-shadow: 0 20px 50px rgba(0, 0, 0, .25);

    transition:
        transform .45s cubic-bezier(.22, 1, .36, 1),
        opacity .45s ease;

    z-index: 9999;

}

.floating-countdown.show {

    transform: translateX(-50%) translateY(0);

    opacity: 1;

}

.floating-left {

    display: flex;

    flex-direction: column;

    gap: 4px;

}

#floating-label {

    font-size: .68rem;

    letter-spacing: 3px;

    color: #9b9b9b;

}

.floating-time {

    font-family: "Bebas Neue", sans-serif;

    font-size: 1.45rem;

    letter-spacing: .5px;

}

.floating-register {

    background: #d92d24;

    transform: translateY(-2px);

    box-shadow: 0 10px 25px rgba(255, 59, 48, .30);

    color: #fff;

    text-decoration: none;

    padding: 10px 22px;

    border-radius: 999px;

    font-size: .95rem;

    font-weight: 700;

    transition: all .3s ease;

}

.floating-register:hover {

    background: #d92d24;

}

/*====================================
  PAGE BANNER
====================================*/

.page-banner {

    position: relative;

    height: 250px;

    background: url("../images/banner/event-banner.jpg") center center/cover no-repeat;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    overflow: hidden;

    background-position: center 40%;

    padding-top: 45px;

}

.page-banner-overlay {

    position: absolute;

    inset: 0;

    background: rgba(0, 0, 0, .58);

}

.page-banner-content {

    position: relative;

    z-index: 2;

    color: #fff;

    padding-top: 45px;

}

.page-banner h1 {

    font-size: 3rem;

    margin: 12px 0;

    font-weight: 800;

}

.page-banner-text {

    color: #d6d6d6;

    font-size: 1.05rem;

    margin-bottom: 22px;

}

.breadcrumb {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 10px;

    font-size: .95rem;

}

.breadcrumb a {

    color: #fff;

    text-decoration: none;

    transition: .3s;

}

.breadcrumb a:hover {

    color: #ff3b30;

}

.breadcrumb span {

    color: #9d9d9d;

}

.breadcrumb strong {

    color: #ff3b30;

}

.event-overview {

    padding: 120px 0 90px;

    background: #fff;

}

.event-overview-grid {

    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: center;

}

.event-overview-image {

    overflow: hidden;

    border-radius: 24px;

}

.event-overview-image img {

    width: 100%;

    border-radius: 18px;

    display: block;

    transition: transform .6s ease;

    box-shadow: 0 35px 70px rgba(0, 0, 0, .18);

    overflow: hidden;


}

.event-overview-image:hover img {

    transform: scale(1.04);

}

.event-overview-content h2 {

    font-size: 3rem;

    color: #222;

    border-left: 5px solid #ff3b30;

    padding-left: 22px;

    max-width: 520px;

    font-weight: 800;

    line-height: 1.1;

    margin-bottom: 14px;

}

.event-overview-content h2 span {

    color: #ff3b30;

}

.event-overview-content p {

    color: #555;

    line-height: 1.9;

    margin-bottom: 18px;

}

.event-highlights {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;

    margin-top: 35px;

}

.event-highlights div {

    display: flex;

    align-items: center;

    gap: 14px;

    padding: 18px;

    border: 1px solid #ececec;

    border-radius: 14px;

    background: #fff;

    transition: .3s ease;

}

.event-highlights div:hover {

    transform: translateY(-4px);

    border-color: #ef3b2d;

    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);

}

.event-highlights i {

    width: 24px;

    height: 24px;

    color: #ef3b2d;

    flex-shrink: 0;

}

.event-highlights span {

    font-weight: 600;

    color: #222;

}

.highlight {

    color: #ff3b30;

    font-weight: 700;

}

.overview-badge {

    display: inline-block;

    padding: 8px 18px;

    background: #fff3f2;

    color: #ff3b30;

    border: 1px solid rgba(255, 59, 48, .15);

    border-radius: 999px;

    font-size: .85rem;

    font-weight: 700;

    margin-bottom: 28px;

}

.text-red {

    color: #e6362b;

    font-weight: 700;

}

.section-divider {

    border: none;

    height: 1px;

    background: #ececec;

    margin: 32px 0;

}

.event-highlights svg {

    width: 24px;

    height: 24px;

    color: #ef3b2d !important;

    stroke: #ef3b2d !important;

}

/*====================================
  RACE CATEGORIES
====================================*/

.race-categories-page {

    padding: 110px 0;

    background: #f8f9fb;

}

.section-title {

    font-size: 3rem;

    font-weight: 800;

    color: #222;

    margin: 12px 0 18px;

}

.section-description {

    max-width: 540px;

    color: #666;

    line-height: 1.8;

    margin-bottom: 60px;

}

.distance-grid {

    margin-top: 70px;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 28px;

}

.distance-card {

    position: relative;

    background: #fff;

    border-radius: 22px;

    padding: 46px 34px 42px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .06);

    transition: all .35s ease;

    border-top: 5px solid transparent;

    display: flex;

    flex-direction: column;

}

.distance-card:hover {

    transform: translateY(-10px);

    border-top: 5px solid #ef3b2d;

    box-shadow: 0 28px 60px rgba(239, 59, 45, .18);

}

.distance-card h3 {

    font-size: 3.2rem;

    color: #ef3b2d;

    margin-bottom: 8px;

    font-family: "Bebas Neue", sans-serif;

    letter-spacing: 1px;

    transition: transform .35s ease;

}

.distance-card:hover h3 {

    transform: translateX(6px);

}

.distance-subtitle {

    font-weight: 700;

    font-size: 1rem;

    color: #222;

    margin-bottom: 22px;

    text-transform: uppercase;

    letter-spacing: 1px;

}

.distance-text {
    color: #666;
    line-height: 1.8;
    margin-bottom: 22px;
}

.distance-card ul {

    list-style: none;

    padding: 0;

    margin: 0;

    margin-top: auto;

}

.distance-card li {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 16px;

    color: #333;

    font-weight: 600;

}

.distance-card svg {

    width: 18px;
    height: 18px;

    stroke: #ef3b2d;

    background: #fff3f2;

    padding: 8px;

    border-radius: 50%;

    flex-shrink: 0;

}

.featured-distance {

    border-top: 6px solid #ef3b2d;

    transform: translateY(-18px);

    box-shadow: 0 35px 80px rgba(239, 59, 45, .18);

}

.featured-distance:hover {

    transform: translateY(-18px);

}

.featured-badge {

    position: absolute;

    top: -16px;

    right: 28px;

    background: #ef3b2d;

    color: #fff;

    padding: 7px 16px;

    border-radius: 999px;

    font-size: .72rem;

    font-weight: 700;

    letter-spacing: 1px;

    box-shadow: 0 10px 20px rgba(239, 59, 45, .25);

}

.distance-info {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #ececec;
}

.price-row {
    display: flex;
    justify-content: space-between;
    margin: 28px 0 20px;
}

.price-label {
    display: block;
    font-size: .72rem;
    letter-spacing: 2px;
    font-weight: 700;
    color: #888;
    margin-bottom: 4px;
}

.price {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ef3b2d;
}

.regular-price {
    color: #222;
}

.distance-info hr {
    border: none;
    border-top: 1px solid #ececec;
    margin: 18px 0;
}

.includes {
    color: #555;
    line-height: 1.7;
    margin-bottom: 16px;
}

.gun-start {
    color: #222;
    font-weight: 600;
}

/*====================================
  AWARDS
====================================*/

.event-awards {

    padding: 110px 0;

    background: #fff;

}

.awards-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 35px;

    margin-top: 60px;

}

.award-card {

    background: #fff;

    border-radius: 22px;

    padding: 40px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .06);

    transition: .35s;

    border-top: 5px solid transparent;

}

.award-card:hover {

    transform: translateY(-8px);

    border-top: 5px solid #ef3b2d;

    box-shadow: 0 25px 55px rgba(239, 59, 45, .18);

}

.award-icon {

    width: 70px;

    height: 70px;

    border-radius: 50%;

    background: #fff3f2;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 24px;

}

.award-icon svg {

    width: 34px;

    height: 34px;

    stroke: #ef3b2d;

}

.award-card h3 {

    font-size: 1.8rem;

    margin-bottom: 16px;

    color: #222;

}

.award-card p {

    color: #666;

    line-height: 1.8;

    margin-bottom: 25px;

}

.award-card ul {

    list-style: none;

    padding: 0;

    margin: 0;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 10px;

}

.award-card li {

    background: #fafafa;

    border-radius: 10px;

    padding: 12px 16px;

    font-weight: 600;

    color: #333;

}

.award-card hr {

    margin: 30px 0;

    border: none;

    border-top: 1px solid #eee;

}

.award-includes {

    display: flex;

    flex-wrap: wrap;

    gap: 14px;

}

.award-includes span {

    background: #fff3f2;

    color: #ef3b2d;

    padding: 8px 14px;

    border-radius: 999px;

    font-weight: 700;

    font-size: .9rem;

}

.award-note {

    margin-top: 45px;

    background: #1f1f1f;

    color: #fff;

    border-radius: 22px;

    padding: 30px;

    display: flex;

    gap: 24px;

    align-items: flex-start;

}

.award-note svg {

    width: 34px;

    height: 34px;

    stroke: #ef3b2d;

    flex-shrink: 0;

}

.award-note h4 {

    margin-bottom: 10px;

    font-size: 1.2rem;

}

.award-note p {

    color: #ddd;

    line-height: 1.8;

}

@media(max-width:991px) {

    .awards-grid {

        grid-template-columns: 1fr;

    }

}

/*====================================
  ROUTE MAPS
====================================*/

.route-maps {

    padding: 110px 0;

    background: #f8f9fb;

}

.route-grid {

    margin-top: 60px;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 30px;

}

.route-card {

    background: #fff;

    border-radius: 22px;

    padding: 45px;

    text-align: center;

    border-top: 5px solid transparent;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .06);

    transition: .35s;

}

.route-card:hover {

    transform: translateY(-8px);

    border-top: 5px solid #ef3b2d;

    box-shadow: 0 25px 60px rgba(239, 59, 45, .16);

}

.route-icon {

    width: 90px;

    height: 90px;

    margin: auto;

    margin-bottom: 24px;

    border-radius: 50%;

    background: #fff3f2;

    display: flex;

    align-items: center;

    justify-content: center;

}

.route-icon svg {

    width: 42px;

    height: 42px;

    stroke: #ef3b2d;

}

.route-card h3 {

    font-size: 1.8rem;

    margin-bottom: 16px;

    color: #222;

}

.route-card p {

    color: #666;

    line-height: 1.8;

    margin-bottom: 35px;

}

.coming-soon {

    display: inline-block;

    padding: 12px 24px;

    border-radius: 999px;

    background: #fff3f2;

    color: #ef3b2d;

    font-weight: 700;

    letter-spacing: .5px;

}

.featured-route {

    border-top: 5px solid #ef3b2d;

}

.route-card:hover .route-icon {

    transform: scale(1.08);

    transition: .35s;

}

.route-card:hover .coming-soon {

    background: #ef3b2d;

    color: #fff;

}

@media(max-width:991px) {

    .route-grid {

        grid-template-columns: 1fr;

    }

}

/*====================================
  EVENT SCHEDULE
====================================*/

.event-schedule {

    padding: 110px 0;

    background: #fff;

}

.schedule-timeline {

    position: relative;

    margin-top: 60px;

}

.schedule-timeline::before {

    content: "";

    position: absolute;

    left: 120px;

    top: 0;

    bottom: 0;

    width: 3px;

    background: #ef3b2d;

}

.schedule-item {

    display: grid;

    grid-template-columns: 80px 1fr;

    gap: 45px;

    margin-bottom: 45px;

    position: relative;

}

.timeline-date {

    background: #ef3b2d;

    color: #fff;

    border-radius: 18px;

    text-align: center;

    padding: 18px 10px;

    font-size: .82rem;

    font-weight: 700;

    letter-spacing: 1px;

    z-index: 2;

    box-shadow: 0 10px 25px rgba(239, 59, 45, .25);

}

.timeline-date strong {

    display: block;

    font-size: 2rem;

    margin-top: 5px;

}

.race-day {

    background: #111;

}

.timeline-content {

    background: #fff;

    border-radius: 20px;

    padding: 30px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .06);

    transition: .35s;

}

.timeline-content:hover {

    transform: translateY(-6px);

    box-shadow: 0 25px 60px rgba(239, 59, 45, .15);

}

.timeline-content h3 {

    margin-bottom: 18px;

    color: #222;

}

.timeline-content p {

    margin-bottom: 16px;

    color: #555;

    line-height: 1.7;

}

.timeline-muted {

    color: #999;

    font-style: italic;

}

.schedule-note {

    margin-top: 60px;

    background: #fff3f2;

    border-left: 5px solid #ef3b2d;

    border-radius: 16px;

    padding: 22px 28px;

    display: flex;

    align-items: flex-start;

    gap: 18px;

}

.schedule-note svg {

    width: 24px;

    height: 24px;

    stroke: #ef3b2d;

    flex-shrink: 0;

}

.schedule-note p {

    margin: 0;

    color: #555;

    line-height: 1.7;

}

@media (max-width:768px) {

    .schedule-timeline::before {
        display: none;
    }

    .schedule-item {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .timeline-date {
        width: 120px;
    }

}

/*====================================
  FAQ
====================================*/

.faq-section {
    padding: 110px 0;
    background: #f8f9fb;
}

.faq-section .section-title {
    color: #222;
}

.faq-section .section-description {
    color: #666;
}

.faq-list {

    margin-top: 70px;

}

.faq-item {

    background: #fff;

    border-radius: 18px;

    margin-bottom: 18px;

    box-shadow: 0 10px 35px rgba(0, 0, 0, .05);

    overflow: hidden;

    transition: .3s;

}

.faq-item:hover {

    box-shadow: 0 18px 45px rgba(239, 59, 45, .12);

}

.faq-item summary {

    list-style: none;

    cursor: pointer;

    padding: 24px 30px;

    font-size: 1.1rem;

    font-weight: 700;

    color: #222;

    position: relative;

    transition: .3s;

}

.faq-item summary::-webkit-details-marker {

    display: none;

}

.faq-item summary::after {

    content: "+";

    transition: .3s ease;

    position: absolute;

    right: 30px;

    top: 50%;

    transform: translateY(-50%);

    font-size: 1.8rem;

    color: #ef3b2d;

    font-weight: 300;

}

.faq-item[open] summary::after {

    transform: translateY(-50%) rotate(45deg);

}

.faq-item[open] summary {

    color: #ef3b2d;

    background: #fff3f2;

}

.faq-item p {

    padding: 28px 30px 30px;

    color: #555;

    line-height: 1.9;

}

/*====================================
  COMING SOON
====================================*/

.coming-page {

    min-height: calc(100vh - 250px);

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 140px 0 80px;

    background: #f8f9fb;

}

.coming-soon-card {

    max-width: 760px;

    margin: auto;

    text-align: center;

    background: #fff;

    border-radius: 28px;

    padding: 70px 60px;

    box-shadow: 0 20px 60px rgba(0, 0, 0, .08);

}

.coming-icon {

    width: 95px;

    height: 95px;

    margin: 0 auto 30px;

    background: #fff3f2;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

}

.coming-icon svg {

    width: 46px;

    height: 46px;

    stroke: #ef3b2d;

}

.coming-page h1 {

    font-family: "Bebas Neue", sans-serif;

    font-size: 4rem;

    letter-spacing: 1px;

    color: #222;

    margin: 15px 0 25px;

}

.coming-description {

    max-width: 560px;

    margin: 0 auto 40px;

    color: #666;

    line-height: 1.9;

    font-size: 1.05rem;

}

.coming-page .btn-primary {

    display: inline-flex;

    align-items: center;

    justify-content: center;

}

.coming-soon-card:hover {

    transform: translateY(-6px);

    transition: .35s;

    box-shadow: 0 35px 80px rgba(239, 59, 45, .15);

}

@media(max-width:768px) {

    .coming-soon-card {

        padding: 50px 30px;

    }

    .coming-soon h1 {

        font-size: 3rem;

    }

}

.coming-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    padding: 16px 34px;

    background: #ef3b2d;

    color: #fff;

    border-radius: 999px;

    text-decoration: none;

    font-weight: 700;

    transition: .35s ease;

    box-shadow: 0 15px 35px rgba(239, 59, 45, .25);

}

.coming-btn:hover {

    background: #d92f22;

    transform: translateY(-3px);

    box-shadow: 0 22px 45px rgba(239, 59, 45, .35);

}

.coming-btn i {

    font-size: 1rem;

}

/*====================================
  MOBILE NAVIGATION
====================================*/

.hamburger {

    display: none;

    flex-direction: column;

    justify-content: center;

    gap: 6px;

    cursor: pointer;

    z-index: 1100;

}

.hamburger span {

    width: 28px;

    height: 3px;

    background: #fff;

    border-radius: 999px;

    transition: .3s ease;

}

/*====================================
  MOBILE MENU OVERLAY
====================================*/

.mobile-overlay {

    position: fixed;

    inset: 0;

    background: rgba(0, 0, 0, .55);

    opacity: 0;

    visibility: hidden;

    transition: .3s;

    z-index: 1040;

}

.mobile-overlay.active {

    opacity: 1;

    visibility: visible;

}


/*====================================
  RESPONSIVE
====================================*/

/* Laptop */
@media (max-width:1200px) {}

/* Tablet */
@media (max-width:992px) {

    .nav-links {

        position: fixed;

        top: 92px;
        right: -100%;

        width: 320px;
        max-width: 85%;

        height: calc(100vh - 92px);

        background: #111;

        display: flex;

        flex-direction: column;

        align-items: flex-start;

        justify-content: flex-start;

        gap: 0;

        padding: 30px 35px 40px;

        transition: right .35s ease;

        z-index: 1050;

    }

    .nav-links.active {

        right: 0;

    }

    .nav-links li {

        width: 100%;

    }

    .nav-links .dropdown-menu {

        position: static !important;

        transform: none !important;

        top: auto !important;

        left: auto !important;

        min-width: 100%;

        width: 100%;

        margin-top: 10px;

        padding: 0;

        background: #2b2b2b;

        border: none;

        border-radius: 12px;

        box-shadow: none;

        opacity: 1 !important;

        visibility: visible !important;

        display: none;

    }

    .nav-links li:hover .dropdown-menu {

        display: none;

    }

    .nav-links li.open .dropdown-menu {

        display: block !important;

    }

    .nav-links .dropdown-menu li {

        width: 100%;
        background: #2b2b2b;

    }

    .nav-links .dropdown-menu li:not(:last-child) {

        border-bottom: 1px solid rgba(255, 255, 255, .08);

    }

    .nav-links .dropdown-menu a {

        display: block;
        width: 100%;

        padding: 16px 20px;

        color: #ffffff !important;

        background: #2b2b2b !important;

        text-decoration: none;

        transition: .25s;

    }

    .nav-links .dropdown-menu li:hover {

        background: #ef3b2d !important;

    }

    .nav-links .dropdown-menu li:hover a {

        color: #fff !important;
        background: #ef3b2d !important;

    }

    .nav-links .dropdown-menu a.active {

        color: #ef3b2d;

        font-weight: 700;

    }



    .nav-links>li>a {

        width: 100%;

        padding: 18px 0;

        border-bottom: 1px solid rgba(255, 255, 255, .08);

        font-size: 1.1rem;

    }

    .register-btn {

        display: none;

    }

    .hamburger {

        display: flex;

    }

    .logo img {

        height: 60px;

    }

    .header {

        padding: 16px 6%;

    }

    .distance-grid {

        grid-template-columns: repeat(2, 1fr);

        gap: 24px;

    }

    /* Homepage - Journey */

    .journey-timeline {

        grid-template-columns: repeat(2, 1fr);

        gap: 24px;

    }

    .timeline-line {

        display: none;

    }

    .timeline-item {

        height: auto;

        min-height: 220px;

        padding: 35px 25px;

    }

    .timeline-item.active {

        transform: none;

    }

    .journey-stats {

        grid-template-columns: repeat(2, 1fr);

    }

    /* Homepage - Countdown Banner */

    .countdown-banner {

        padding: 140px 25px 100px;

    }

    .countdown-event {

        font-size: 2.8rem;

        margin-bottom: 20px;

    }

    .countdown-banner h2 {

        font-size: 3rem;

        line-height: 1.15;

        margin: 15px 0 20px;

    }

    .countdown-text {

        max-width: 650px;

        font-size: 1.05rem;

        line-height: 1.7;

        margin-bottom: 40px;

    }

    .count-card {

        width: 145px;

        height: 130px;

    }

    .count-card span {

        font-size: 3.6rem;

    }

    .count-card small {

        font-size: .75rem;

        letter-spacing: 3px;

    }

}

/* Mobile */
@media (max-width:768px) {

    .floating-countdown {

        flex-direction: column;

        gap: 14px;

        width: calc(100% - 24px);
        max-width: 360px;

        padding: 16px;
    }

    .floating-left {

        align-items: center;
        text-align: center;
    }

    .floating-time {

        justify-content: center;
    }

    .floating-register {

        width: 100%;
        text-align: center;
    }


    /* Header */

    .header {

        padding: 14px 5%;

    }

    .distance-grid {

        grid-template-columns: 1fr;

        gap: 24px;

    }

    .logo img {

        height: 50px;

    }

    .nav-links {

        width: 100%;

        max-width: 100%;

        top: 78px;

        height: calc(100vh - 78px);

        padding: 25px;

    }

    .nav-links>li>a {

        font-size: 1rem;

        padding: 16px 0;

    }

    .hamburger {

        transform: scale(.9);

    }

    /* Homepage - Hero */

    .hero {
        min-height: 100vh;
        padding: 0;
    }

    .hero-content {
        padding: 110px 20px 70px;
    }

    .campaign-logo {

        width: 170px;

        margin-bottom: 20px;

    }

    .event-date {

        font-size: 1.1rem;

        letter-spacing: 2px;

    }

    .hero h1 {

        font-size: 4.2rem;

        line-height: .95;

        margin: 20px 0;

    }

    .hero h2 {

        font-size: 1.3rem;

        line-height: 1.4;

        margin-bottom: 40px;

    }

    .countdown-box p {

        font-size: 1rem;

    }

    #countdown {

        font-size: 1.05rem;

        line-height: 1.5;

    }

    .hero-btn {

        width: 230px;

        justify-content: center;

    }

    .scroll-down {

        display: none;

    }

    /* Homepage - Choose Your Challenge */

    .challenge {

        padding: 80px 20px;

    }

    .challenge-header {

        margin-bottom: 50px;

    }

    .challenge-header h2 {

        font-size: 58px;

        line-height: .95;

    }

    .challenge-intro {

        font-size: 1rem;

        line-height: 1.8;

    }

    .challenge-grid {

        grid-template-columns: 1fr;

        gap: 24px;

    }

    .challenge-card {

        padding: 32px 28px;

    }

    .distance {

        font-size: 72px;

    }

    .challenge-card h3 {

        font-size: 2rem;

    }

    .challenge-card p {

        font-size: 1rem;

        margin-bottom: 24px;

    }

    .challenge-info {

        align-items: flex-start;

        gap: 10px;

    }

    .challenge-info span {

        font-size: .95rem;

    }

    .challenge-info strong {

        font-size: 1rem;

        text-align: right;

    }

    /* Homepage - Registration Fees */

    .pricing {

        padding: 80px 20px;

    }

    .pricing-header {

        margin-bottom: 45px;

    }

    .pricing-header h2 {

        font-size: 58px;

        line-height: .95;

    }

    .pricing-subtitle {

        font-size: 1rem;

        line-height: 1.8;

    }

    .pricing-row div {

        padding: 18px 12px;

        font-size: 1rem;

        text-align: center;

    }

    .pricing-head div {

        font-size: 1.1rem;

    }

    .pricing-row div:first-child {

        font-weight: 700;

    }

    /* Homepage - Race Inclusions */

    .inclusions {

        padding: 80px 20px;

    }

    .inclusion-grid {

        grid-template-columns: 1fr;

        gap: 20px;

        margin-top: 45px;

    }

    .inclusion-card {

        min-height: auto;

        padding: 32px 28px;

    }

    .inclusion-card h3 {

        font-size: 2rem;

        margin-bottom: 14px;

    }

    .inclusion-card p {

        font-size: 1rem;

        line-height: 1.8;

    }

    /* Homepage - Heritage Experience */

    .experience {

        padding: 80px 20px;

    }

    .experience-header {

        margin-bottom: 50px;

    }

    .experience-header h2 {

        font-size: 58px;

        line-height: .95;

    }

    .experience-intro {

        font-size: 1rem;

        line-height: 1.8;

    }




    .experience-row {

        grid-template-columns: 1fr;

        gap: 28px;

        margin-bottom: 70px;

    }

    .experience-row.reverse .experience-image,

    .experience-row.reverse .experience-content {

        order: initial;

    }

    .experience-image {

        border-radius: 20px;

    }

    .experience-image img {

        height: 260px;

    }

    .experience-content {

        text-align: center;

    }

    .experience-content h3 {

        font-size: 2rem;

        margin-bottom: 18px;

    }

    .experience-content p {

        font-size: 1rem;

        line-height: 1.8;

    }


    /* Homepage - Heritage Journey */

    .journey {

        padding: 80px 20px;

    }

    .journey-header {

        margin-bottom: 50px;

    }

    .journey-header h2 {

        font-size: 58px;

        line-height: .95;

    }

    .journey-intro {

        font-size: 1rem;

        line-height: 1.8;

    }

    .journey-timeline {

        grid-template-columns: 1fr;

        gap: 18px;

        margin-bottom: 50px;

    }

    .timeline-line {

        display: none;

    }

    .timeline-item {

        height: auto;

        min-height: 170px;

        padding: 28px 24px;

    }

    .timeline-item.active {

        transform: none;

    }

    .journey-stats {

        grid-template-columns: repeat(2, 1fr);

        gap: 18px;

    }

    .stat-card {

        padding: 28px 18px;

    }

    .stat-card h3 {

        font-size: 2.4rem;

    }

    .stat-card p {

        font-size: .95rem;

    }

    /*====================================
  PARTNERS
====================================*/

    .partners {

        background: #f7f7f7;

        padding: 90px 8% 70px;

    }

    .partners-container {

        max-width: 1400px;

        margin: auto;

        text-align: center;

    }

    .partners h2 {

        color: #111;

        margin: 15px 0;

        font-size: 2.6rem;

    }

    .partners-intro {

        color: #666;

        max-width: 700px;

        margin: auto;

        line-height: 1.8;

    }

    .partners-logos {

        display: grid;

        grid-template-columns: repeat(4, 1fr);

        gap: 60px;

        margin-top: 70px;

        align-items: center;

        justify-items: center;

    }

    .partner-logo {

        transition: .35s;

        opacity: .9;

    }

    .partner-logo:hover {

        opacity: 1;

        transform: translateY(-6px);

    }

    .partner-adworx img {

        max-width: 180px;

    }

    .partner-city img {

        max-width: 115px;

    }

    .partner-province img {

        max-width: 115px;

    }

    .partner-paddlers img {

        max-width: 160px;

    }

    .partner-item {

        width: 220px;

        height: 120px;

        display: flex;

        justify-content: center;

        align-items: center;

        transition: transform .35s cubic-bezier(.22, 1, .36, 1);

        will-change: transform;

    }

    .partner-item:hover {

        transform: translateY(-6px);

    }

    .partner-item img {

        width: auto;

        height: auto;

        max-width: 190px;

        max-height: 90px;

        object-fit: contain;

        transition: filter .35s ease;

    }

    .partner-item:hover {

        transform: translateY(-4px) scale(1.05);

    }

    .organizer-divider {

        width: 160px;
        height: 1px;

        background: #d9d9d9;

        margin: 55px auto 20px;

    }

    .organized-by-title {

        font-size: .85rem;

        letter-spacing: 4px;

        color: #666;
        ;

        margin-bottom: 15px;

        font-weight: 700;

        text-align: center;

        width: 100%;

    }

    .organizer-logo {

        display: flex;
        justify-content: center;
        align-items: center;


    }

    .organizer-logo img {

        width: 220px;

        opacity: .85;

        transition: opacity .35s ease;

        transition:
            transform .35s ease,
            opacity .35s ease,
            filter .35s ease;

        will-change: transform;

    }

    .organizer-logo img:hover {

        transform: translateY(-4px) scale(1.03);

        opacity: 1;

        filter: drop-shadow(0 10px 20px rgba(0, 0, 0, .18));

    }

    .partners-logos {

        grid-template-columns: repeat(2, 1fr);

        gap: 35px 20px;

        margin-top: 45px;

    }

    .partner-item {

        width: 100%;

        height: 100px;

    }

    .partner-item img {

        max-width: 130px;

        max-height: 70px;

    }

    .organizer-divider {

        width: 120px;

        margin: 45px auto 18px;

    }

    .organized-by-title {

        font-size: .8rem;

        letter-spacing: 3px;

    }

    .organizer-logo img {

        width: 180px;

    }

    /* Homepage - Footer */

    .footer {

        padding: 70px 20px 30px;

    }

    .footer-container {

        grid-template-columns: 1fr;

        gap: 45px;

        text-align: center;

    }

    .footer-brand {

        display: flex;

        flex-direction: column;

        align-items: center;

    }

    .footer-brand img {

        width: 220px;

        margin-bottom: 20px;

    }

    .footer-brand p {

        max-width: 320px;

    }


    .footer-social {

        justify-content: center;

        margin-top: 24px;

    }

    .footer-links {

        align-items: center;

        gap: 12px;

    }

    .footer-links h4 {

        margin-bottom: 14px;

    }

    .footer-links {

        align-items: center;

        gap: 12px;

    }

    .footer-links h4 {

        margin-bottom: 14px;

    }

    /*====================================
  PAGE BANNER
====================================*/

    .page-banner {

        position: relative;

        height: 250px;

        background: url("../images/banner/event-banner.jpg") center center/cover no-repeat;

        display: flex;

        align-items: center;

        justify-content: center;

        text-align: center;

        overflow: hidden;

        background-position: center 40%;

        padding-top: 45px;

    }

    .page-banner-overlay {

        position: absolute;

        inset: 0;

        background: rgba(0, 0, 0, .58);

    }

    .page-banner-content {

        position: relative;

        z-index: 2;

        color: #fff;

        padding-top: 45px;

    }

    .page-banner h1 {

        font-size: 3rem;

        margin: 12px 0;

        font-weight: 800;

    }

    .page-banner-text {

        color: #d6d6d6;

        font-size: 1.05rem;

        margin-bottom: 22px;

    }

    .breadcrumb {

        display: flex;

        justify-content: center;

        align-items: center;

        gap: 10px;

        font-size: .95rem;

    }

    .breadcrumb a {

        color: #fff;

        text-decoration: none;

        transition: .3s;

    }

    .breadcrumb a:hover {

        color: #ff3b30;

    }

    .breadcrumb span {

        color: #9d9d9d;

    }

    .breadcrumb strong {

        color: #ff3b30;

    }

    .event-overview {

        padding: 70px 24px;

        background: #fff;

    }

    .event-overview .container {

        padding: 0;

        width: 100%;

    }

    .event-overview-grid {

        max-width: 1200px;

        margin: auto;

        display: flex;

        flex-direction: column;

        gap: 35px;

        gap: 70px;

        align-items: center;

    }

    .event-overview-image {

        overflow: hidden;

        border-radius: 24px;

        order: -1;

    }

    .event-overview-image img {

        width: 100%;

        border-radius: 18px;

        display: block;

        transition: transform .6s ease;

        box-shadow: 0 35px 70px rgba(0, 0, 0, .18);

        overflow: hidden;


    }

    .event-overview-image:hover img {

        transform: scale(1.04);

    }

    .event-overview-content h2 {

        font-size: 3rem;

        color: #222;

        border-left: 5px solid #ff3b30;

        padding-left: 22px;

        max-width: 520px;

        font-weight: 800;

        line-height: 1.1;

        margin-bottom: 14px;

    }

    .event-overview-content h2 span {

        color: #ff3b30;

    }

    .event-overview-content p {

        color: #555;

        line-height: 1.9;

        margin-bottom: 18px;

    }

    .event-highlights {

        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 14px;

    }

    .event-highlights div {

        display: flex;

        flex-direction: column;

        justify-content: center;

        align-items: flex-start;

        min-height: 110px;

    }

    .event-highlights div:hover {

        transform: translateY(-4px);

        border-color: #ef3b2d;

        box-shadow: 0 15px 35px rgba(0, 0, 0, .08);

    }

    .event-highlights i {

        width: 24px;

        height: 24px;

        color: #ef3b2d;

        flex-shrink: 0;

    }

    .event-highlights span {

        font-weight: 600;

        color: #222;

    }

    .highlight {

        color: #ff3b30;

        font-weight: 700;

    }

    .overview-badge {

        display: inline-block;

        padding: 8px 18px;

        background: #fff3f2;

        color: #ff3b30;

        border: 1px solid rgba(255, 59, 48, .15);

        border-radius: 999px;

        font-size: .85rem;

        font-weight: 700;

        margin-bottom: 28px;

    }

    .text-red {

        color: #e6362b;

        font-weight: 700;

    }

    .section-divider {

        border: none;

        height: 1px;

        background: #ececec;

        margin: 32px 0;

    }

    .event-highlights svg {

        width: 24px;

        height: 24px;

        color: #ef3b2d !important;

        stroke: #ef3b2d !important;

    }

    .event-overview-content {

        order: 1;

    }

    .event-overview-image {

        order: 2;

    }

    .event-overview-content h2 {

        font-size: 3rem;

        padding-left: 16px;

        border-left: 4px solid #ef3b2d;

        margin-bottom: 18px;

    }

    .overview-badge {

        font-size: .95rem;

        padding: 12px 18px;

        margin-bottom: 22px;

    }


    .event-overview-content p {

        font-size: 1.08rem;

        line-height: 1.9;

    }

    .event-highlights {

        gap: 14px;

        margin-top: 28px;

    }

    .event-highlights div {

        padding: 16px;

    }

    .event-overview-image img {

        height: 300px;

        object-fit: cover;

    }

    .event-overview-image {

        width: 100%;

    }

    .event-overview-image img {

        width: 100%;

        height: 260px;

        object-fit: cover;

        display: block;

    }

    /*====================================
  RACE CATEGORIES
====================================*/

    .race-categories-page {

        padding: 70px 24px;

        background: #f8f9fb;

    }

    .race-categories-page .container {

        padding: 0;

        width: 100%;

    }

    .section-title {

        font-size: 3rem;

        font-weight: 800;

        color: #222;

        margin: 12px 0 18px;

    }

    .section-description {

        max-width: 540px;

        color: #666;

        line-height: 1.8;

        margin-bottom: 60px;

    }

    .distance-grid {

        margin-top: 70px;

        display: grid;

        grid-template-columns: repeat(4, 1fr);

        gap: 28px;

    }

    .distance-card {

        position: relative;

        background: #fff;

        border-radius: 22px;

        padding: 46px 34px 42px;

        box-shadow: 0 15px 40px rgba(0, 0, 0, .06);

        transition: all .35s ease;

        border-top: 5px solid transparent;

        display: flex;

        flex-direction: column;

    }

    .distance-card:hover {

        transform: translateY(-10px);

        border-top: 5px solid #ef3b2d;

        box-shadow: 0 28px 60px rgba(239, 59, 45, .18);

    }

    .distance-card h3 {

        font-size: 3.2rem;

        color: #ef3b2d;

        margin-bottom: 8px;

        font-family: "Bebas Neue", sans-serif;

        letter-spacing: 1px;

        transition: transform .35s ease;

    }

    .distance-card:hover h3 {

        transform: translateX(6px);

    }

    .distance-subtitle {

        font-weight: 700;

        font-size: 1rem;

        color: #222;

        margin-bottom: 22px;

        text-transform: uppercase;

        letter-spacing: 1px;

    }

    .distance-text {
        color: #666;
        line-height: 1.8;
        margin-bottom: 22px;
    }

    .distance-card ul {

        list-style: none;

        padding: 0;

        margin: 0;

        margin-top: auto;

    }

    .distance-card li {

        display: flex;

        align-items: center;

        gap: 12px;

        margin-bottom: 16px;

        color: #333;

        font-weight: 600;

    }

    .distance-card svg {

        width: 18px;
        height: 18px;

        stroke: #ef3b2d;

        background: #fff3f2;

        padding: 8px;

        border-radius: 50%;

        flex-shrink: 0;

    }

    .featured-distance {

        border-top: 6px solid #ef3b2d;

        transform: translateY(-18px);

        box-shadow: 0 35px 80px rgba(239, 59, 45, .18);

    }

    .featured-distance:hover {

        transform: translateY(-18px);

    }

    .featured-badge {

        position: absolute;

        top: -16px;

        right: 28px;

        background: #ef3b2d;

        color: #fff;

        padding: 7px 16px;

        border-radius: 999px;

        font-size: .72rem;

        font-weight: 700;

        letter-spacing: 1px;

        box-shadow: 0 10px 20px rgba(239, 59, 45, .25);

    }

    .distance-info {
        margin-top: 24px;
        padding-top: 20px;
        border-top: 1px solid #ececec;
    }

    .price-row {
        display: flex;
        justify-content: space-between;
        margin: 28px 0 20px;
    }

    .price-label {
        display: block;
        font-size: .72rem;
        letter-spacing: 2px;
        font-weight: 700;
        color: #888;
        margin-bottom: 4px;
    }

    .price {
        font-size: 1.8rem;
        font-weight: 800;
        color: #ef3b2d;
    }

    .regular-price {
        color: #222;
    }

    .distance-info hr {
        border: none;
        border-top: 1px solid #ececec;
        margin: 18px 0;
    }

    .includes {
        color: #555;
        line-height: 1.7;
        margin-bottom: 16px;
    }

    .gun-start {
        color: #222;
        font-weight: 600;
    }

    .section-title {

        font-size: 3rem;

        line-height: 1.05;

    }

    .section-description {

        max-width: 100%;

        margin-bottom: 45px;

        font-size: 1rem;

    }

    .distance-grid {

        grid-template-columns: 1fr;

        gap: 24px;

        margin-top: 40px;

    }

    .distance-card {

        padding: 32px 24px;

    }

    .distance-card h3 {

        font-size: 4rem;

    }

    .distance-subtitle {

        font-size: 1.15rem;

        margin-bottom: 16px;

    }

    .distance-text {

        font-size: 1rem;

        line-height: 1.8;

    }

    .price {

        font-size: 1.55rem;

    }

    .featured-distance {

        transform: none;

    }

    .featured-distance:hover {

        transform: none;

    }

    @media (max-width:768px) {

        .event-awards {

            padding: 70px 24px;

        }

        .event-awards .container {

            padding: 0;

            width: 100%;


        }

    }


    @media (max-width:768px) {

        .event-awards .section-title {

            font-size: 3rem;

            line-height: 1.05;

        }

        .event-awards .section-description {

            max-width: 100%;

            font-size: 1rem;

            margin-bottom: 40px;

        }

    }

    @media (max-width:768px) {

        .awards-grid {

            grid-template-columns: 1fr;

            gap: 24px;

        }

    }

    @media (max-width:768px) {

        .award-card {

            padding: 28px 22px;

        }

    }

    @media (max-width:768px) {

        .award-icon {

            width: 60px;
            height: 60px;

            margin-bottom: 20px;

        }

        .award-icon svg {

            width: 28px;
            height: 28px;

        }

    }

    @media (max-width:768px) {

        .award-card h3 {

            font-size: 1.9rem;

        }

    }

    @media (max-width:768px) {

        .award-card ul {

            grid-template-columns: 1fr;

        }

    }

    @media (max-width:768px) {

        .award-includes {

            gap: 10px;

        }

        .award-includes span {

            font-size: .82rem;

            padding: 7px 12px;

        }

    }

    @media (max-width:768px) {

        .award-note {

            flex-direction: column;

            gap: 18px;

            padding: 24px;

        }

    }

    /*====================================
  MOBILE - ROUTE MAPS
====================================*/

    @media (max-width:768px) {

        .route-maps {

            padding: 70px 24px;

        }

        .route-maps .container {

            padding: 0;

        }

        .route-maps .section-title {

            font-size: 3rem;
            line-height: 1.05;

        }

        .route-maps .section-description {

            max-width: 100%;
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 40px;

        }

        .route-grid {

            gap: 22px;
            margin-top: 40px;

        }

        .route-card {

            padding: 28px 22px;

        }

        .route-icon {

            width: 70px;
            height: 70px;

            margin-bottom: 18px;

        }

        .route-icon svg {

            width: 32px;
            height: 32px;

        }

        .route-card h3 {

            font-size: 1.55rem;
            margin-bottom: 12px;

        }

        .route-card p {

            font-size: .98rem;
            line-height: 1.75;
            margin-bottom: 24px;

        }

        .coming-soon {

            display: block;
            width: 100%;

            text-align: center;

            padding: 14px 18px;

            font-size: .9rem;
            line-height: 1.4;

        }

        /* Featured card shouldn't float on mobile */

        .featured-route {

            transform: none;

        }

    }

    .event-schedule {

        padding: 70px 24px;

    }

    .event-schedule .container {

        padding: 0;

    }

    .schedule-timeline {

        margin-top: 40px;

    }

    .schedule-timeline::before {

        display: none;

    }

    .schedule-item {

        grid-template-columns: 1fr;

        gap: 16px;

        margin-bottom: 24px;

    }

    .timeline-date {

        width: 100px;
        padding: 14px 8px;

        font-size: .72rem;

        border-radius: 14px;

    }

    .timeline-date strong {

        font-size: 1.6rem;

    }

    .timeline-content {

        padding: 22px;

        border-radius: 18px;

    }

    .timeline-content h3 {

        font-size: 1.35rem;
        margin-bottom: 14px;

    }

    .timeline-content p {

        font-size: .95rem;
        line-height: 1.7;

    }

    .schedule-note {

        margin-top: 35px;

        padding: 20px;

        border-radius: 18px;

        gap: 14px;

    }

    .schedule-note p {

        font-size: .95rem;

    }

    .faq-section {

        padding: 70px 24px;

    }

    .faq-section .container {

        padding: 0;

    }

    .faq-list {

        margin-top: 40px;

    }

    .faq-item {

        border-radius: 16px;

        margin-bottom: 14px;

    }

    .faq-item summary {

        padding: 20px 22px;

        padding-right: 50px;

        font-size: 1rem;

        line-height: 1.5;

    }

    .faq-item summary::after {

        right: 20px;

        font-size: 1.5rem;

    }

    .faq-item p {

        padding: 20px 22px 24px;

        font-size: .95rem;

        line-height: 1.8;

    }

    .faq-list {

        margin-top: 45px;

    }

    .timeline-date {

        width: 110px;

    }


}



/* Small Mobile */
@media (max-width:576px) {}