*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

html{
scroll-behavior:smooth;
}

body{
background:#050d1d;
color:white;
overflow-x:hidden;
}

.container{
width:90%;
max-width:1400px;
margin:auto;
}

.navbar{
position:absolute;
top:0;
left:0;
width:100%;
z-index:1000;
padding:25px 0;
}

.nav-container{
display:flex;
align-items:center;
justify-content:space-between;
}

.logo img{
height:75px;
}

.nav-links{
display:flex;
list-style:none;
gap:35px;
}

.nav-links a{
text-decoration:none;
color:white;
font-size:15px;
font-weight:500;
transition:.3s;
}

.nav-links a:hover,
.nav-links .active{
color:#2c8cff;
}

.nav-right{
display:flex;
align-items:center;
gap:20px;
}

.book-btn{
background:#2c8cff;
padding:14px 26px;
border-radius:12px;
color:white;
text-decoration:none;
font-weight:600;
display:flex;
align-items:center;
gap:8px;
}

.language{
display:flex;
align-items:center;
gap:8px;
cursor:pointer;
font-size:14px;
}

.hero{
    min-height:100vh;

    background:
    linear-gradient(
        90deg,
        rgba(3,10,25,.90) 0%,
        rgba(3,10,25,.75) 35%,
        rgba(3,10,25,.20) 100%
    ),
    url("images/hero-bus.jpg.png");

    background-size: contain;
    background-position: 95% center;
    background-repeat: no-repeat;

    display:flex;
    align-items:center;
}



.hero-overlay{
position:absolute;
inset:0;
background:
radial-gradient(
circle at right,
rgba(44,140,255,.15),
transparent 45%
);
}

.hero-content{
padding-bottom: 50px;
position:relative;
z-index:2;
width:100%;
}

.hero-text{
max-width:700px;
}

.hero-text h1{
font-size:50px;
line-height:1.05;
font-weight:800;
margin-bottom:20px;
margin-left: 60px;
}

.hero-text span{
display:block;
color:#2c8cff;
}

.hero-text p{
font-size:15px;
line-height:1.9;
color:#d0d0d0;
margin-bottom:35px;
max-width:550px;
margin-left: 60px;
}

.hero-buttons{
display:flex;
gap:20px;
flex-wrap:wrap;
margin-left: 60px;
}

.primary-btn,
.secondary-btn{
padding:12px 24px;
border-radius:14px;
text-decoration:none;
font-weight:600;
display:flex;
align-items:center;
gap:10px;
transition:.3s;
}

.primary-btn{
background:#2c8cff;
color:white;
}

.secondary-btn{
border:2px solid white;
color:white;
}

.primary-btn:hover,
.secondary-btn:hover{
transform:translateY(-4px);
}

.tours{
padding:120px 0;
}

.section-title{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:45px;
}

.section-title h2{
font-size:48px;
font-weight:800;
}

.line{
width:70px;
height:4px;
background:#2c8cff;
margin-top:10px;
border-radius:50px;
}

.view-all{
text-decoration:none;
color:#2c8cff;
font-weight:600;
display:flex;
align-items:center;
gap:10px;
}

.tour-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.tour-card{
background:#0b1831;
border-radius:22px;
overflow:hidden;
transition:.3s;
}

.tour-card:hover{
transform:translateY(-8px);
}

.tour-card img{
width:100%;
height:320px;
object-fit:cover;
display:block;
}

.tour-content{
padding:22px;
}

.tag{
display:inline-block;
background:#2c8cff;
padding:6px 12px;
border-radius:999px;
font-size:12px;
margin-bottom:12px;
}

.tour-content h3{
font-size:22px;
margin-bottom:10px;
}

.tour-content p{
color:#cfcfcf;
line-height:1.7;
font-size:14px;
}

@media(max-width:1200px){

.tour-grid{
grid-template-columns:repeat(2,1fr);
}

.features-grid{
grid-template-columns:repeat(2,1fr);
}

.hero-text h1{
font-size:70px;
}

}

@media(max-width:768px){

.nav-links{
display:none;
}

.hero-text h1{
font-size:48px;
}

.hero-text p{
font-size:17px;
}

.features-grid,
.tour-grid{
grid-template-columns:1fr;
}

.section-title{
flex-direction:column;
align-items:flex-start;
gap:20px;
}

.logo img{
height:60px;
}

.book-btn{
padding:12px 18px;
}

}

.gallery{
    padding:100px 0;
    background:#071120;
}

.section-title span{
    color:#1e6cff;
    font-weight:600;
    letter-spacing:2px;
}

.section-title h2{
    color:white;
    font-size:48px;
    margin-top:10px;
    margin-bottom:50px;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.gallery-grid img{
    width:100%;
    height:280px;
    object-fit:cover;
    border-radius:18px;
    transition:.4s;
    cursor:pointer;
}

.gallery-grid img:hover{
    transform:scale(1.05);
}

.reviews{
    padding:100px 0;
    background:#081425;
}

.reviews-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.review-card{
    background:#0d1a2d;
    padding:30px;
    border-radius:18px;
}

.stars{
    color:#ffd700;
    font-size:22px;
    margin-bottom:15px;
}

.review-card p{
    color:#d8d8d8;
    line-height:1.8;
    margin-bottom:20px;
}

.review-card h4{
    color:#1e6cff;
}

@media(max-width:768px){

    .reviews-grid{
        grid-template-columns:1fr;
    }

}

.rental{
    padding:100px 0;
    background:#081425;
}

.rental-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-top:50px;
}

.rental-card{
    background:#0d1a2d;
    padding:30px;
    border-radius:18px;
    text-align:center;
}

.rental-card h3{
    color:#1e6cff;
    font-size:40px;
    margin-bottom:15px;
}

.rental-card p{
    color:#d8d8d8;
}

.rental-info{
    margin-top:60px;
    text-align:center;
}

.rental-info ul{
    list-style:none;
    margin-top:20px;
}

.rental-info li{
    margin:12px 0;
    color:white;
}

@media(max-width:768px){
    .rental-grid{
        grid-template-columns:1fr;
    }
}

.fleet-section{
    padding:100px 7%;
    background:#061428;
    color:white;
}

.fleet-header{
    text-align:center;
    margin-bottom:60px;
}

.fleet-header span{
    color:#2f80ff;
    font-weight:700;
    letter-spacing:3px;
}

.fleet-header h2{
    font-size:64px;
    margin:15px 0;
}

.fleet-header p{
    max-width:700px;
    margin:auto;
    color:#d0d7e2;
    font-size:18px;
}

.fleet-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-bottom:60px;
}

.fleet-card{
    background:#081b36;
    border-radius:20px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,0.08);
    transition:.3s;
}

.fleet-card:hover{
    transform:translateY(-10px);
}

.fleet-card img{
    width:100%;
    height:240px;
    object-fit:cover;
}

.fleet-info{
    text-align:center;
    padding:25px;
}

.fleet-info h3{
    color:#2f80ff;
    font-size:42px;
    margin-bottom:10px;
}

.fleet-info p{
    font-size:22px;
    font-weight:600;
}

.why-us{
    background:#081b36;
    border-radius:25px;
    padding:50px;
    text-align:center;
}

.why-us h3{
    font-size:42px;
    margin-bottom:40px;
}

.features{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin-bottom:40px;
}

.feature{
    padding:20px;
    border-left:2px solid #2f80ff;
    color:#dce3ee;
}

.whatsapp-btn{
    display:inline-block;
    background:linear-gradient(90deg,#2f80ff,#5ea3ff);
    color:white;
    text-decoration:none;
    padding:18px 50px;
    border-radius:12px;
    font-size:20px;
    font-weight:600;
}

.whatsapp-btn:hover{
    transform:scale(1.05);
}

.why-icons{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    margin:50px 0;
}

.why-item{
    text-align:center;
    padding:20px;
    border-right:1px solid rgba(255,255,255,0.15);
}

.why-item:last-child{
    border-right:none;
}

.why-item i{
    font-size:42px;
    color:#2f80ff;
    margin-bottom:15px;
}

.why-item span{
    display:block;
    color:white;
    font-size:18px;
    line-height:1.5;
}

.about-section{
    padding:100px 0;
    background:#081120;
}

.about-container{
    display:flex;
    align-items:center;
    gap:60px;
}

.about-image{
    flex:1;
}

.about-image img{
    width:100%;
    border-radius:25px;
    display:block;
}

.about-content{
    flex:1;
}

.section-tag{
    color:#2f80ff;
    font-weight:700;
    letter-spacing:2px;
}

.about-content h2{
    color:white;
    font-size:48px;
    margin:15px 0 25px;
}

.about-content p{
    color:#b8c4d6;
    line-height:1.8;
    margin-bottom:20px;
}

.about-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin:30px 0;
}

.about-features div{
    color:white;
    font-weight:600;
}

.about-btn{
    display:inline-block;
    padding:15px 35px;
    background:#2f80ff;
    color:white;
    text-decoration:none;
    border-radius:12px;
    font-weight:600;
    transition:.3s;
}

.about-btn:hover{
    transform:translateY(-3px);
}

@media(max-width:768px){

    .about-container{
        flex-direction:column;
    }

    .about-content h2{
        font-size:36px;
    }

    .about-features{
        grid-template-columns:1fr;
    }

}

.contact-section{
    padding:100px 0;
    background:#081120;
    text-align:center;
}

.contact-section h2{
    color:white;
    font-size:50px;
    margin:15px 0;
}

.contact-text{
    color:#b8c4d6;
    max-width:700px;
    margin:0 auto 50px;
}

.contact-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin-bottom:50px;
}

.contact-card{
    background:#0b1831;
    padding:35px;
    border-radius:20px;
    border:1px solid rgba(47,128,255,.3);
}

.contact-card i{
    font-size:35px;
    color:#2f80ff;
    margin-bottom:15px;
}

.contact-card h3{
    color:white;
    margin-bottom:10px;
}

.contact-card p{
    color:#b8c4d6;
}

.whatsapp-btn{
    display:inline-block;
    background:#2f80ff;
    color:white;
    text-decoration:none;
    padding:18px 45px;
    border-radius:14px;
    font-weight:600;
    transition:.3s;
}

.whatsapp-btn:hover{
    transform:translateY(-3px);
}

@media(max-width:768px){

    .contact-grid{
        grid-template-columns:1fr;
    }

    .contact-section h2{
        font-size:36px;
    }

}

html{
    scroll-behavior:smooth;
}