/*==================================================
ZAHS GREEN STRIDES FUN RUN
Version: 2.0
==================================================*/

/*==========================
ROOT VARIABLES
==========================*/

:root {
    --primary: #16a34a;
    --primary-dark: #0f5132;
    --primary-light: #4ade80;
    --primary-muted: #dcfce7;

    --accent: #f59e0b;
    --accent-dark: #d97706;
    --accent-light: #fef3c7;

    --white: #ffffff;
    --light: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-400: #9ca3af;
    --gray-600: #4b5563;
    --dark: #111827;

    --shadow-sm: 0 4px 12px rgba(0, 0, 0, .08);
    --shadow: 0 10px 30px rgba(0, 0, 0, .12);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, .18);
    --shadow-green: 0 12px 40px rgba(22, 163, 74, .30);

    --radius-sm: 12px;
    --radius: 20px;
    --radius-lg: 30px;

    --transition: .35s cubic-bezier(.4, 0, .2, 1);
}

/*==========================
RESET & BASE
==========================*/

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    background: var(--white);
    color: var(--dark);
    overflow-x: hidden;
}

img {
    width: 100%;
    display: block;
    object-fit: cover;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.section-padding {
    padding: 110px 0;
}

/*==========================
PRELOADER
==========================*/

#preloader {
    position: fixed;
    inset: 0;
    background: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, .2);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin .8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/*==========================
SECTION LABELS & TITLES
==========================*/

.section-tag {
    display: inline-block;
    background: var(--primary-muted);
    color: var(--primary-dark);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 18px;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 18px;
}

.section-title span {
    color: var(--primary);
}

.section-lead {
    font-size: 1.05rem;
    color: var(--gray-600);
    max-width: 600px;
}

/*==========================
NAVBAR
==========================*/

.navbar {
    padding: 16px 0;
    transition: background .4s ease, padding .4s ease, box-shadow .4s ease;
    background: rgba(15, 81, 50, .10);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.navbar.scrolled {
    background: rgba(15, 81, 50, .97);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, .20);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.navbar-brand img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, .4);
}

.brand-title {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.brand-subtitle {
    display: block;
    font-size: .7rem;
    color: var(--accent);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-link {
    color: rgba(255, 255, 255, .88);
    font-size: .875rem;
    margin: 0 12px;
    position: relative;
    padding-top: 6px;
    padding-bottom: 6px;
    transition: color var(--transition);
}

.nav-link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--accent);
    left: 50%;
    bottom: -2px;
    transform: translateX(-50%);
    transition: width .3s ease;
    border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.navbar .btn-warning {
    font-size: .875rem;
    font-weight: 600;
    padding: 8px 22px;
    border-radius: 50px;
    color: var(--dark);
    background: var(--accent);
    border: none;
    box-shadow: 0 4px 15px rgba(245, 158, 11, .35);
    transition: var(--transition);
}

.navbar .btn-warning:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, .45);
}

.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, .4);
    padding: 6px 10px;
}

.navbar-toggler-icon {
    filter: invert(1);
}

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

#hero {
    position: relative;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    background: url("../images/hero.jpg") center center / cover no-repeat;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(7, 64, 35, .93) 0%,
        rgba(15, 81, 50, .82) 50%,
        rgba(22, 163, 74, .55) 100%
    );
    z-index: 1;
}

.hero-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 130px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 130'%3E%3Cpath fill='%23f9fafb' fill-opacity='1' d='M0,64L80,69.3C160,75,320,85,480,80C640,75,800,53,960,48C1120,43,1280,53,1360,58.7L1440,64L1440,130L1360,130C1280,130,1120,130,960,130C800,130,640,130,480,130C320,130,160,130,80,130L0,130Z'%3E%3C/path%3E%3C/svg%3E") center bottom / cover no-repeat;
    z-index: 2;
}

#hero .container {
    position: relative;
    z-index: 3;
    padding-top: 90px;
    padding-bottom: 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 158, 11, .18);
    border: 1px solid rgba(245, 158, 11, .45);
    color: var(--accent);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    animation: fadeInDown .8s ease both;
}

#hero h1 {
    font-size: clamp(2.8rem, 8vw, 5.5rem);
    font-weight: 900;
    color: #fff;
    line-height: 1;
    letter-spacing: -1px;
    margin-bottom: 6px;
    animation: fadeInLeft .9s ease .1s both;
}

.hero-title {
    font-size: clamp(1.4rem, 4vw, 2.4rem);
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 24px;
    animation: fadeInLeft 1s ease .2s both;
}

.hero-description {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, .82);
    max-width: 580px;
    line-height: 1.8;
    margin-bottom: 0;
    animation: fadeInLeft 1s ease .3s both;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeInLeft 1s ease .5s both;
}

.hero-buttons .btn {
    font-size: .9rem;
    font-weight: 600;
    padding: 13px 30px;
    border-radius: 50px;
    transition: var(--transition);
}

.hero-buttons .btn-warning {
    background: var(--accent);
    border: none;
    color: var(--dark);
    box-shadow: 0 8px 25px rgba(245, 158, 11, .35);
}

.hero-buttons .btn-warning:hover {
    background: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 14px 35px rgba(245, 158, 11, .45);
}

.hero-buttons .btn-outline-light {
    border: 2px solid rgba(255, 255, 255, .55);
    color: #fff;
    background: transparent;
}

.hero-buttons .btn-outline-light:hover {
    background: #fff;
    color: var(--primary-dark);
    border-color: #fff;
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
    animation: fadeInLeft 1s ease .7s both;
}

.hero-stat {
    text-align: center;
}

.hero-stat h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 4px;
}

.hero-stat span {
    font-size: .72rem;
    color: rgba(255, 255, 255, .7);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/*==========================
COUNTDOWN CARD
==========================*/

.countdown-card {
    background: rgba(255, 255, 255, .10);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    color: #fff;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .30);
    animation: floatCard 5s ease-in-out infinite, fadeInRight 1s ease .4s both;
}

.card-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 28px;
    letter-spacing: .5px;
}

.card-top i {
    font-size: 1.4rem;
    color: var(--accent);
}

.countdown {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.count-box {
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: var(--radius-sm);
    padding: 16px 8px;
    text-align: center;
}

.count-box h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 4px;
}

.count-box small {
    font-size: .68rem;
    color: rgba(255, 255, 255, .65);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.countdown-card hr {
    border-color: rgba(255, 255, 255, .15);
    margin: 20px 0;
}

.event-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.event-details div {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .875rem;
    color: rgba(255, 255, 255, .82);
    font-weight: 500;
}

.event-details i {
    color: var(--accent);
    font-size: 1rem;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-14px); }
}

/*==========================
SCROLL INDICATOR
==========================*/

.scroll-down {
    position: absolute;
    bottom: 150px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, .6);
    font-size: 1.6rem;
    z-index: 4;
    animation: bounceDown 2s ease infinite;
}

.scroll-down:hover { color: #fff; }

@keyframes bounceDown {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(10px); }
}

/*==========================
KEYFRAME ANIMATIONS
==========================*/

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to   { opacity: 1; transform: translateX(0); }
}

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

#about {
    background: linear-gradient(160deg, #f0fdf4 0%, #ffffff 100%);
}

.about-image {
    position: relative;
    border-radius: var(--radius);
    overflow: visible;
}

.about-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
}

.experience-box {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--primary);
    color: #fff;
    padding: 22px 28px;
    border-radius: var(--radius-sm);
    text-align: center;
    box-shadow: var(--shadow-green);
    min-width: 130px;
}

.experience-box h2 {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
    color: var(--accent);
    margin-bottom: 4px;
}

.experience-box span {
    font-size: .72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: .85;
}

.info-card {
    background: var(--light);
    border-radius: var(--radius-sm);
    padding: 24px;
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.info-card:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-green);
}

.info-card:hover h3,
.info-card:hover p {
    color: #fff;
}

.info-card:hover i {
    color: var(--accent);
}

.info-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 10px;
    display: block;
    transition: var(--transition);
}

.info-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 4px;
    transition: var(--transition);
}

.info-card p {
    font-size: .8rem;
    color: var(--gray-600);
    margin: 0;
    font-weight: 500;
    transition: var(--transition);
}

/*==========================
HIGHLIGHTS SECTION
==========================*/

#highlights {
    background: linear-gradient(135deg, #0f5132 0%, #16a34a 100%);
    padding: 110px 0;
    position: relative;
    overflow: hidden;
}

#highlights::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, .04);
    border-radius: 50%;
    top: -200px;
    right: -150px;
    pointer-events: none;
}

#highlights .section-tag {
    background: rgba(255, 255, 255, .15);
    color: var(--accent);
    border: 1px solid rgba(255, 255, 255, .20);
}

#highlights .section-title {
    color: #fff;
}

#highlights .section-title span {
    color: var(--accent);
}

.highlight-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    height: 100%;
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
    border-color: transparent;
}

.highlight-card:hover .icon {
    background: var(--primary);
    box-shadow: var(--shadow-green);
}

.highlight-card:hover .icon i {
    color: #fff;
}

.highlight-card .icon {
    width: 72px;
    height: 72px;
    background: var(--primary-muted);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    transition: var(--transition);
}

.highlight-card .icon i {
    font-size: 1.75rem;
    color: var(--primary);
    transition: var(--transition);
}

.highlight-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.highlight-card p {
    font-size: .875rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

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

#categories {
    background: var(--light);
}

.race-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.race-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.race-image {
    position: relative;
    overflow: hidden;
    height: 200px;
    background: var(--gray-100);
}

.race-image img {
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.race-card:hover .race-image img {
    transform: scale(1.06);
}

.race-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    color: #fff;
}

.popular-tag {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--accent);
    color: var(--dark);
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 7px 16px;
    border-bottom-left-radius: var(--radius-sm);
    z-index: 2;
}

.race-content {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.race-content h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
}

.race-content > p {
    font-size: .875rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 20px;
}

.race-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    flex: 1;
}

.race-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .85rem;
    color: var(--gray-600);
    padding: 6px 0;
    border-bottom: 1px solid var(--gray-100);
}

.race-features li:last-child {
    border-bottom: none;
}

.race-features li i {
    color: var(--primary);
    font-size: .9rem;
    flex-shrink: 0;
}

.race-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
    margin-top: auto;
}

.race-footer small {
    display: block;
    font-size: .7rem;
    color: var(--gray-400);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 2px;
}

.race-footer h4 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--dark);
    margin: 0;
}

/* Featured / Popular card */
.featured-card {
    border: 2px solid var(--primary);
    position: relative;
    box-shadow: var(--shadow-green);
}

.featured-card .race-content h3 {
    color: var(--primary-dark);
}

.featured-card .race-footer h4 {
    color: var(--primary);
}

/*==========================
RACE KIT
==========================*/

#race-kit {
    background: var(--light);
}

.race-kit-image {
    position: relative;
}

.race-kit-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.kit-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 32px;
}

.kit-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 18px 20px;
    background: var(--white);
    border-radius: var(--radius-sm);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.kit-item:hover {
    border-color: var(--primary);
    box-shadow: 0 6px 20px rgba(22, 163, 74, .12);
    transform: translateX(6px);
}

.kit-item > i {
    font-size: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--primary-muted);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kit-item h5 {
    font-size: .95rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 3px;
}

.kit-item p {
    font-size: .825rem;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.5;
}

/*==========================
FINISHER SHIRT
==========================*/

#finisher-shirt {
    background: var(--light);
}

.finisher-box {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    border-radius: var(--radius-lg);
    padding: 60px 50px;
    overflow: hidden;
    position: relative;
}

.finisher-box::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(255, 255, 255, .04);
    border-radius: 50%;
    top: -100px;
    right: -80px;
}

.finisher-box h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
}

.finisher-box p {
    font-size: 1rem;
    color: rgba(255, 255, 255, .78);
    line-height: 1.7;
    margin-bottom: 28px;
}

.finisher-box .btn-warning {
    background: var(--accent);
    border: none;
    color: var(--dark);
    font-weight: 700;
    padding: 13px 32px;
    border-radius: 50px;
    font-size: .9rem;
    box-shadow: 0 8px 25px rgba(245, 158, 11, .35);
    transition: var(--transition);
}

.finisher-box .btn-warning:hover {
    background: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 14px 35px rgba(245, 158, 11, .45);
}

.finisher-box img {
    border-radius: var(--radius-sm);
    max-height: 320px;
    object-fit: contain;
}

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

#schedule {
    background: var(--light);
}

.schedule-timeline {
    position: relative;
    padding-left: 40px;
}

.schedule-timeline::before {
    content: "";
    position: absolute;
    left: 14px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gray-200);
}

.schedule-item {
    position: relative;
    padding: 0 0 28px 28px;
}

.schedule-item:last-child {
    padding-bottom: 0;
}

.schedule-item::before {
    content: "";
    position: absolute;
    left: -26px;
    top: 6px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--primary);
    border: 3px solid var(--white);
    box-shadow: 0 0 0 2px var(--primary);
}

.schedule-time {
    display: inline-block;
    font-size: .7rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--primary-muted);
    padding: 3px 12px;
    border-radius: 50px;
    margin-bottom: 6px;
}

.schedule-item h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 3px;
}

.schedule-item p {
    font-size: .825rem;
    color: var(--gray-600);
    margin: 0;
}

.schedule-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px;
    border: 1px solid var(--gray-200);
    height: 100%;
}

.schedule-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--primary-muted);
}

.schedule-card h4 i {
    color: var(--primary);
    margin-right: 8px;
}

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

#register {
    background: linear-gradient(160deg, #ecfdf5 0%, #f0fdf4 100%);
}

.register-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 50px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    max-width: 780px;
    margin: 0 auto;
}

.register-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
}

.register-card > p {
    font-size: .9rem;
    color: var(--gray-600);
    margin-bottom: 32px;
}

.form-label {
    font-size: .825rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
}

.form-control,
.form-select {
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: .875rem;
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    transition: var(--transition);
    background: var(--light);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(22, 163, 74, .12);
    background: var(--white);
    outline: none;
}

.form-control::placeholder {
    color: var(--gray-400);
}

.btn-register {
    background: var(--primary);
    color: #fff;
    border: none;
    font-weight: 700;
    font-size: .95rem;
    padding: 14px 40px;
    border-radius: 50px;
    width: 100%;
    transition: var(--transition);
    box-shadow: var(--shadow-green);
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    letter-spacing: .5px;
}

.btn-register:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(22, 163, 74, .35);
}

/*==========================
CONTACT
==========================*/

#contact {
    background: var(--light);
}

.contact-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    border: 1px solid var(--gray-200);
    display: flex;
    align-items: flex-start;
    gap: 18px;
    transition: var(--transition);
    height: 100%;
}

.contact-card:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(22, 163, 74, .12);
    transform: translateY(-4px);
}

.contact-icon {
    width: 54px;
    height: 54px;
    background: var(--primary-muted);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-card:hover .contact-icon {
    background: var(--primary);
}

.contact-card:hover .contact-icon i {
    color: #fff;
}

.contact-icon i {
    font-size: 1.4rem;
    color: var(--primary);
    transition: var(--transition);
}

.contact-card h5 {
    font-size: .85rem;
    font-weight: 700;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.contact-card p,
.contact-card a {
    font-size: .9rem;
    font-weight: 600;
    color: var(--dark);
    margin: 0;
    line-height: 1.5;
}

.contact-card a:hover {
    color: var(--primary);
}

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

#footer {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, .78);
    padding: 60px 0 24px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.footer-brand img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, .25);
}

.footer-brand-name {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.footer-brand-name small {
    display: block;
    font-size: .68rem;
    color: var(--accent);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

#footer p {
    font-size: .875rem;
    line-height: 1.7;
}

.footer-divider {
    border-color: rgba(255, 255, 255, .10);
    margin: 40px 0 20px;
}

.footer-copyright {
    font-size: .8rem;
    color: rgba(255, 255, 255, .45);
    margin: 0;
    text-align: center;
}

.footer-links {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.footer-links a {
    font-size: .8rem;
    color: rgba(255, 255, 255, .5);
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
}

/*==========================
UTILITIES
==========================*/

.btn {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    transition: var(--transition);
}

.text-primary { color: var(--primary) !important; }
.bg-primary   { background-color: var(--primary) !important; }

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

@media (max-width: 991.98px) {
    .section-padding, #highlights, #schedule, #race-kit, #finisher-shirt, #register, #contact { padding: 80px 0; }
    #highlights { padding: 80px 0; }
    .hero-stats { gap: 24px; }

    .experience-box {
        padding: 16px 20px;
    }

    .finisher-box { padding: 40px 30px; }

    .register-card { padding: 36px 28px; }
}

@media (max-width: 767.98px) {
    .section-padding, #highlights, #schedule, #race-kit, #finisher-shirt, #register, #contact { padding: 60px 0; }
    #highlights { padding: 60px 0; }
    #hero .container {
        padding-top: 100px;
        padding-bottom: 140px;
    }

    .countdown { grid-template-columns: repeat(2, 1fr); }

    .hero-stats { gap: 20px; }
    .hero-stat h3 { font-size: 1.6rem; }

    .countdown-card { margin-top: 40px; }

    .about-image { margin-bottom: 40px; }
    .experience-box { display: none; }

    .finisher-box { padding: 32px 22px; }
    .finisher-box img { margin-top: 28px; }

    .register-card { padding: 28px 18px; }

    .footer-links {
        justify-content: flex-start;
        margin-top: 12px;
    }
}