/* =========================
   LOCATION COURIERS PREMIUM WEBSITE
   MAIN STYLE
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',Arial,sans-serif;
    background:#071a2f;
    color:white;
    overflow-x:hidden;

}


.container{

    width:90%;
    max-width:1300px;
    margin:auto;

}


/* =========================
 HEADER
========================= */

.header{

    background:#071a2f;
    padding:20px 0;
    position:sticky;
    top:0;
    z-index:999;
    box-shadow:0 5px 20px rgba(0,0,0,.25);

}


.header .container{

    display:flex;
    justify-content:space-between;
    align-items:center;

}


.logo img{

    width:180px;
    height:auto;

}


nav ul{

    display:flex;
    list-style:none;
    gap:25px;
    align-items:center;

}


nav ul li a{

    color:white;
    text-decoration:none;
    font-weight:600;
    transition:.3s;

}


nav ul li a:hover,
nav ul li a.active{

    color:#facc15;

}


.driver-btn{

    background:#facc15;
    color:#071a2f!important;
    padding:12px 20px;
    border-radius:30px;

}


.menu-toggle{

    display:none;
    background:none;
    border:none;
    color:white;
    font-size:30px;
    cursor:pointer;

}



/* =========================
 BUTTONS
========================= */

.btn{

    display:inline-block;
    background:#facc15;
    color:#071a2f;
    padding:15px 35px;
    border-radius:30px;
    font-weight:700;
    text-decoration:none;
    transition:.3s;

}


.btn:hover{

    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,.3);

}


/* =========================
 HERO
========================= */


.hero{

    min-height:80vh;
    display:flex;
    align-items:center;
    background:
    linear-gradient(
    rgba(7,26,47,.85),
    rgba(7,26,47,.85)
    ),
    url('/assets/images/hero.jpg');

    background-size:cover;
    background-position:center;
    padding:80px 0;

}



.hero-content{

    max-width:700px;

}



.hero h1{

    font-size:60px;
    line-height:1.1;
    font-weight:800;

}


.hero h1 span{

    color:#facc15;

}


.hero p{

    font-size:20px;
    color:#ddd;
    margin:25px 0;

}



/* =========================
 SECTIONS
========================= */


.section{

    padding:80px 0;

}


.section-title{

    text-align:center;
    margin-bottom:50px;

}


.section-title h2{

    font-size:42px;
    color:#facc15;

}


.section-title p{

    color:#ccc;
    margin-top:10px;

}



/* =========================
 CARDS
========================= */


.cards{

    display:grid;
    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));
    gap:25px;

}



.card{

    background:#111827;
    padding:30px;
    border-radius:20px;
    transition:.3s;

}


.card:hover{

    transform:translateY(-10px);
    box-shadow:0 15px 30px rgba(0,0,0,.35);

}


.card h3{

    color:#facc15;
    margin-bottom:15px;

}


.card p{

    color:#d1d5db;
    line-height:1.7;

}



/* =========================
 CONTACT CARDS
========================= */


.contact-card{

    background:#111827;
    padding:25px;
    border-radius:15px;
    text-align:center;
    text-decoration:none;
    color:white;
    transition:.3s;

}


.contact-card:hover{

    background:#facc15;
    color:#071a2f;
    transform:translateY(-8px);

}



/* =========================
 TRACKING BOX
========================= */


.tracking-box{

    background:white;
    color:#111;
    padding:35px;
    border-radius:20px;
    max-width:500px;
    margin:auto;

}


.tracking-box input{

    width:100%;
    padding:15px;
    border-radius:10px;
    border:1px solid #ddd;

}


.tracking-box button{

    width:100%;
    margin-top:15px;

}



/* =========================
 FOOTER
========================= */


.footer{

    background:#050f1f;
    padding:70px 0 25px;

}


.footer-grid{

    display:grid;
    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));
    gap:40px;

}


.footer h3,
.footer h2{

    color:#facc15;
    margin-bottom:20px;

}


.footer a{

    color:white;
    text-decoration:none;
    display:block;
    margin:10px 0;

}


.footer a:hover{

    color:#facc15;

}



.social-icons{

    display:flex;
    gap:15px;

}


.social-icons img{

    width:40px;
    height:40px;
    border-radius:50%;
    transition:.3s;

}


.social-icons img:hover{

    transform:scale(1.2);

}


.copyright{

    text-align:center;
    margin-top:40px;
    color:#9ca3af;

}



/* =========================
 WHATSAPP FLOAT BUTTON
========================= */


.whatsapp{

    position:fixed;
    right:25px;
    bottom:25px;
    width:60px;
    height:60px;
    background:#25D366;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:white;
    font-size:30px;
    text-decoration:none;
    z-index:999;

}



/* =========================
 MOBILE
========================= */


@media(max-width:900px){


.menu-toggle{

    display:block;

}


nav{

    position:absolute;
    top:80px;
    left:0;
    width:100%;
    background:#071a2f;
    display:none;

}


nav.show{

    display:block;

}


nav ul{

    flex-direction:column;
    padding:30px;

}


.hero h1{

    font-size:38px;

}


.hero{

    text-align:center;

}



}
