/* =========================================
   GENERAL
========================================= */

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins', sans-serif;
    background:#fff;
    color:#222;
    overflow-x:hidden;
}

/* =========================================
   NAVBAR
========================================= */

.navbar{
    background:rgba(10,10,10,.45);
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);
    border-bottom:1px solid rgba(255,255,255,.08);
    transition:.3s;
    padding:14px 0;
}

.navbar-brand{
    font-size:1.4rem;
    font-weight:700;
    letter-spacing:.5px;
}

.nav-link{
    color:white !important;
    margin-left:20px;
    transition:.3s;
    font-weight:500;
}

.nav-link:hover{
    color:#f1b300 !important;
}
/* =========================================
   LOGO NAVBAR
========================================= */

.logo-navbar{
    height:130px;
    width:auto;

    margin-right:14px;

    object-fit:contain;
}

.brand-text{
    font-size:1.2rem;
    font-weight:700;
    color:white;

    letter-spacing:.3px;
}

/* MOBILE */

@media(max-width:768px){

    .logo-navbar{
        height:70px;
    }

    .brand-text{
        font-size:1rem;
    }
}
/* =========================================
   HERO
========================================= */

.hero{
    position:relative;
    height:100vh;
    overflow:hidden;
}

.hero-video{
    width:100%;
    height:100%;
    object-fit:cover;
    animation:zoomHero 20s ease-in-out infinite alternate;
}

@keyframes zoomHero{

    from{
        transform:scale(1);
    }

    to{
        transform:scale(1.08);
    }
}

.overlay{
    position:absolute;
    inset:0;

    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,.55),
            rgba(0,0,0,.75)
        );
}

.hero-content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    text-align:center;
    color:white;
    width:90%;
    z-index:2;
}

.hero-content h1{
    font-size:5rem;
    font-weight:700;
    line-height:1.1;
    margin-bottom:25px;
    text-shadow:0 10px 30px rgba(0,0,0,.4);
}

.hero-content p{
    font-size:1.4rem;
    max-width:700px;
    margin:auto;
    margin-bottom:35px;
    color:rgba(255,255,255,.9);
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

/* =========================================
   BUTTONS
========================================= */

.btn{
    border-radius:50px;
    padding:14px 32px;
    font-weight:600;
    transition:.3s;
}

.btn-warning{
    background:#f1b300;
    border:none;
    color:black;
}

.btn-warning:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 30px rgba(241,179,0,.35);
}

.btn-outline-light:hover{
    transform:translateY(-3px);
}

/* =========================================
   DIVIDERS
========================================= */

.section-divider,
.wave-divider{
    position:relative;
    width:100%;
    overflow:hidden;
    line-height:0;
}

.section-divider svg,
.wave-divider svg{
    display:block;
    width:100%;
    height:80px;
}

.section-divider path{
    fill:#111;
}

.wave-divider path{
    fill:#f8f9fa;
}

/* =========================================
   SECTIONS
========================================= */

section{
    position:relative;
    z-index:2;
    padding:100px 0;
}

section h2{
    font-size:3rem;
    font-weight:700;
    margin-bottom:20px;
}

section p{
    color:#777;
    font-size:1.05rem;
}

.section-dark{
    background:#111;
    color:white;

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

.section-dark p{
    color:#cfcfcf;
}

/* =========================================
   CARDS
========================================= */

.custom-card{
    border:none;
    overflow:hidden;
    border-radius:24px;
    background:#1d1d1d;
    color:white;

    transition:.4s;

    box-shadow:
        0 20px 60px rgba(0,0,0,.25);
}

.custom-card:hover{
    transform:translateY(-10px);

    box-shadow:
        0 30px 70px rgba(0,0,0,.4);
}

.custom-card img{
    height:360px;
    object-fit:cover;
}

.custom-card .card-body{
    padding:30px;
}

.custom-card h5{
    font-size:1.4rem;
    margin-bottom:15px;
}

/* =========================================
   SERVICES
========================================= */

.service-box{
    background:white;
    padding:45px 30px;
    border-radius:24px;

    transition:.4s;

    height:100%;

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

.service-box:hover{
    transform:translateY(-8px);

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

.service-box i{
    font-size:48px;
    color:#f1b300;
    margin-bottom:25px;
}

.service-box h4{
    margin-bottom:15px;
    font-weight:600;
}

/* =========================================
   CONTACT
========================================= */

.contact-box{
    background:#111;
    color:white;
    padding:45px;
    border-radius:24px;

    height:100%;
}

.contact-box p{
    margin-bottom:20px;
    font-size:1.05rem;
    color:#ddd;
}

.form-control{
    border-radius:16px;
    padding:16px;
    border:none;

    background:#f5f5f5;
}

.form-control:focus{
    box-shadow:none;
    border:2px solid #f1b300;
}

/* =========================================
   CTA SECTION
========================================= */

.cta-section{
    background:
        linear-gradient(
            rgba(0,0,0,.7),
            rgba(0,0,0,.7)
        ),
        url('../img/bus.jpg');

    background-size:cover;
    background-position:center;

    color:white;

    text-align:center;

    padding:120px 20px;
}

.cta-section h2{
    font-size:3.5rem;
    margin-bottom:20px;
}

.cta-section p{
    color:#ddd;
    margin-bottom:35px;
    font-size:1.2rem;
}

/* =========================================
   WHATSAPP FLOAT
========================================= */

.whatsapp-float{
    position:fixed;

    right:20px;
    bottom:20px;

    width:65px;
    height:65px;

    background:#25D366;
    color:white;

    border-radius:50%;

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

    font-size:32px;

    text-decoration:none;

    z-index:999;

    transition:.3s;

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

.whatsapp-float:hover{
    transform:scale(1.08);
    color:white;
}

/* =========================================
   FOOTER PREMIUM
========================================= */

.footer-premium{
    background:#0a0a0a;
    color:white;
    padding:80px 0 30px;
}

.footer-logo{
    font-size:2rem;
    font-weight:700;
    margin-bottom:20px;
}

.footer-text{
    color:#bdbdbd;
    line-height:1.7;
}

.footer-premium h5{
    margin-bottom:20px;
    font-weight:600;
}

.footer-links{
    list-style:none;
    padding:0;
}

.footer-links li{
    margin-bottom:12px;
}

.footer-links a{
    color:#bdbdbd;
    text-decoration:none;
    transition:.3s;
}

.footer-links a:hover{
    color:#f1b300;
}

.footer-contact p{
    color:#bdbdbd;
    margin-bottom:12px;
}

.socials{
    display:flex;
    gap:15px;
    margin-top:25px;
}

.socials a{
    width:42px;
    height:42px;

    background:#1d1d1d;

    border-radius:50%;

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

    color:white;

    text-decoration:none;

    transition:.3s;
}

.socials a:hover{
    background:#f1b300;
    color:black;
}

.footer-divider{
    margin:50px 0 25px;
    border-color:rgba(255,255,255,.08);
}

.footer-bottom{
    text-align:center;
    color:#888;
}

/* =========================================
   SHADOWS
========================================= */

.shadow{
    box-shadow:
        0 20px 60px rgba(0,0,0,.15)!important;
}

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

a,
button{
    transition:.3s;
}

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

@media(max-width:992px){

    .hero-content h1{
        font-size:3.5rem;
    }

    section h2{
        font-size:2.5rem;
    }

    .cta-section h2{
        font-size:2.7rem;
    }
}

@media(max-width:768px){

    .hero{
        height:90vh;
    }

    .hero-content h1{
        font-size:2.5rem;
    }

    .hero-content p{
        font-size:1.05rem;
    }

    .custom-card img{
        height:260px;
    }

    section{
        padding:80px 0;
    }

    section h2{
        font-size:2rem;
    }

    .cta-section h2{
        font-size:2.2rem;
    }

    .footer-premium{
        text-align:center;
    }

    .socials{
        justify-content:center;
    }

    .navbar{
        background:#111;
    }
}



/* =========================================
   PREMIUM UNIT
========================================= */

.premium-unit{
    padding:120px 0;
    background:white;
}

.premium-image{
    position:relative;
}

.premium-image img{
    width:100%;

    border-radius:28px;

    box-shadow:
        0 30px 80px rgba(0,0,0,.18);

    transition:.5s;
}

.premium-image img:hover{
    transform:scale(1.02);
}

.premium-tag{
    display:inline-block;

    background:#f1b300;
    color:black;

    padding:10px 18px;

    border-radius:50px;

    font-size:.9rem;
    font-weight:700;

    margin-bottom:25px;
}

.premium-unit h2{
    font-size:3.2rem;
    font-weight:700;

    margin-bottom:25px;

    line-height:1.1;
}

.premium-unit p{
    font-size:1.08rem;
    color:#666;

    line-height:1.8;

    margin-bottom:35px;
}

.premium-features{
    display:grid;

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

    gap:18px;
}

.feature-item{
    background:#f8f9fa;

    padding:18px 22px;

    border-radius:18px;

    display:flex;
    align-items:center;
    gap:12px;

    font-weight:600;

    transition:.3s;
}

.feature-item:hover{
    transform:translateY(-4px);

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

.feature-item i{
    color:#f1b300;
    font-size:1.2rem;
}

/* =========================================
   MINI GALLERY
========================================= */

.premium-gallery{
    margin-top:90px;
}

.gallery-title{
    text-align:center;
    margin-bottom:50px;
}

.gallery-title h3{
    font-size:2.2rem;
    font-weight:700;
    margin-bottom:15px;
}

.gallery-title p{
    color:#777;
}

.gallery-card{
    overflow:hidden;
    border-radius:24px;

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

.gallery-card img{
    width:100%;
    height:420px;

    object-fit:cover;

    transition:.5s;
}

.gallery-card:hover img{
    transform:scale(1.05);
}

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

@media(max-width:768px){

    .premium-unit{
        padding:80px 0;
    }

    .premium-unit h2{
        font-size:2.2rem;
    }

    .premium-features{
        grid-template-columns:1fr;
    }

    .gallery-card img{
        height:260px;
    }

    .gallery-title h3{
        font-size:1.8rem;
    }
}



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

.fleet-premium-section{
    background:#0d0d0d;
    color:white;
    padding:120px 0;
}

.premium-subtitle{
    display:inline-block;

    background:#f1b300;
    color:black;

    padding:10px 18px;

    border-radius:50px;

    font-size:.9rem;
    font-weight:700;

    margin-bottom:20px;
}

.fleet-title{
    font-size:3.5rem;
    font-weight:700;

    margin-bottom:20px;
}

.fleet-description{
    color:#bbb;
    max-width:700px;
    margin:auto;
}

/* =========================================
   TABS
========================================= */

.fleet-tabs{
    display:flex;
    justify-content:center;
    gap:15px;

    flex-wrap:wrap;

    margin-top:60px;
    margin-bottom:60px;
}

.fleet-tab{
    background:#1a1a1a;
    color:white;

    border:none;

    padding:14px 28px;

    border-radius:50px;

    font-weight:600;

    transition:.3s;
}

.fleet-tab:hover{
    background:#2b2b2b;
}

.fleet-tab.active{
    background:#f1b300;
    color:black;
}

/* =========================================
   CATEGORIES
========================================= */

.fleet-category{
    display:none;
    animation:fadeFleet .5s ease;
}

.fleet-category.active{
    display:block;
}

@keyframes fadeFleet{

    from{
        opacity:0;
        transform:translateY(20px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}

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

.vehicle-card{
    background:#171717;

    border-radius:28px;

    overflow:hidden;

    transition:.4s;

    box-shadow:
        0 20px 60px rgba(0,0,0,.25);
}

.vehicle-card:hover{
    transform:translateY(-10px);

    box-shadow:
        0 30px 80px rgba(0,0,0,.4);
}

.vehicle-image{
    position:relative;
    overflow:hidden;
}

.vehicle-image img{
    width:100%;
    height:320px;

    object-fit:cover;

    transition:.5s;
}

.vehicle-card:hover img{
    transform:scale(1.06);
}

.vehicle-overlay{
    position:absolute;
    inset:0;

    background:rgba(0,0,0,.45);

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

    opacity:0;

    transition:.4s;
}

.vehicle-card:hover .vehicle-overlay{
    opacity:1;
}

.vehicle-content{
    padding:30px;
}

.vehicle-top{
    display:flex;
    justify-content:space-between;
    align-items:center;

    margin-bottom:25px;
}

.vehicle-top h3{
    font-size:1.5rem;
    font-weight:700;
}

.vehicle-capacity{
    background:#f1b300;
    color:black;

    padding:8px 14px;

    border-radius:50px;

    font-size:.85rem;
    font-weight:700;
}

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

.vehicle-features{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}

.vehicle-features span{
    background:#222;

    padding:10px 14px;

    border-radius:50px;

    font-size:.9rem;

    display:flex;
    align-items:center;
    gap:8px;
}

.vehicle-features i{
    color:#f1b300;
}

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

.vehicle-card.compact .vehicle-image img{
    height:260px;
}

.vehicle-card.compact .vehicle-content{
    text-align:center;
}

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

@media(max-width:768px){

    .fleet-title{
        font-size:2.3rem;
    }

    .vehicle-image img{
        height:240px;
    }

    .vehicle-top{
        flex-direction:column;
        align-items:flex-start;
        gap:15px;
    }

    .vehicle-features{
        gap:10px;
    }

    .vehicle-features span{
        width:100%;
    }
}