*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#0f0f0f;
    color:#fff;
    overflow-x:hidden;
}

/* SCROLLBAR */

::-webkit-scrollbar{
    width:8px;
}

::-webkit-scrollbar-thumb{
    background:#f4b400;
    border-radius:20px;
}

/* HERO SECTION */

.hero{
    width:100%;
    min-height:100vh;
    background:
    linear-gradient(rgba(0,0,0,0.75),
    rgba(0,0,0,0.88)),
    url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?q=80&w=1600&auto=format&fit=crop');

    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:60px 20px;
    position:relative;
}

.overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.2);
}

.hero-content{
    width:100%;
    max-width:1200px;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    backdrop-filter:blur(18px);
    border-radius:30px;
    padding:50px;
    position:relative;
    z-index:10;
    box-shadow:0 0 40px rgba(244,180,0,0.15);
}

/* LOGO */

.logo{
    text-align:center;
    margin-bottom:25px;
}

.logo img{
    width:130px;
    animation:float 3s ease-in-out infinite;
}

@keyframes float{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-10px);
    }

    100%{
        transform:translateY(0px);
    }
}

/* TITLE */

.trip-title{
    text-align:center;
}

.trip-title h1{
    font-size:60px;
    color:#f4b400;
    font-weight:800;
    text-shadow:0 0 25px rgba(244,180,0,0.4);
}

.trip-title p{
    color:#ddd;
    margin-top:12px;
    font-size:18px;
}

/* COUNTDOWN */

.countdown{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
    margin-top:40px;
}

.count-box{
    width:110px;
    height:110px;
    background:rgba(255,255,255,0.05);
    border-radius:20px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    border:1px solid rgba(255,255,255,0.08);
    transition:0.4s;
}

.count-box:hover{
    transform:translateY(-10px);
    border-color:#f4b400;
    box-shadow:0 0 25px rgba(244,180,0,0.2);
}

.count-box h2{
    color:#f4b400;
    font-size:35px;
}

.count-box span{
    color:#ccc;
    font-size:14px;
}

/* TRIP INFO */

.trip-info{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
    margin-top:50px;
}

.info-box{
    background:rgba(255,255,255,0.05);
    border-radius:20px;
    padding:25px;
    text-align:center;
    transition:0.4s;
    border:1px solid rgba(255,255,255,0.08);
}

.info-box:hover{
    transform:translateY(-10px);
    border-color:#f4b400;
    box-shadow:0 0 25px rgba(244,180,0,0.15);
}

.info-box i{
    font-size:35px;
    color:#f4b400;
    margin-bottom:15px;
}

.info-box h3{
    margin-bottom:10px;
}

.info-box p{
    color:#ccc;
    font-size:14px;
}

/* BUTTON */

.hero-btn{
    text-align:center;
    margin-top:50px;
}

.register-btn{
    display:inline-block;
    padding:18px 45px;
    border-radius:50px;
    text-decoration:none;
    background:linear-gradient(45deg,#f4b400,#ffcc00);
    color:#111;
    font-weight:700;
    transition:0.4s;
    box-shadow:0 0 25px rgba(244,180,0,0.4);
}

.register-btn:hover{
    transform:scale(1.08);
    box-shadow:0 0 40px rgba(244,180,0,0.7);
}

/* FORM SECTION */

.register-section{
    padding:100px 20px;
}

.form-container{
    max-width:1200px;
    margin:auto;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    backdrop-filter:blur(18px);
    border-radius:30px;
    padding:50px;
    box-shadow:0 0 35px rgba(244,180,0,0.08);
}

.form-title{
    text-align:center;
    margin-bottom:50px;
}

.form-title h2{
    font-size:45px;
    color:#f4b400;
}

.form-title p{
    color:#ccc;
    margin-top:10px;
}

.sub-title{
    margin:45px 0 25px;
}

.sub-title h3{
    color:#f4b400;
    font-size:30px;
}

.form-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

.input-box{
    display:flex;
    flex-direction:column;
}

.input-box label{
    margin-bottom:10px;
    color:#f4b400;
    font-size:14px;
    font-weight:500;
}

.input-box input,
.input-box select,
.input-box textarea{
    background:rgba(255,255,255,0.05);
    border:1px solid transparent;
    padding:16px 18px;
    border-radius:15px;
    color:#fff;
    outline:none;
    transition:0.4s;
}

.input-box input:focus,
.input-box select:focus,
.input-box textarea:focus{
    border-color:#f4b400;
    box-shadow:0 0 20px rgba(244,180,0,0.15);
}

textarea{
    resize:none;
}

.textarea-box{
    margin-top:25px;
}

/* RULES */

.rules-box{
    background:rgba(255,255,255,0.05);
    padding:30px;
    border-radius:25px;
    margin-top:20px;
    border:1px solid rgba(255,255,255,0.08);
}

.rules-box ul{
    list-style:none;
}

.rules-box ul li{
    margin-bottom:18px;
    color:#ddd;
    line-height:1.8;
    display:flex;
    gap:12px;
}

.rules-box ul li i{
    color:#f4b400;
    margin-top:6px;
}

/* DECLARATION */

.declaration-box{
    background:rgba(255,255,255,0.05);
    padding:30px;
    border-radius:25px;
    margin-top:20px;
    border:1px solid rgba(255,255,255,0.08);
    max-height:400px;
    overflow-y:auto;
}

.declaration-box p{
    color:#ddd;
    line-height:2;
    margin-bottom:18px;
}

/* CHECKBOX */

.agree-box{
    margin-top:25px;
    display:flex;
    align-items:center;
    gap:15px;
}

.agree-box input{
    width:20px;
    height:20px;
    accent-color:#f4b400;
}

.agree-box label{
    color:#fff;
}

/* SIGNATURE */

.signature-box{
    margin-top:25px;
}

#signature-pad{
    width:100%;
    height:200px;
    background:#fff;
    border-radius:20px;
}

.clear-btn{
    margin-top:15px;
    border:none;
    background:#f4b400;
    color:#111;
    padding:12px 25px;
    border-radius:10px;
    font-weight:600;
    cursor:pointer;
}

/* SUBMIT BUTTON */

.submit-area{
    text-align:center;
    margin-top:50px;
}

.submit-btn{
    border:none;
    padding:18px 50px;
    border-radius:50px;
    background:linear-gradient(45deg,#f4b400,#ffcc00);
    color:#111;
    font-size:18px;
    font-weight:700;
    cursor:pointer;
    transition:0.4s;
    box-shadow:0 0 30px rgba(244,180,0,0.3);
}

.submit-btn:hover{
    transform:scale(1.08);
    box-shadow:0 0 40px rgba(244,180,0,0.6);
}

/* MOBILE */

@media(max-width:768px){

    .hero-content,
    .form-container{
        padding:30px 20px;
    }

    .trip-title h1{
        font-size:38px;
    }

    .form-title h2{
        font-size:34px;
    }

    .count-box{
        width:85px;
        height:85px;
    }

    .count-box h2{
        font-size:28px;
    }
}