:root{

    --primary-green:#006B2D;
    --secondary-green:#008A3B;
    --gold:#F5D300;
    --red:#D71920;
    --white:#FFFFFF;
    --black:#111111;
    
    }
    
    *{
    margin:0;
    padding:0;
    box-sizing:border-box;
    }
    
    body{
    font-family:Arial,sans-serif;
    background:white;
    
    }

    html,
body{

    width:100%;

    overflow-x:hidden;

}
    
    /* NAVBAR */
    
    header{
    
    position:fixed;
    top:0;
    left:0;
    
    width:100%;
    
    display:flex;
    justify-content:space-between;
    align-items:center;
    
    padding:20px 50px;
    
    background:rgba(0,0,0,.55);
    
    backdrop-filter:blur(8px);
    
    z-index:1000;
    
    }
    
    .logo{
    
    color:white;
    font-weight:700;
    font-size:1.2rem;
    
    }

    /* Clickable Logo */

.logo a{

    color: white;
    text-decoration: none;
    display: inline-block;
    transition: color 0.3s ease;

}

.logo a:hover{

    color: #FFD54F;

}
    
    nav{
    
    display:flex;
    gap:25px;
    
    }
    
    nav a{
    
    color:white;
    text-decoration:none;
    
    font-weight:600;
    
    }
    
    .btn-nav{
    
    background:var(--gold);
    
    color:black;
    
    padding:10px 20px;
    
    border-radius:999px;
    
    }
    /* =========================
   HERO SECTION
========================= */

.hero{

    position:relative;

    height:100vh;

    overflow:hidden;

}

.hero-video{

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;

    object-fit:cover;

}

/* DARK OVERLAY */

.overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        rgba(0,40,0,.45),
        rgba(0,0,0,.75)
    );

    z-index:1;

}

/* HERO CONTENT */

.hero-content{

    position:relative;

    z-index:2;

    height:100%;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

    padding:20px;

    color:white;

}

.hero-content h1{

    font-size:clamp(3rem,8vw,6rem);

    font-weight:900;

    line-height:1;

    text-transform:uppercase;

    max-width:1000px;

    text-shadow:
    0 5px 20px rgba(0,0,0,.4);

}

.hero-content p{

    font-size:1.3rem;

    margin-top:20px;

    max-width:700px;

    color:var(--gold);

    line-height:1.7;

}

/* COUNTDOWN */

#countdown{

    display:flex;

    gap:20px;

    margin-top:40px;

    flex-wrap:wrap;

    justify-content:center;

}

.time-box{

    background:
    rgba(255,255,255,.12);

    backdrop-filter:blur(10px);

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

    border-radius:20px;

    padding:20px;

    min-width:120px;

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

}

.time-box span{

    font-size:2.8rem;

    font-weight:800;

    display:block;

    color:var(--gold);

}

.time-box small{

    color:white;

    font-size:.9rem;

    text-transform:uppercase;

    letter-spacing:1px;

}

/* HERO BUTTONS */

.hero-buttons{

    margin-top:40px;

    display:flex;

    gap:20px;

    flex-wrap:wrap;

    justify-content:center;

}

.btn-primary{

    background:var(--gold);

    color:black;

    padding:16px 35px;

    border-radius:999px;

    font-weight:700;

    text-decoration:none;

    transition:.3s;

}

.btn-primary:hover{

    transform:translateY(-3px);

}

.btn-secondary{

    background:var(--red);

    color:white;

    padding:16px 35px;

    border-radius:999px;

    font-weight:700;

    text-decoration:none;

    transition:.3s;

}

.btn-secondary:hover{

    transform:translateY(-3px);

}

/* SCROLL INDICATOR */

.scroll-indicator{

    position:absolute;

    bottom:30px;

    left:50%;

    transform:translateX(-50%);

    color:white;

    font-size:2rem;

    z-index:2;

    animation:bounce 2s infinite;

}

@keyframes bounce{

    0%,20%,50%,80%,100%{
        transform:translateX(-50%) translateY(0);
    }

    40%{
        transform:translateX(-50%) translateY(-10px);
    }

    60%{
        transform:translateX(-50%) translateY(-5px);
    }

}

/* MOBILE */

@media(max-width:768px){

    .hero-content h1{

        font-size:2.8rem;

    }

    .hero-content p{

        font-size:1.1rem;

    }

    #countdown{

        gap:12px;

    }

    .time-box{

        min-width:90px;

        padding:15px;

    }

    .time-box span{

        font-size:2rem;

    }

    .hero-buttons{

        flex-direction:column;

        width:100%;

        max-width:300px;

    }

    .btn-primary,
    .btn-secondary{

        width:100%;

        text-align:center;

    }

}

    /* =========================
   PROJECTS SECTION
========================= */

.projects{
    padding:100px 8%;
    background:#0f172a;
    color:#fff;
}

.projects .section-header{
    text-align:center;
    max-width:800px;
    margin:0 auto 60px;
}

.projects .section-header span{
    display:inline-block;
    color:#FFD700;
    font-size:14px;
    font-weight:700;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.projects .section-header h2{
    font-size:3rem;
    font-weight:800;
    margin-bottom:20px;
    color:#ffffff;
}

.projects .section-header p{
    font-size:1.1rem;
    color:#cbd5e1;
    line-height:1.8;
}

/* =========================
   PROJECT GRID
========================= */

.projects-grid{
    display:grid;
    grid-template-columns:
        repeat(auto-fit, minmax(320px, 1fr));
    gap:25px;
}

/* =========================
   PROJECT CARD
========================= */

.project-card{
    position:relative;
    height:420px;
    border-radius:20px;
    overflow:hidden;
    cursor:pointer;
    box-shadow:
        0 15px 35px rgba(0,0,0,0.25);
}

.project-card video{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.project-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:
        transform 0.7s ease;
}

/* Dark Overlay */

.project-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,0.95),
            rgba(0,0,0,0.35),
            rgba(0,0,0,0.1)
        );

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

    padding:30px;
    transition:all 0.4s ease;
}

.project-overlay h3{
    font-size:1.6rem;
    font-weight:700;
    margin-bottom:12px;
    color:#ffffff;
}

.project-overlay p{
    font-size:1rem;
    color:#e2e8f0;
    line-height:1.7;
}

/* Hover Effects */

.project-card:hover img{
    transform:scale(1.12);
}

.project-card:hover .project-overlay{
    background:
        linear-gradient(
            to top,
            rgba(0,0,0,1),
            rgba(0,0,0,0.5),
            rgba(0,0,0,0.15)
        );
}

/* Featured Card */

.project-card.featured{
    grid-column:span 2;
}

.project-card.featured h3{
    font-size:2rem;
}

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

@media (max-width:992px){

    .project-card.featured{
        grid-column:span 1;
    }

}

@media (max-width:768px){

    .projects{
        padding:80px 5%;
    }

    .projects .section-header h2{
        font-size:2.2rem;
    }

    .projects .section-header p{
        font-size:1rem;
    }

    .project-card{
        height:350px;
    }

    .project-overlay{
        padding:20px;
    }

    .project-overlay h3{
        font-size:1.3rem;
    }

}

@media (max-width:480px){

    .projects-grid{
        grid-template-columns:1fr;
    }

    .project-card{
        height:300px;
    }

}



/* =========================
   SPONSORS
========================= */

.sponsors{

    padding:100px 20px;

    background:linear-gradient(
        180deg,
        #f8f8f8,
        #ffffff
    );

}

.sponsors .section-header{

    text-align:center;

    margin-bottom:60px;

}

.sponsors .section-header span{

    color:#F5D300;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

}

.sponsors .section-header h2{

    font-size:3rem;

    color:#006B2D;

    margin:15px 0;

}

.sponsors .section-header p{

    max-width:700px;

    margin:auto;

    color:#666;

    line-height:1.8;

}

/* SLIDER */

.sponsor-slider{

    width:100%;

    overflow:hidden;

    position:relative;

}

.sponsor-track{

    display:flex;

    align-items:center;

    gap:50px;

    width:max-content;

    animation:sponsorScroll 60s linear infinite;

}

.sponsor-track img{

    height:90px;

    width:auto;

    object-fit:contain;

    padding:15px;

    background:#fff;

    border-radius:16px;

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

    transition:.4s ease;

}

.sponsor-track img:hover{

    filter:grayscale(0);

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

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

}

/* Pause on hover */

.sponsor-slider:hover .sponsor-track{

    animation-play-state:paused;

}

/* Auto scroll */

@keyframes sponsorScroll{

    0%{

        transform:translateX(0);

    }

    100%{

        transform:translateX(-50%);

    }

}

/* Mobile */

@media(max-width:768px){

    .sponsors{

        padding:70px 15px;

    }

    .sponsors .section-header h2{

        font-size:2rem;

    }

    .sponsor-track{

        gap:30px;

        animation:sponsorScroll 20s linear infinite;

    }

    .sponsor-track img{

        height:65px;

        padding:10px;

    }

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

.about{

    padding:120px 8%;

    background:#fff;

}

.about-text{

    min-width:0;

}

.about-content{

    display:grid;

    grid-template-columns:1.2fr 1fr;

    gap:60px;

    align-items:center;

}

.section-tag{

    display:inline-block;

    background:#F5D300;

    color:#000;

    padding:8px 16px;

    border-radius:999px;

    font-weight:700;

    margin-bottom:20px;

}

.about-text h2{

    font-size:3.5rem;

    color:#006B2D;

    margin-bottom:25px;

}

.about-text p{

    font-size:1.15rem;

    line-height:1.9;

    color:#444;

    margin-bottom:20px;

}

.about-stats{

    display:grid;

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

    gap:20px;

}

.stat-card{

    background:#fff;

    border-radius:20px;

    padding:35px;

    text-align:center;

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

    transition:.3s;

}

.stat-card:hover{

    transform:translateY(-8px);

}

.stat-card h3{

    color:#006B2D;

    font-size:2.5rem;

    margin-bottom:10px;

}

.stat-card p{

    color:#666;

}

/* MOBILE */

@media(max-width:768px){

    .about{

        padding:80px 20px;

    }

    .about-content{

        grid-template-columns:1fr;

        gap:40px;

    }

    .about-text{

        min-width:0;

    }

    .about-text h2{

        font-size:2.4rem;

        line-height:1.15;

    }

    .about-text p{

        font-size:1rem;

        overflow-wrap:anywhere;

        word-break:break-word;

    }

    .about-stats{

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

        gap:12px;

    }

    .stat-card{

        padding:18px;

    }

    .stat-card h3{

        font-size:2rem;

    }

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

.categories{

    padding:120px 20px;
    
    background:
    linear-gradient(
    135deg,
    #006B2D,
    #008A3B
    );
    
    color:white;
    
    text-align:center;
    
    }
    
    .categories h2{
    
    font-size:3rem;
    
    margin-bottom:50px;
    
    }
    
    .category-grid{
    
    display:grid;
    
    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));
    
    gap:30px;
    
    }
    
    .category-card{

        position:relative;
    
        overflow:hidden;
    
        background:linear-gradient(
            135deg,
            #218c45,
            #2f9f55
        );
    
        border-radius:25px;
    
        padding:40px 30px;
    
        text-align:center;
    
        transition:.35s ease;
    
        box-shadow:
            0 15px 35px rgba(0,0,0,.18);
    
        border:
            1px solid rgba(255,255,255,.15);
    
    }
    
    .category-card:hover{
    
        transform:translateY(-10px);
    
        box-shadow:
        0 20px 40px rgba(0,0,0,.25);
    
    }
    
    .category-card h3{
    
        font-size:2rem;
    
        margin-bottom:10px;
    
        color:#fff;
    
    }
    
    .category-card p{
    
        color:#f5f5f5;
    
        font-size:1rem;
    
    }
    
    .category-card:hover{
    
    transform:translateY(-10px);
    
    }
    
    .category-card h3{
    
    font-size:2rem;
    
    margin-bottom:15px;
    
    }
    
    .price{

        font-size:2.5rem;
    
        font-weight:800;
    
        color:#F5D300;
    
        margin:20px 0;
    
    }
    
    .category-card button{

        background:#F5D300;
    
        color:black;
    
        border:none;
    
        padding:15px 30px;
    
        border-radius:999px;
    
        font-weight:700;
    
        font-size:16px;
    
        cursor:pointer;
    
        transition:.3s;
    
    }
    
    @media(max-width:768px){

        .categories h2{
    
            font-size:2.2rem;
    
        }
    
        .category-grid{
    
            grid-template-columns:1fr;
    
            gap:20px;
    
        }
    
        .category-card{
    
            padding:25px;
    
        }
    
    }

    .category-card button:hover{
    
        transform:translateY(-3px);
    
        background:white;
    
    }


    .status-badge{

    position:absolute;

    top:15px;

    right:15px;

    background:#00C853;

    color:white;

    padding:8px 15px;

    border-radius:999px;

    font-size:12px;

    font-weight:700;

}

    .gallery{
        padding:100px 0;
        background:#f7f8fa;
    }
    
    .gallery .container{
        width:90%;
        max-width:1400px;
        margin:auto;
    }
    
    .gallery-header{
        text-align:center;
        margin-bottom:60px;
    }
    
    .gallery-header h2{
        font-size:3.5rem;
        font-weight:900;
        color:#0b4d2c;
        letter-spacing:2px;
        text-transform:uppercase;
    }

    .gallery-header h2::after{
        content:"";
        display:block;
        width:120px;
        height:5px;
        background:#f4c400;
        margin:20px auto;
        border-radius:10px;
    }

    .gallery-header p{
        max-width:900px;
        margin:auto;
        font-size:1.15rem;
        line-height:1.8;
        color:#555;
    }
    
    .gallery-grid{
        display:grid;
        grid-template-columns:repeat(3,1fr);
        gap:30px;
    }
    
    .gallery-item{
        overflow:hidden;
        border-radius:25px;
        box-shadow:0 15px 35px rgba(0,0,0,.12);
    }

    .gallery-item{
        animation:fadeUp 1s ease;
    }
    
    @keyframes fadeUp{
    
    from{
        opacity:0;
        transform:translateY(40px);
    }
    
    to{
        opacity:1;
        transform:translateY(0);
    }
    
    }
    
    .gallery-item img,
    .gallery-item video{
        width:100%;
        height:380px;
        object-fit:cover;
        display:block;
        transition:.5s ease;
    }
    
    .gallery-item:hover img,
    .gallery-item:hover video{
        transform:scale(1.08);
    }
    .gallery-item::after{
        content:"";
        position:absolute;
        inset:0;
        background:rgba(0,0,0,.25);
        opacity:0;
        transition:.4s;
    }
    
    .gallery-item:hover::after{
        opacity:1;
    }
    
    .gallery-action{
        text-align:center;
        margin-top:50px;
    }
    
    .gallery-btn{
        display:inline-block;
        background:#f4c400;
        color:#000;
        padding:18px 45px;
        border-radius:50px;
        font-size:1.1rem;
        font-weight:700;
        text-decoration:none;
        box-shadow:
        0 10px 25px rgba(244,196,0,.35);
        transition:.4s ease;
    }
    
    .gallery-btn:hover{
        transform:translateY(-6px);
    }
    
    .gallery-btn:hover{
        transform:translateY(-5px);
    }
    
    @media(max-width:992px){
    
    .gallery-grid{
        grid-template-columns:1fr;
    }
    
    .gallery-item img,
    .gallery-item video{
        height:320px;
    }
    
    .gallery-header h2{
        font-size:2.2rem;
    }
    
    }
    .lightbox {
        display: none;
        position: fixed;
        z-index: 9999;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.95);
        justify-content: center;
        align-items: center;
    }
    
    .lightbox img {
        max-width: 90%;
        max-height: 90%;
    }
    
    .lightbox-close {
        position: absolute;
        top: 20px;
        right: 30px;
        color: white;
        font-size: 40px;
        cursor: pointer;
    }

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

.modal{

    display:none;

    position:fixed;

    inset:0;

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

    backdrop-filter:blur(8px);

    justify-content:center;

    align-items:center;

    z-index:10000;

}

.modal-content{

    background:white;

    width:90%;

    max-width:900px;

    max-height:90vh;

    overflow-y:auto;

    border-radius:25px;

    padding:35px;

    position:relative;

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

}

#registrationForm{

    display:grid;

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

    gap:18px;

}

#registrationForm .full-width{

    grid-column:1 / -1;

}
    
    .modal-content h2{
    
    color:#006B2D;
    
    margin-bottom:25px;
    
    text-align:center;
    
    }

    .registration-header{

        text-align:center;
    
        margin-bottom:25px;
    
    }
    
    .registration-header p{
    
        color:#666;
    
        margin-top:8px;
    
    }
    
    #registrationForm input,
#registrationForm select{

    width:100%;

    padding:15px;

    border:1px solid #ddd;

    border-radius:12px;

    font-size:15px;

    transition:.3s;

}

#registrationForm input:focus,
#registrationForm select:focus{

    outline:none;

    border-color:#00C853;

    box-shadow:
    0 0 0 4px rgba(0,200,83,.15);

}
    
#registrationForm button{

    background:#00C853;

    color:white;

    border:none;

    padding:16px;

    border-radius:12px;

    font-size:16px;

    font-weight:700;

    cursor:pointer;

    transition:.3s;

}

#registrationForm button:hover{

    background:#00A848;

    transform:translateY(-2px);

}
    
    #registrationMessage{
    
    margin-top:15px;
    
    font-weight:bold;
    
    text-align:center;
    
    }

    .modal-content h3{

        color:#006B2D;
        
        margin-top:15px;
        margin-bottom:10px;
        
        font-size:1.1rem;
        
        border-bottom:2px solid #F5D300;
        
        padding-bottom:5px;
        
        }


        .close-btn{
            position:absolute;
            top:15px;
            right:25px;
            font-size:40px;
            font-weight:bold;
            cursor:pointer;
            color:#006B2D;
            line-height:1;
        }
        
        .close-btn:hover{
            opacity:0.7;
        }

        .registration-closed{
            background:#555;
            color:white;
            cursor:not-allowed;
            opacity:0.85;
        }
        
        .registration-closed small{
            display:block;
            margin-top:5px;
            font-size:12px;
            color:#f5f5f5;
        }

        /* Smooth popup scrolling */

.modal-content::-webkit-scrollbar{
    width:8px;
    }
    
    .modal-content::-webkit-scrollbar-thumb{
    background:#006B2D;
    border-radius:10px;
    }
    
    .modal-content::-webkit-scrollbar-track{
    background:#f1f1f1;
    }
    #registrationForm{

        display:grid;
    
        grid-template-columns:1fr 1fr;
    
        gap:20px;
    
    }
    
    #registrationForm h3,
    #selectedCategory{
        grid-column:1 / -1;
    }
    
    #registrationForm button{
        grid-column:1 / -1;
        width:100%;
        display:block;
        margin-top:20px;
    }
    
    #registrationMessage{
        grid-column:1 / -1;
    }
    
    @media(max-width:768px){
    
        #registrationForm{
            grid-template-columns:1fr;
        }
    
    }

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

.modal-content{

    width:min(900px,95%);

    max-height:90vh;

    overflow-y:auto;

    background:#fff;

    border-radius:24px;

    padding:35px;

    position:relative;

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

}

.modal-header{

    text-align:center;

    margin-bottom:30px;

}

.modal-header h2{

    color:#006B2D;

    font-size:2rem;

    margin-bottom:8px;

}

.modal-header p{

    color:#666;

    font-size:1rem;

}

/* ==========================================
   FORM CARDS
========================================== */

.form-card{

    background:#fafafa;

    border:1px solid #e8e8e8;

    border-radius:18px;

    padding:25px;

    margin-bottom:25px;

}

.section-title{

    font-size:1.25rem;

    font-weight:700;

    color:#006B2D;

    margin-bottom:20px;

}

/* ==========================================
   GRID
========================================== */

.form-grid{

    display:grid;

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

    gap:20px;

}

.form-group{

    display:flex;

    flex-direction:column;

}

.form-group label{

    margin-bottom:8px;

    font-weight:600;

    color:#444;

}

.form-group label span{

    color:#d32f2f;

}

/* ==========================================
   INPUTS
========================================== */

.form-group input,
.form-group select{

    height:52px;

    border:1px solid #ddd;

    border-radius:12px;

    padding:0 16px;

    font-size:1rem;

    transition:.3s;

    background:#fff;

}

.form-group input:focus,
.form-group select:focus{

    outline:none;

    border-color:#006B2D;

    box-shadow:0 0 0 4px rgba(0,107,45,.15);

}

/* ==========================================
   CATEGORY CARD
========================================== */

.category-summary{

    background:#fff;

    border:2px solid #F5D300;

    border-radius:16px;

    padding:25px;

    text-align:center;

}

.category-summary label{

    display:block;

    color:#666;

    margin-bottom:10px;

}

#selectedCategory{

    border:none !important;

    background:transparent !important;

    text-align:center;

    font-size:1.4rem;

    font-weight:700;

    color:#006B2D;

    pointer-events:none;

}

.fee-display{

    margin-top:15px;

    font-size:1.5rem;

    font-weight:800;

    color:#F5A000;

}

/* ==========================================
   REVIEW
========================================== */

.review-box{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.checkbox-container{

    display:flex;

    gap:12px;

    align-items:flex-start;

    font-size:.95rem;

    color:#444;

}

.checkbox-container input{

    margin-top:4px;

}

/* ==========================
   REVIEW SUMMARY
========================== */

.review-summary{

    display:grid;

    gap:15px;

    margin-bottom:25px;

}

.summary-item{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:12px 16px;

    background:#fff;

    border-radius:12px;

    border:1px solid #ececec;

}

.summary-item span{

    color:#666;

}

.summary-item strong{

    color:#006B2D;

    font-weight:700;

}

.summary-item.fee{

    background:#F5FFF8;

    border:2px solid #F5D300;

}

.review-box hr{

    margin:25px 0;

    border:none;

    border-top:1px solid #eee;

}
/* ==========================================
   BUTTON
========================================== */

#submitRegistration{

    width:100%;

    height:58px;

    border:none;

    border-radius:14px;

    background:#006B2D;

    color:#fff;

    font-size:1.1rem;

    font-weight:700;

    cursor:pointer;

    transition:.3s;

}

#submitRegistration:hover{

    background:#005322;

    transform:translateY(-2px);

}

#submitRegistration:disabled{

    opacity:.6;

    cursor:not-allowed;

}

/* ==========================================
   MESSAGE
========================================== */

#registrationMessage{

    margin-top:20px;

}

.success-box,
.error-box,
.info-box,
.payment-summary{

    padding:20px;

    border-radius:14px;

    margin-top:20px;

}

.success-box{

    background:#e8f5e9;

    border:2px solid #2e7d32;

}

.error-box{

    background:#ffebee;

    border:2px solid #d32f2f;

}

.info-box{

    background:#e3f2fd;

    border:2px solid #1976d2;

}

.payment-summary{

    background:#ffffff;

    border:2px solid #F5D300;

}

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

@media(max-width:768px){

    .modal-content{

        padding:20px;

    }

    .form-grid{

        grid-template-columns:1fr;

    }

    .modal-header h2{

        font-size:1.6rem;

    }

}


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

.footer{

    background:#0b1d13;

    color:white;

    padding:80px 8% 20px;

}

.footer-container{

    display:grid;

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

    gap:50px;

}

.footer-column h2{

    color:#F5D300;

    margin-bottom:20px;

    font-size:2rem;

}

.footer-column h3{

    color:#F5D300;

    margin-bottom:20px;

}

.footer-column p{

    color:#d8d8d8;

    line-height:1.8;

    margin-bottom:10px;

}

.footer-column a{

    display:block;

    color:#d8d8d8;

    text-decoration:none;

    margin-bottom:12px;

    transition:.3s;

}

.footer-column a:hover{

    color:#F5D300;

    transform:translateX(5px);

}

.footer-bottom{

    margin-top:50px;

    padding-top:20px;

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

    text-align:center;

    color:#aaa;

}

/* MOBILE */

@media(max-width:768px){

    .footer{

        padding:60px 20px 20px;

    }

    .footer-container{

        grid-template-columns:1fr;

        gap:40px;

        text-align:center;

    }

    .footer-column a:hover{

        transform:none;

    }

}

/* MOBILE MENU */
.menu-toggle{

    display:none;

}

.menu-overlay{

    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:100%;

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

    opacity:0;

    visibility:hidden;

    transition:.3s;

    z-index:1400;

}

.menu-overlay.active{

    opacity:1;

    visibility:visible;

}

.hero-content{

    padding-top:80px;

}

.hero-content h1{

    font-size:2.8rem;

    line-height:1.1;

    margin-bottom:15px;

}

.hero-content p{

    font-size:1.3rem;

}
#countdown{

    display:grid;

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

    gap:15px;

    width:100%;

    max-width:280px;

    margin:30px auto 0;

}

.time-box{

    min-width:auto;

}

@media (max-width:768px){
    header{

        position:fixed;
    
        top:0;
        left:0;
    
        width:100%;
    
        height:70px;
    
        padding:0 20px;
    
        display:flex;
    
        flex-direction:row;
    
        justify-content:space-between;
    
        align-items:center;
    
        background:rgba(0,0,0,.55);
    
        backdrop-filter:blur(12px);
    
        z-index:9999;
    
    }

    .logo{

        font-size:18px;
    
        font-weight:800;
    
        color:white;
    
        line-height:1.05;
    
        letter-spacing:.5px;
    
        max-width:190px;
    
    }
   
    .menu-toggle{

        display:flex;
    
        align-items:center;
    
        justify-content:center;
    
        margin-left:auto;
    
        color:white;
    
        font-size:42px;
    
        cursor:pointer;
    
    }

    .nav-links{

        position:fixed;
    
        top:0;
    
        right:-260px;
    
        width:260px;
    
        height:100vh;
    
        background:#07122d;
    
        display:flex;
    
        flex-direction:column;
    
        justify-content:center;
    
        align-items:center;
    
        gap:30px;
    
        transition:.35s ease;
    
        z-index:1500;
    
    }

    .nav-links.active{

        right:0;

    }

    .nav-links:not(.active){

        right:-260px;
    
    }

    .nav-links a{

        color:white;
    
        text-decoration:none;
    
        font-size:20px;
    
        font-weight:700;
    
        letter-spacing:.5px;
    
        transition:.3s;
    
    }
    
    .nav-links a:hover{
    
        color:#F5D300;
    
        transform:translateX(5px);
    
    }

    .btn-nav{

        background:#f4d000;

        color:#000 !important;

        padding:12px 30px;

        border-radius:999px;

        margin-top:10px;

    }

}