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

body{
    font-family:'Poppins',sans-serif;
    background:#f5f7fb;
}

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    padding:25px 80px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:rgba(0,0,0,.25);
    backdrop-filter:blur(8px);
    z-index:999;
}


.logo{

    font-size:22px;

    margin-left:20px;

    font-weight:bold;

    color:#0A4D9C;

}

nav a{
    color:white;
    font-size:22px;
    font-weight:600;
    margin-left:40px;
    text-decoration:none;
}


nav a:hover{

    color:#0A4D9C;

}

.hero{

    height:90vh;
    padding-top:90px;
    background:
    linear-gradient(
        rgba(0,0,0,.45),
        rgba(0,0,0,.45)
    ),
    url("../images/hero.jpg");

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

    display:flex;

    align-items:center;

    justify-content:flex-start;

    padding-left:100px;

}


.hero-content{

    width:550px;

    color:white;

    text-align:left;
    margin-top:60px;
}
.hero h1{

    font-size:52px;

    line-height:1.15;

    margin-bottom:20px;

    color:white;

}

.hero p{

    font-size:28px;

    margin-bottom:40px;

    color:#eeeeee;

}

.buttons{

    margin-top:20px;
}


button{

    padding:15px 35px;

    border:none;

    border-radius:8px;

    cursor:pointer;

    font-size:18px;

}

.btn-primary{

    display:inline-block;
    text-decoration:none;
    background:#0A4D9C;
    color:white;
    padding:15px 35px;
    border-radius:8px;
    font-size:18px;
    font-weight:600;
    transition:.3s;

}

.btn-secondary{

    background:#FFD400;

}
.car-card{

    width:320px;

    background:#fff;

    border-radius:20px;

    overflow:hidden;

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

    transition:all .35s ease;

}

.car-card:hover{

    transform:translateY(-12px);

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

}
/* ===========================
   OUR FLEET
=========================== */

.fleet{

    padding:100px 80px;

    background:#f7f7f7;

    text-align:center;

}

.fleet h2{

    font-size:42px;

    color:#0A4D9C;

    margin-bottom:15px;

}

.fleet-subtitle{

    font-size:20px;

    color:#777;

    margin-bottom:60px;

}

.fleet-container{

    display:grid;

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

    gap:30px;

    max-width:1450px;

    margin:0 auto;

    justify-items:center;

}



.car-card:hover{

    transform:translateY(-12px);

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

}

.car-card img{

    width:100%;

    height:240px;

    object-fit:cover;

    display:block;

}

.car-card h3{

    font-size:28px;

    margin:20px 0;

    color:#222;

}

.car-card p{

    font-size:17px;

    color:#666;

    margin:10px 0;

}

.car-card button{

    margin:30px 0;

}
/* WHY CHOOSE */

.why{

    padding:100px 80px;

    background:#f8f9fb;

    text-align:center;

    margin-top:80px;

}

.why h2{

    font-size:46px;

    color:#0A4D9C;

    margin-bottom:60px;

}

.why-grid{

    display:grid;

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

    gap:30px;

}

.why-box{

    background:white;

    padding:40px;

    border-radius:18px;

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

    transition:.3s;

}

.why-box:hover{

    transform:translateY(-10px);

}

.why-box h3{

    margin-bottom:15px;

    font-size:26px;

}

.why-box p{

    color:#666;

    line-height:1.7;

}
/* REVIEWS */

.reviews{

    padding:100px 80px;

    text-align:center;

    background:white;

}

.reviews h2{

    font-size:48px;

    color:#0A4D9C;

    margin-bottom:15px;

}

.review-subtitle{

    font-size:22px;

    color:#666;

    margin-bottom:60px;

}

.review-grid{

    display:flex;

    gap:30px;

    justify-content:center;

    flex-wrap:wrap;

}

.review-card{

    width:360px;

    background:#f8f9fb;

    padding:35px;

    border-radius:20px;

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

    transition:.3s;

}

.review-card:hover{

    transform:translateY(-10px);

}

.stars{

    color:#FFD700;

    font-size:28px;

    margin-bottom:20px;

}

.review-card h3{

    margin-bottom:15px;

    font-size:24px;

}

.review-card p{

    color:#555;

    line-height:1.8;

}
/* BOOKING */

.booking{

    padding:100px 80px;

    background:#f5f7fb;

    text-align:center;

}

.booking h2{

    font-size:46px;

    color:#0A4D9C;

    margin-bottom:15px;

}

.booking p{

    color:#666;

    margin-bottom:50px;

}

.booking-form{

    width:700px;

    margin:auto;

    display:flex;

    flex-direction:column;

    gap:20px;

}

.booking-form input,

.booking-form select,

.booking-form textarea{

    padding:18px;

    font-size:17px;

    border:1px solid #ddd;

    border-radius:10px;

    outline:none;

}

.booking-form textarea{

    height:150px;

    resize:none;

}

.submit-btn{

    background:#0A4D9C;

    color:white;

    font-size:20px;

    padding:18px;

    border:none;

    border-radius:10px;

    cursor:pointer;

    transition:.3s;

}

.submit-btn:hover{

    background:#083a77;

}
.contact{

    padding:100px 80px;

    background:white;

    text-align:center;

}

.contact h2{

    font-size:54px;

    color:#0A4D9C;

    margin-bottom:20px;

}

.contact>p{

    color:#666;

    font-size:22px;

    margin-bottom:60px;

}

.contact-grid{

    display:grid;

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

    gap:30px;

}

.contact-card{

    background:#f8f8f8;

    padding:35px;

    border-radius:20px;

    transition:.3s;

}

.contact-card:hover{

    transform:translateY(-10px);
    transform:scale(1.08);

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

}

.contact-card img{

    width:180px;

    height:180px;

    object-fit:cover;

    border-radius:15px;

    margin-bottom:20px;

}

.contact-card h3{

    margin-bottom:10px;

    font-size:28px;

}

.contact-card p{

    color:#666;

    font-size:18px;

}
/* CONTACT */

.contact{

    padding:100px 80px;

    background:#f8f9fc;

    text-align:center;

}

.contact h2{

    font-size:54px;

    color:#0A4D9C;

    margin-bottom:15px;

}

.contact>p{

    color:#666;

    font-size:22px;

    margin-bottom:60px;

}



.contact-card{

    background:white;

    border-radius:20px;

    padding:35px;

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

    transition:.35s;

}

.contact-card:hover{

    transform:translateY(-10px);

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

}

.contact-card img{

    width:180px;

    height:180px;

    object-fit:cover;

    border-radius:15px;

    margin-bottom:20px;

}

.contact-card h3{

    font-size:30px;

    margin-bottom:10px;

}

.contact-card p{

    color:#666;

    margin-bottom:25px;

    font-size:18px;

}

.contact-card a{

    display:inline-block;

    background:#0A4D9C;

    color:white;

    padding:14px 35px;

    border-radius:10px;

    text-decoration:none;

    font-weight:bold;

    transition:.3s;

}

.contact-card a:hover{

    background:#083b77;

}
.pricing{
    padding:100px 8%;
    background:#ffffff;
}

.pricing h2{
    text-align:center;
    font-size:52px;
    color:#0A4D9C;
}

.pricing p{
    text-align:center;
    color:#666;
    font-size:22px;
    margin:15px 0 50px;
}

.price-table{
    overflow-x:auto;
}

.price-table table{
    width:100%;
    border-collapse:collapse;
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.price-table th{
    background:#0A4D9C;
    color:#fff;
    padding:18px;
    font-size:18px;
}

.price-table td{
    padding:16px;
    border-bottom:1px solid #eee;
    text-align:center;
    font-size:17px;
}

.price-table tr:nth-child(even){
    background:#f8fbff;
}

.price-table tr:hover{
    background:#eef5ff;
}
footer{

    background:#083b75;

    color:white;

    padding:70px 8% 30px;

}

.footer-container{

    display:flex;

    justify-content:space-between;

    gap:80px;

    flex-wrap:wrap;

}

.footer-container h2{

    margin-bottom:20px;

}

.footer-container h3{

    margin-bottom:20px;

}

.footer-container p{

    margin:10px 0;

    color:#eeeeee;

    line-height:1.8;

}

footer hr{

    margin:40px 0 20px;

    border:none;

    height:1px;

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

}

.copyright{

    text-align:center;

    color:#cccccc;

}
header.scrolled{

    padding:18px 70px;

    background:white;

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

}
.btn-primary:hover{
    transform:translateY(-3px);
    box-shadow:0 15px 35px rgba(0,0,0,.25);
}

.btn-secondary:hover{
    transform:translateY(-3px);
}
header{

    backdrop-filter: blur(12px);

    -webkit-backdrop-filter: blur(12px);

    border-bottom:1px solid rgba(255,255,255,.12);

}

.logo{

    letter-spacing:1px;

}

nav a{

    position:relative;

}

nav a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:3px;

    background:#FFD400;

    transition:.35s;

}

nav a:hover::after{

    width:100%;

}

nav a:hover{

    color:#FFD400;

}



@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(60px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}
button{

    transition:.3s;

}

button:hover{

    transform:translateY(-5px);

    box-shadow:0 12px 30px rgba(0,0,0,.25);

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

@media (max-width:768px){

header{

    flex-direction:column;

    padding:20px;

}

.logo{

    font-size:16px;

    margin-bottom:15px;

}

nav{

    display:flex;

    gap:18px;

}

nav a{

    margin:0;

    font-size:18px;

}

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

.hero{

    height:auto;

    padding:180px 25px 80px;

}

}

.hero h1{

    font-size:42px;
    line-height:1.15;

}

.hero p{

    font-size:18px;


}

button{

    padding:15px 35px;
    border:none;
    border-radius:10px;
    cursor:pointer;
    font-size:18px;
    font-weight:600;
    transition:.3s;

}

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

.fleet-container{

    grid-template-columns:1fr;

}

.car-card{

    width:100%;

}

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

.why-grid{

    grid-template-columns:1fr;

}

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

.review-grid{

    grid-template-columns:1fr;

}

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

}

}
.price-table{

    overflow-x:auto;

}

table{

    min-width:700px;

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

.footer-container{

    grid-template-columns:1fr;

    text-align:center;

}

}
@media (max-width:1400px){

.fleet-container{

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

}

}

@media (max-width:768px){

.fleet-container{

    grid-template-columns:1fr;

}
}
/* ================= FLOATING MENU ================= */

.floating-menu{
    position:fixed;
    right:25px;
    bottom:25px;
    z-index:9999;
}

.top-btn{
    width:60px;
    height:60px;
    border-radius:50%;
    background:#0A4D9C;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    box-shadow:0 5px 15px rgba(0,0,0,.35);
    transition:.3s;
}

.top-btn:hover{
    transform:scale(1.1);
    background:#0d6efd;
}

.top-btn i{
    font-size:28px;
}