*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}


html{
    scroll-behavior:smooth;
}


body{

    font-family:'Inter',Arial,sans-serif;

    background:#050505;

    color:#fff;

    overflow-x:hidden;

}


a{

    text-decoration:none;

    color:white;

}



/* =========================
NAVBAR
========================= */


.navbar{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    height:85px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:0 8%;

    background:rgba(0,0,0,.35);

    backdrop-filter:blur(15px);

    z-index:999;

    border-bottom:1px solid rgba(255,255,255,.08);

}



.brand{

    font-size:28px;

    font-weight:900;

}



.brand span{

    color:#d6b36a;

}



.navbar nav{

    display:flex;

    gap:30px;

}



.navbar nav a{

    color:#ddd;

    font-size:15px;

    transition:.3s;

}



.navbar nav a:hover{

    color:#d6b36a;

}







/* =========================
HERO VIDEO
========================= */


.hero{

    height:100vh;

    min-height:700px;

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    overflow:hidden;

}



.hero-video{

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:100%;

    object-fit:cover;

    z-index:0;

}



.hero-overlay{

    position:absolute;

    width:100%;

    height:100%;

    background:

    linear-gradient(

    rgba(0,0,0,.35),

    rgba(0,0,0,.92)

    );

    z-index:1;

}



.hero-content{

    position:relative;

    z-index:2;

    max-width:1000px;

    padding:20px;

}



.hero h1{

    font-size:clamp(45px,7vw,90px);

    line-height:1;

    font-weight:900;

    letter-spacing:-4px;

}



.hero h1 span{

    color:#d6b36a;

}



.hero p{

    margin-top:35px;

    color:#ddd;

    font-size:22px;

    line-height:1.7;

}



.button{

    display:inline-block;

    margin-top:45px;

    padding:18px 55px;

    border-radius:50px;

    background:#d6b36a;

    color:#000;

    font-weight:900;

    transition:.3s;

}



.button:hover{

    transform:translateY(-5px);

    box-shadow:0 20px 50px rgba(214,179,106,.35);

}







/* =========================
STATISTICS
========================= */


.stats{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:25px;

    padding:70px 8%;

    background:#0b0b0b;

    text-align:center;

}



.stats h2{

    font-size:50px;

    color:#d6b36a;

    font-weight:900;

}



.stats p{

    margin-top:10px;

    color:#bbb;

}







/* =========================
SECTIONS
========================= */


.section{

    padding:120px 8%;

    text-align:center;

}



.dark{

    background:#0d0d0d;

}



.section h2{

    font-size:55px;

    font-weight:900;

    margin-bottom:30px;

    letter-spacing:-2px;

}



.section>p{

    color:#bbb;

    font-size:20px;

    line-height:1.8;

}







/* =========================
CARDS
========================= */


.cards{

    margin-top:60px;

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:30px;

}



.card{

    background:

    linear-gradient(

    145deg,

    rgba(255,255,255,.08),

    rgba(255,255,255,.02)

    );


    padding:40px 30px;

    border-radius:25px;

    border:1px solid rgba(255,255,255,.12);

    transition:.4s;

}



.card:hover{

    transform:translateY(-10px);

    border-color:#d6b36a;

}



.icon{

    font-size:45px;

    margin-bottom:20px;

}



.card h3{

    font-size:25px;

    margin-bottom:15px;

}



.card p{

    color:#bbb;

    line-height:1.7;

}







/* =========================
STEPS
========================= */


.steps{

    margin-top:60px;

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(230px,1fr));

    gap:30px;

}



.step{

    background:#111;

    padding:40px 25px;

    border-radius:25px;

    border:1px solid #222;

}



.step strong{

    font-size:55px;

    color:#d6b36a;

}



.step h3{

    margin:20px 0;

}



.step p{

    color:#bbb;

}







/* =========================
ROUTE
========================= */


.route{

    margin-top:60px;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:35px;

    flex-wrap:wrap;

}



.route div{

    width:160px;

    height:160px;

    border-radius:50%;

    background:#111;

    border:1px solid #333;

    display:flex;

    justify-content:center;

    align-items:center;

    flex-direction:column;

    font-size:24px;

}



.route div:hover{

    border-color:#d6b36a;

}



.arrow{

    font-size:50px;

    color:#d6b36a;

}







/* =========================
FORM
========================= */


form{

    max-width:600px;

    margin:50px auto 0;

    display:flex;

    flex-direction:column;

    gap:20px;

}



input,
textarea{

    background:#111;

    border:1px solid #333;

    color:white;

    padding:18px;

    border-radius:15px;

    font-size:16px;

}



textarea{

    height:150px;

}



button{

    background:#d6b36a;

    border:0;

    padding:18px;

    border-radius:50px;

    font-weight:900;

    font-size:18px;

    cursor:pointer;

}







/* =========================
FOOTER
========================= */


footer{

    background:#000;

    text-align:center;

    padding:60px 20px;

    border-top:1px solid #222;

}



footer h2{

    margin-bottom:15px;

}







/* =========================
MOBILE
========================= */


@media(max-width:768px){


.navbar{

    padding:0 20px;

}


.navbar nav{

    display:none;

}



.brand{

    font-size:22px;

}



.hero h1{

    font-size:45px;

    letter-spacing:-2px;

}



.hero p{

    font-size:17px;

}



.section{

    padding:80px 20px;

}



.section h2{

    font-size:38px;

}



.route .arrow{

    display:none;

}



.stats h2{

    font-size:40px;

}


}