/* GOOGLE FONT */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&display=swap');

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

body{
    margin:0;
    font-family:Arial, sans-serif;
    background:#ffffff;
}

/* NAVBAR */

.navbar{

    width:100%;
    height:100px;

    background:#ffffff;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:0 80px;

    border-bottom:1px solid #e5e5e5;
}

/* Logo */

.logo img{
    width:130px;
    height:auto;
}

/* Navigation */

.nav-links{
    display:flex;
    list-style:none;
    gap:45px;
}

.nav-links a{
    text-decoration:none;
    color:#000;

    font-size:14px;
    font-weight:600;
    letter-spacing:1px;

    position:relative;

    padding-bottom:8px;

    transition: all .3s ease;
}

.nav-links a::after{
    content:"";

    position:absolute;
    left:50%;
    transform:translateX(-50%);

    bottom:0;

    width:0;
    height:2px;

    background:#D4AF37;

    transition:.35s ease;
}

.nav-links a:hover::after{
    width:100%;
}

.nav-links a:hover{
    color:#D4AF37;
}

.active{
    color:#D4AF37 !important;
}

.active::after{
    width:100% !important;
}

/* Button */

.book-btn{
    background:#D4AF37;
    color:white;
    display:flex;
    text-decoration:none;

    padding:15px 30px;

    border-radius:4px;

    font-weight:600;
    letter-spacing:1px;

    transition:.3s;
}

.book-btn:hover{
    background:#be9827;
    transform:translateY(-2px);
    box-shadow:0 8px 25px rgba(212,175,55,.25);
}

/* Mobile Menu Button */

.menu-toggle{
    display:none;
    font-size:30px;
    cursor:pointer;
    color:#000;
}

/* Tablet */

/* =========================
   TABLETS (iPad Pro, Surface)
   ========================= */

   @media screen and (max-width:1024px){

    .navbar{
        padding:0 30px;
    }

    .logo img{
        width:120px;
    }

    .nav-links{
        gap:20px;
    }

    .nav-links a{
        font-size:12px;
    }

    .book-btn{
        display:flex;
        align-items:center;

        padding:10px 18px;
        font-size:12px;
    }

    .menu-toggle{
        display:none;
    }
}

/* =========================
   PHONES & SMALL TABLETS
   ========================= */

@media screen and (max-width:820px){

    .menu-toggle{
        display:block;
        font-size:30px;
        cursor:pointer;
        color:#000;
    }

    .book-btn{
        display:flex;
        align-items:center;

        padding:10px 16px;
        font-size:12px;

        margin-left:auto;
        margin-right:15px;
    }

    .nav-links{
        position:absolute;

        top:90px;
        left:-100%;

        width:100%;

        display:flex;
        flex-direction:column;

        background:#fff;

        gap:0;

        transition:.4s ease;
    }

    .nav-links.active-menu{
        left:0;
    }

    .nav-links li{
        width:100%;
    }

    .nav-links a{
        display:block;

        padding:20px;

        text-align:center;

        border-bottom:1px solid #eee;
    }
}

/* =========================
   SMALL PHONES
   ========================= */

@media screen and (max-width:480px){

    .navbar{
        height:80px;
        padding:0 15px;
    }

    .logo img{
        width:100px;
    }

    .book-btn{
        padding:8px 12px;
        font-size:11px;
        margin-right:10px;
    }

    .menu-toggle{
        font-size:26px;
    }

    .nav-links{
        top:80px;
    }
}

/* =========================
   VERY SMALL PHONES
   ========================= */

@media screen and (max-width:375px){

    .logo img{
        width:85px;
    }

    .book-btn{
        padding:7px 10px;
        font-size:10px;
    }

    .menu-toggle{
        font-size:22px;
    }
}

/* =========================
   FLEET HERO
========================= */

.fleet-hero{

    position:relative;

    height:85vh;

    display:flex;

    align-items:center;

    background:
    url("assets/fleet-hero.webp");

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;
}

/* Dark Overlay */

.fleet-overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        to right,
        rgba(0,0,0,.85),
        rgba(0,0,0,.45),
        rgba(0,0,0,.2)
    );
}

/* Content */

.fleet-hero-content{

    position:relative;

    z-index:2;

    max-width:700px;

    margin-left:8%;
}

/* Subtitle */

.hero-subtitle{

    position:relative;

    color:#D4AF37;

    font-size:14px;

    letter-spacing:4px;

    text-transform:uppercase;

    display:inline-block;

    padding-bottom:12px;

    margin-bottom:25px;
}

.hero-subtitle::after{

    content:"";

    position:absolute;

    left:0;
    bottom:0;

    width:60%;

    height:2px;

    background:#D4AF37;
}

/* Heading */

.fleet-hero h1{

    color:white;

    font-size:5rem;

    line-height:1.1;

    margin-bottom:25px;

    font-weight:700;
}

/* Description */

.fleet-hero p{

    color:#d4d4d4;

    line-height:1.9;

    font-size:1.1rem;

    max-width:600px;

    margin-bottom:40px;
}

/* Buttons */

.fleet-hero-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;
}

.hero-btn-primary{

    background:#D4AF37;

    color:white;

    text-decoration:none;

    padding:18px 38px;

    border-radius:10px;

    font-weight:600;

    transition:.3s ease;
}

.hero-btn-primary:hover{

    background:#c59c2d;

    transform:translateY(-3px);
}

.hero-btn-secondary{

    border:2px solid #D4AF37;

    color:#D4AF37;

    text-decoration:none;

    padding:18px 38px;

    border-radius:10px;

    font-weight:600;

    transition:.3s ease;
}

.hero-btn-secondary:hover{

    background:#D4AF37;

    color:white;
}

/* =========================
   ANIMATION
========================= */

.fleet-hero-content{

    animation:fleetHeroFade 1s ease;
}

@keyframes fleetHeroFade{

    from{

        opacity:0;

        transform:translateY(40px);
    }

    to{

        opacity:1;

        transform:translateY(0);
    }
}

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

@media(max-width:1024px){

    .fleet-hero h1{

        font-size:4rem;
    }
}

@media(max-width:768px){

    .fleet-hero{

        height:75vh;
    }

    .fleet-hero-content{

        margin:0 25px;
    }

    .fleet-hero h1{

        font-size:2.8rem;
    }

    .fleet-hero p{

        font-size:1rem;
    }
}

@media(max-width:480px){

    .fleet-hero h1{

        font-size:2.2rem;
    }

    .hero-btn-primary,
    .hero-btn-secondary{

        width:100%;

        text-align:center;
    }
}

/* =========================
   FLEET SECTION
========================= */

.fleet-showcase{

    padding:120px 8%;

    background:#f8f8f8;
}

/* =========================
   SECTION TITLE
========================= */

.section-title{

    text-align:center;

    margin-bottom:60px;
}

.section-title span{

    display:inline-block;

    color:#D4AF37;

    font-size:14px;

    font-weight:600;

    letter-spacing:4px;

    text-transform:uppercase;

    position:relative;

    padding-bottom:12px;
}

.section-title span::after{

    content:"";

    position:absolute;

    left:50%;

    transform:translateX(-50%);

    bottom:0;

    width:60px;

    height:2px;

    background:#D4AF37;
}

.section-title h2{

    font-size:3rem;

    color:#111111;

    margin-top:20px;

    font-weight:700;
}

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

.fleet-grid{

    display:grid;

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

    gap:35px;
}

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

.fleet-card{

    background:#ffffff;

    border-radius:24px;

    overflow:hidden;

    border:1px solid rgba(0,0,0,.06);

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

    transition:.4s ease;
}

.fleet-card:hover{

    transform:translateY(-10px);

    border-color:#D4AF37;

    box-shadow:
    0 25px 60px rgba(212,175,55,.15);
}

/* =========================
   IMAGE
========================= */

.fleet-card img{

    width:100%;

    height:260px;

    object-fit:contain;

    transition:.4s ease;
}

.fleet-card:hover img{

    transform:scale(1.05);
}

/* =========================
   INFO
========================= */

.fleet-info{

    padding:30px;

    text-align:center;
}

.vehicle-type{

    display:block;

    color:#D4AF37;

    font-size:13px;

    font-weight:600;

    letter-spacing:3px;

    text-transform:uppercase;

    margin-bottom:10px;
}

.fleet-info h3{

    color:#111;

    font-size:1.4rem;

    margin-bottom:18px;
}

/* =========================
   SPECS
========================= */

.fleet-specs{

    display:flex;

    justify-content:center;

    gap:25px;

    color:#666;

    font-size:15px;

    margin-bottom:20px;
}

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

.fleet-btn{

    display:block;

    width:100%;

    text-align:center;

    padding:15px;

    background:#D4AF37;

    color:white;

    text-decoration:none;

    border-radius:10px;

    font-weight:600;

    transition:.3s ease;
}

.fleet-btn:hover{

    background:#c79f2f;

    transform:translateY(-2px);
}

/* =========================
   PAGINATION
========================= */

.fleet-pagination{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:12px;

    margin-top:70px;
}

.page-btn{

    width:45px;

    height:45px;

    border:none;

    border-radius:8px;

    background:white;

    color:#111;

    cursor:pointer;

    font-weight:600;

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

    transition:.3s ease;
}

.page-btn:hover{

    background:#D4AF37;

    color:white;
}

.page-btn.active{

    background:#D4AF37;

    color:white;
}

/* =========================
   TABLET
========================= */

@media(max-width:1024px){

    .fleet-grid{

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

    .section-title h2{

        font-size:2.5rem;
    }
}

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

@media(max-width:768px){

    .fleet-showcase{

        padding:90px 25px;
    }

    .fleet-grid{

        grid-template-columns:1fr;
    }

    .fleet-card img{

        height:230px;
    }

    .section-title h2{

        font-size:2rem;
    }
}

/* =========================
   SMALL PHONES
========================= */

@media(max-width:480px){

    .fleet-card img{

        height:210px;
    }

    .fleet-info{

        padding:22px;
    }

    .fleet-info h3{

        font-size:1.2rem;
    }
}

/* =========================
   FLEET ROW
========================= */

.fleet-row{

    margin-top:90px;
}

.row-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:30px;
}

.row-header h3{

    font-size:2rem;

    color:#111;

    font-weight:700;

    position:relative;
}

.row-header h3::after{

    content:"";

    position:absolute;

    bottom:-10px;

    left:0;

    width:60px;

    height:3px;

    background:#D4AF37;
}

/* =========================
   SLIDER WRAPPER
========================= */

.slider-wrapper{

    position:relative;
}

/* =========================
   HORIZONTAL SLIDER
========================= */

.fleet-slider{

    display:flex;

    gap:30px;

    overflow-x:auto;

    scroll-behavior:smooth;

    scrollbar-width:none;

    padding:10px 5px;
}

.fleet-slider::-webkit-scrollbar{

    display:none;
}

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

.fleet-card{

    min-width:340px;

    background:#fff;

    border-radius:24px;

    overflow:hidden;

    border:1px solid rgba(0,0,0,.06);

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

    transition:.4s ease;

    flex-shrink:0;
}

.fleet-card:hover{

    transform:translateY(-10px);

    border-color:#D4AF37;

    box-shadow:
    0 25px 60px rgba(212,175,55,.15);
}

/* =========================
   IMAGE
========================= */

.fleet-card img{

    width:100%;

    height:240px;

    object-fit:contain;

    background:white;

    padding:20px;
}

/* =========================
   INFO
========================= */

.fleet-info{

    padding:25px;

    text-align:center;
}

.vehicle-type{

    display:block;

    color:#D4AF37;

    font-size:13px;

    letter-spacing:3px;

    text-transform:uppercase;

    font-weight:600;

    margin-bottom:12px;
}

.fleet-info h3{

    color:#111;

    font-size:1.5rem;

    margin-bottom:15px;
}

/* =========================
   SPECS
========================= */

.fleet-specs{

    display:flex;

    justify-content:center;

    gap:20px;

    margin-bottom:20px;

    color:#666;
}

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

.fleet-btn{

    display:block;

    width:100%;

    text-align:center;

    padding:14px;

    background:#D4AF37;

    color:white;

    text-decoration:none;

    border-radius:10px;

    font-weight:600;

    transition:.3s;
}

.fleet-btn:hover{

    background:#c89f2d;
}

/* =========================
   ARROWS
========================= */

.slider-btn{

    position:absolute;

    top:45%;

    transform:translateY(-50%);

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:#D4AF37;

    color:white;

    cursor:pointer;

    z-index:10;

    transition:.3s;
}

.slider-btn:hover{

    background:#111;
}

.prev{

    left:-25px;
}

.next{

    right:-25px;
}

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

@media(max-width:768px){

    .fleet-card{

        min-width:280px;
    }

    .slider-btn{

        width:45px;
        height:45px;
    }

    .row-header h3{

        font-size:1.5rem;
    }
}

/* =========================
   FLEET FEATURES
========================= */

/* =========================
   FLEET FEATURES
========================= */

.fleet-features{

    padding:120px 8%;

    background:#050505;
}

/* =========================
   SECTION TITLE
========================= */

.fleet-features .section-title{

    text-align:center;

    margin-bottom:70px;
}

.fleet-features .section-title span{

    display:inline-block;

    color:#D4AF37;

    letter-spacing:4px;

    text-transform:uppercase;

    font-size:14px;

    font-weight:600;

    position:relative;

    padding-bottom:12px;
}

.fleet-features .section-title span::after{

    content:"";

    position:absolute;

    left:50%;

    transform:translateX(-50%);

    bottom:0;

    width:60px;

    height:2px;

    background:#D4AF37;
}

.fleet-features .section-title h2{

    color:white;

    font-size:3rem;

    margin-top:20px;

    font-weight:700;
}

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

.features-container{

    display:grid;

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

    gap:30px;
}

/* =========================
   FEATURE CARD
========================= */

.feature-box{

    background:#111111;

    padding:45px 35px;

    border-radius:24px;

    text-align:center;

    border:1px solid rgba(212,175,55,.12);

    transition:.4s ease;

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

    position:relative;

    overflow:hidden;
}

.feature-box::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;

    height:3px;

    background:#D4AF37;

    transform:scaleX(0);

    transition:.4s ease;
}

.feature-box:hover::before{

    transform:scaleX(1);
}

.feature-box:hover{

    transform:translateY(-12px);

    border-color:#D4AF37;

    box-shadow:
    0 25px 60px rgba(212,175,55,.18);
}

/* =========================
   ICON
========================= */

.feature-icon{

    width:85px;

    height:85px;

    margin:auto auto 25px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:rgba(212,175,55,.12);

    color:#D4AF37;

    font-size:32px;

    transition:.4s ease;
}

.feature-box:hover .feature-icon{

    transform:rotate(10deg) scale(1.08);

    background:#D4AF37;

    color:white;
}

/* =========================
   TEXT
========================= */

.feature-box h3{

    color:white;

    margin-bottom:15px;

    font-size:1.3rem;

    font-weight:600;
}

.feature-box p{

    color:#bdbdbd;

    line-height:1.9;

    font-size:15px;
}

/* =========================
   TABLET
========================= */

@media(max-width:1024px){

    .features-container{

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

    .fleet-features .section-title h2{

        font-size:2.5rem;
    }
}

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

@media(max-width:768px){

    .fleet-features{

        padding:90px 25px;
    }

    .features-container{

        grid-template-columns:1fr;
    }

    .fleet-features .section-title h2{

        font-size:2rem;
    }

    .feature-box{

        padding:35px 25px;
    }
}

.footer{

    background:#ffffff;

    padding-top:80px;

    border-top:1px solid rgba(212,175,55,.15);
}

/* =========================
   CONTAINER
========================= */

.footer-container{

    width:90%;

    margin:auto;

    display:grid;

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

    gap:50px;

    padding-bottom:60px;
}

/* =========================
   LOGO
========================= */

.footer-logo{

    width:180px;

    margin-bottom:25px;
}

.footer-col p{

    color:#666666;

    line-height:1.8;
}

/* =========================
   HEADINGS
========================= */

.footer-col h3{

    color:#111111;

    margin-bottom:25px;

    font-size:1.2rem;

    position:relative;

    display:inline-block;

    padding-bottom:10px;
}

.footer-col h3::after{

    content:"";

    position:absolute;

    left:0;
    bottom:0;

    width:50%;

    height:2px;

    background:#D4AF37;
}

/* =========================
   LINKS
========================= */

.footer-col ul{

    list-style:none;
}

.footer-col ul li{

    margin-bottom:15px;

    color:#666666;
}

.footer-col ul li a{

    text-decoration:none;

    color:#666666;

    transition:.3s ease;
}

.footer-col ul li a:hover{

    color:#D4AF37;

    padding-left:5px;
}

/* =========================
   SOCIAL ICONS
========================= */

.footer-social{

    display:flex;

    gap:15px;

    margin-top:25px;
}

.footer-social a{

    width:45px;

    height:45px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    border:1px solid rgba(212,175,55,.3);

    color:#D4AF37;

    text-decoration:none;

    transition:.3s ease;
}

.footer-social a:hover{

    background:#D4AF37;

    color:white;

    transform:translateY(-3px);
}

/* =========================
   BOTTOM
========================= */

.footer-bottom{

    border-top:1px solid rgba(0,0,0,.08);

    text-align:center;

    padding:25px 0;
}

.footer-bottom p{

    color:#888888;

    font-size:14px;
}

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

@media(max-width:1024px){

    .footer-container{

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

@media(max-width:768px){

    .footer{

        text-align:center;
    }

    .footer-container{

        grid-template-columns:1fr;

        gap:40px;
    }

    .footer-logo{

        margin:auto auto 20px;
    }

    .footer-social{

        justify-content:center;
    }

    .footer-col h3::after{

        left:50%;

        transform:translateX(-50%);
    }
}

