/* CSS Document */

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#000;
}

.topbar{
width:100%;
background:rgba(10,10,10,0.95);
backdrop-filter:blur(15px);
border-bottom:1px solid rgba(255,215,0,0.15);
position:relative;
z-index:999;
}

.container{
max-width:1400px;
margin:auto;
padding:12px 30px;

display:flex;
justify-content:space-between;
align-items:center;
}

.welcome-text{
color:#ffffff;
font-size:14px;
font-weight:500;
letter-spacing:.5px;
display:flex;
align-items:center;
gap:10px;
}

.welcome-text i{
color:#d4af37;
animation:glow 2s infinite;
}

@keyframes glow{

0%{
text-shadow:0 0 5px #d4af37;
}

50%{
text-shadow:0 0 20px #d4af37;
}

100%{
text-shadow:0 0 5px #d4af37;
}

}

.topbar-right{
display:flex;
align-items:center;
gap:15px;
}

.social-icon{
width:42px;
height:42px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
text-decoration:none;
font-size:18px;
transition:.4s;
position:relative;
overflow:hidden;
}

.whatsapp{
background:#25D366;
color:white;
}

.instagram{
background:linear-gradient(
45deg,
#f09433,
#e6683c,
#dc2743,
#cc2366,
#bc1888
);
color:white;
}

.social-icon:hover{
transform:translateY(-5px) scale(1.08);
box-shadow:0 0 25px rgba(255,255,255,.4);
}

.book-btn{
padding:12px 25px;
border-radius:50px;
text-decoration:none;
font-size:14px;
font-weight:600;
color:#000;
background:linear-gradient(
135deg,
#FFD700,
#D4AF37
);
transition:.4s;
display:flex;
align-items:center;
gap:10px;
}

.book-btn:hover{
transform:translateY(-4px);
box-shadow:
0 0 20px rgba(255,215,0,.6),
0 0 40px rgba(255,215,0,.3);
}

@media(max-width:768px){

.container{
padding:10px 15px;
flex-direction:column;
gap:12px;
}

.welcome-text{
font-size:12px;
text-align:center;
justify-content:center;
}

.topbar-right{
gap:10px;
}

.social-icon{
width:38px;
height:38px;
font-size:16px;
}

.book-btn{
padding:10px 18px;
font-size:13px;
}

}



/* ===========================
   LUXURY NAVBAR
=========================== */

.header{
    width:100%;
    background:#000;
    border-bottom:1px solid rgba(212,175,55,.2);
    position:sticky;
    top:0;
    z-index:99999;
}

.navbar{
    max-width:1400px;
    margin:auto;
    padding:10px 25px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    display:flex;
    align-items:center;
    flex-shrink:0;
}

.logo img{
    height:90px;
    width:auto;
    display:block;
}

.nav-menu{
    display:flex;
    align-items:center;
    gap:25px;
    list-style:none;
}

.nav-menu li a{
    color:#fff;
    text-decoration:none;
    font-size:15px;
    font-weight:500;
    transition:.3s;
    position:relative;
}

.nav-menu li a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-6px;
    width:0%;
    height:2px;
    background:#d4af37;
    transition:.3s;
}

.nav-menu li a:hover{
    color:#d4af37;
}

.nav-menu li a:hover::after{
    width:100%;
}

.menu-toggle{
    display:none;
    color:#d4af37;
    font-size:30px;
    cursor:pointer;
    z-index:100001;
    position:relative;
}

/* MOBILE */

@media(max-width:1100px){

.nav-menu{

    position:fixed;
    top:0;
    right:-100%;

    width:300px;
    height:100vh;

    background:#000;

    flex-direction:column;
    justify-content:center;
    align-items:center;

    transition:.4s ease;

    box-shadow:
    -10px 0 30px rgba(212,175,55,.15);
}

.nav-menu.active{
    right:0;
}

.menu-toggle{
    display:block;
}

.logo img{
    height:60px;
}

}

@media(max-width:768px){

.navbar{
    padding:15px;
}

.logo img{
    height:55px;
}

.nav-menu li a{
    font-size:18px;
}

}


@media(max-width:1100px){

.menu-toggle{
    display:block;
}

.nav-menu{
    z-index:100000;
}

}




/* ===========================
   HERO VIDEO SECTION
=========================== */

.hero{
    position:relative;
    width:100%;
    height:100vh;
    overflow:hidden;
}

.video-slider{
    position:absolute;
    inset:0;
}

.video-slide{
    position:absolute;
    width:100%;
    height:100%;
    object-fit:cover;
    opacity:0;
    transition:opacity 1.5s ease;
}

.video-slide.active{
    opacity:1;
}

.hero-overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
    rgba(0,0,0,.65),
    rgba(0,0,0,.75)
    );

    z-index:2;
}

.hero-content{
    position:relative;
    z-index:5;

    height:100%;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-align:center;

    padding:20px;
}

.hero-tag{

    color:#d4af37;

    border:1px solid rgba(212,175,55,.4);

    padding:10px 20px;

    border-radius:50px;

    backdrop-filter:blur(10px);

    margin-bottom:25px;

    font-size:14px;

    letter-spacing:1px;
}

.hero-content h1{

    color:#fff;

    font-size:75px;

    font-weight:800;

    line-height:1.1;

    margin-bottom:20px;

    text-transform:uppercase;

    text-shadow:
    0 0 20px rgba(255,255,255,.15);
}

.hero-content p{

    color:#ddd;

    max-width:900px;

    font-size:18px;

    margin-bottom:40px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.hero-btn-primary{

    text-decoration:none;

    padding:16px 38px;

    border-radius:50px;

    background:linear-gradient(
    135deg,
    #FFD700,
    #D4AF37
    );

    color:#000;

    font-weight:700;

    transition:.4s;
}

.hero-btn-primary:hover{

    transform:translateY(-5px);

    box-shadow:
    0 0 30px rgba(255,215,0,.6);
}

.hero-btn-secondary{

    text-decoration:none;

    padding:16px 38px;

    border-radius:50px;

    border:1px solid #fff;

    color:#fff;

    transition:.4s;
}

.hero-btn-secondary:hover{

    background:#fff;

    color:#000;
}

.hero-scroll{

    position:absolute;

    bottom:30px;

    left:50%;

    transform:translateX(-50%);

    color:#fff;

    z-index:5;

    animation:bounce 2s infinite;
}

@keyframes bounce{

    0%,100%{
        transform:translateX(-50%) translateY(0);
    }

    50%{
        transform:translateX(-50%) translateY(-10px);
    }

}

/* MOBILE */

@media(max-width:991px){

.hero-content h1{
    font-size:50px;
}

.hero-content p{
    font-size:16px;
}

}

@media(max-width:768px){

.hero{
    height:90vh;
}

.hero-content h1{
    font-size:34px;
}

.hero-content p{
    font-size:14px;
}

.hero-buttons{
    flex-direction:column;
    width:100%;
    max-width:300px;
}

.hero-btn-primary,
.hero-btn-secondary{
    width:100%;
    text-align:center;
}

.hero-tag{
    font-size:12px;
}

}




/* ==========================
   BOOKING SECTION
========================== */

.booking-section{

    padding:100px 20px;

    background:#050505;
}

.booking-container{

    max-width:1400px;

    margin:auto;

    background:rgba(255,255,255,0.03);

    backdrop-filter:blur(20px);

    border:1px solid rgba(212,175,55,.15);

    border-radius:25px;

    padding:50px;

    box-shadow:
    0 0 40px rgba(212,175,55,.08);
}

.booking-heading{

    text-align:center;

    margin-bottom:40px;
}

.booking-heading span{

    color:#d4af37;

    text-transform:uppercase;

    letter-spacing:2px;

    font-size:14px;
}

.booking-heading h2{

    color:#fff;

    font-size:42px;

    margin-top:10px;
}

.booking-grid{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:25px;
}

.form-group{

    display:flex;

    flex-direction:column;
}

.form-group label{

    color:#d4af37;

    margin-bottom:10px;

    font-size:14px;
}

.form-group input,
.form-group select,
.form-group textarea{

    background:#111;

    border:1px solid rgba(255,255,255,.08);

    color:#fff;

    padding:15px;

    border-radius:12px;

    outline:none;

    transition:.4s;
}

.form-group textarea{

    min-height:140px;

    resize:none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{

    border-color:#d4af37;

    box-shadow:
    0 0 15px rgba(212,175,55,.25);
}

.full-width{

    margin-top:25px;
}

.booking-btn{

    margin-top:30px;

    background:linear-gradient(
    135deg,
    #FFD700,
    #D4AF37
    );

    color:#000;

    border:none;

    padding:18px 45px;

    border-radius:50px;

    font-size:16px;

    font-weight:700;

    cursor:pointer;

    transition:.4s;
}

.booking-btn:hover{

    transform:translateY(-5px);

    box-shadow:
    0 0 30px rgba(255,215,0,.4);
}

/* MOBILE */

@media(max-width:991px){

.booking-grid{

    grid-template-columns:1fr 1fr;
}

}

@media(max-width:768px){

.booking-container{

    padding:30px 20px;
}

.booking-grid{

    grid-template-columns:1fr;
}

.booking-heading h2{

    font-size:30px;
}

.booking-btn{

    width:100%;
}
}





.fleet-section{
    background:#000;
    padding:100px 20px;
}

.fleet-container{
    max-width:1400px;
    margin:auto;
}

.fleet-heading{
    text-align:center;
    margin-bottom:60px;
}

.fleet-heading span{
    color:#d4af37;
    letter-spacing:3px;
}

.fleet-heading h2{
    color:#fff;
    font-size:48px;
    margin:15px 0;
}

.fleet-heading p{
    color:#ccc;
    max-width:800px;
    margin:auto;
}

.fleet-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.fleet-card{
    background:#0a0a0a;
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
    overflow:hidden;
    transition:.4s;
}

.fleet-card:hover{
    transform:translateY(-10px);
    border-color:#d4af37;
}

.fleet-card img{
    width:100%;
    height:280px;
    object-fit:cover;
}

.fleet-card h3{
    color:#fff;
    text-align:center;
    padding:20px;
    font-size:28px;
}

.price-list{
    padding:0 25px;
}

.price-list div{
    display:flex;
    justify-content:space-between;
    margin-bottom:12px;
}

.price-list span{
    color:#bbb;
}

.price-list strong{
    color:#fff;
}

.fleet-buttons{
    display:flex;
    justify-content:space-between;
    padding:25px;
    gap:10px;
}

.whatsapp-btn,
.call-btn,
.book-btn{
    flex:1;
    text-align:center;
    text-decoration:none;
    padding:14px;
    border-radius:10px;
    font-weight:600;
}

.whatsapp-btn{
    background:#333399;
    color:#fff;
}

.call-btn{
    background:#fff;
    color:#000;
}

.book-btn{
    background:#d4af37;
    color:#000;
}

@media(max-width:991px){

    .fleet-grid{
        grid-template-columns:1fr 1fr;
    }

}

@media(max-width:768px){

    .fleet-grid{
        grid-template-columns:1fr;
    }

    .fleet-heading h2{
        font-size:34px;
    }

    .fleet-card img{
        height:240px;
    }

}



.trust-section{
    width:100%;
    padding:100px 8%;
    background:#050505;
}

.trust-header{
    text-align:center;
    max-width:1000px;
    margin:auto;
}

.trust-header h2{
    color:#fff;
    font-size:55px;
    font-weight:700;
    margin-bottom:30px;
    position:relative;
}

.trust-header h2::after{
    content:'';
    width:180px;
    height:3px;
    background:#d4af37;
    display:block;
    margin:15px auto;
}

.trust-header p{
    color:#b5b5b5;
    line-height:2;
    font-size:18px;
    padding:25px 0;
    border-top:1px solid rgba(212,175,55,.3);
    border-bottom:1px solid rgba(212,175,55,.3);
}

.trust-stats{
    display:flex;
    justify-content:center;
    gap:50px;
    margin-top:80px;
    flex-wrap:wrap;
}

.trust-card{
    width:280px;
    height:220px;
    border:2px solid #d4af37;
    background:rgba(255,255,255,.02);
    backdrop-filter:blur(10px);
    border-radius:20px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    transition:.4s;
    position:relative;
    overflow:hidden;
}

.trust-card::before{
    content:'';
    position:absolute;
    width:200%;
    height:100%;
    background:linear-gradient(
    90deg,
    transparent,
    rgba(212,175,55,.15),
    transparent);
    left:-200%;
    top:0;
}

.trust-card:hover::before{
    left:100%;
    transition:.8s;
}

.trust-card:hover{
    transform:translateY(-12px);
    box-shadow:0 15px 40px rgba(212,175,55,.2);
}

.trust-card h3{
    color:#d4af37;
    font-size:55px;
    margin-bottom:15px;
}

.trust-card span{
    color:#fff;
    font-size:20px;
    text-align:center;
}

@media(max-width:768px){

    .trust-header h2{
        font-size:38px;
    }

    .trust-card{
        width:100%;
        max-width:350px;
        height:180px;
    }

    .trust-card h3{
        font-size:45px;
    }

}




/* SECTION */
.popular-services {
    background:#000000;
    padding: 80px 20px;
    text-align: center;
}

/* HEADER */
.services-header h2 {
    font-size: 34px;
    margin-bottom: 15px;
    color:#FFFF00;
}

.services-header p {
    max-width: 800px;
    margin: auto;
    color:#FFFFFF;
    line-height: 1.6;
    margin-bottom: 50px;
}

/* GRID */
.services-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* CARD */
.service-card {
    background: #f9f9f9;
    border-radius: 15px;
    overflow: hidden;
    transition: 0.4s;
    position: relative;
}

/* IMAGE AUTO FIT */
.service-card img {
    width: 100%;
    height:auto;
    object-fit: cover;
    transition: 0.5s;
}

/* HOVER */
.service-card:hover img {
    transform: scale(1.1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* INFO */
.service-info {
    padding: 15px;
}

.service-info h3 {
    margin-bottom: 8px;
}

.service-info p {
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
}

/* BUTTONS */
.service-btns a {
    display: inline-block;
    margin: 5px;
    padding: 8px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 13px;
    background: #111;
    color: #fff;
    transition: 0.3s;
}

.service-btns a:last-child {
    background: #00cc99;
    color: #000;
}

.service-btns a:hover {
    transform: scale(1.05);
}

/* MOBILE */
@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}




.luxury-video-banner{
    position:relative;
    height:650px;
    overflow:hidden;
}

.luxury-video-banner video{
    width:100%;
    height:100%;
    object-fit:cover;
}

.video-overlay{
    position:absolute;
    inset:0;
    background:
    linear-gradient(
    rgba(0,0,0,.55),
    rgba(0,0,0,.75));
}

.banner-content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    text-align:center;
    width:90%;
    max-width:1000px;
    z-index:2;
}

.banner-content span{
    color:#d4af37;
    letter-spacing:4px;
    font-weight:600;
}

.banner-content h2{
    color:#fff;
    font-size:65px;
    margin:20px 0;
    line-height:1.2;
}

.banner-content p{
    color:#e5e5e5;
    font-size:20px;
    line-height:1.8;
    max-width:850px;
    margin:auto;
}

.banner-buttons{
    margin-top:35px;
}

.call-btn,
.whatsapp-btn{
    display:inline-block;
    padding:16px 40px;
    text-decoration:none;
    border-radius:50px;
    margin:10px;
    font-weight:700;
    transition:.4s;
}

.call-btn{
    background:#d4af37;
    color:#000;
}

.whatsapp-btn{
    border:2px solid #fff;
    color:#fff;
}

.call-btn:hover,
.whatsapp-btn:hover{
    transform:translateY(-5px);
}

@media(max-width:768px){

.luxury-video-banner{
    height:500px;
}

.banner-content h2{
    font-size:36px;
}

.banner-content p{
    font-size:16px;
}

}




.popular-fleet{
    padding:100px 5%;
    background:#050505;
    position:relative;
    overflow:hidden;
}

.popular-fleet::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(212,175,55,.15);
    filter:blur(150px);
    top:-150px;
    left:-150px;
}

.section-header{
    text-align:center;
    max-width:900px;
    margin:auto;
    margin-bottom:60px;
}

.subtitle{
    color:#d4af37;
    letter-spacing:3px;
    font-size:13px;
}

.section-header h2{
    color:#fff;
    font-size:48px;
    margin:15px 0;
}

.section-header p{
    color:#cfcfcf;
    line-height:1.8;
}

.fleet-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.fleet-card{
    background:rgba(255,255,255,.05);
    backdrop-filter:blur(15px);
    border:1px solid rgba(255,255,255,.1);
    border-radius:25px;
    overflow:hidden;
    transition:.4s;
    position:relative;
}

.fleet-card:hover{
    transform:translateY(-12px);
    box-shadow:0 20px 50px rgba(212,175,55,.25);
}

.fleet-image{
    height:260px;
    overflow:hidden;
    position:relative;
}

.fleet-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}

.fleet-card:hover img{
    transform:scale(1.08);
}

.fleet-overlay{
    position:absolute;
    top:15px;
    right:15px;
    background:rgba(212,175,55,.9);
    color:#000;
    padding:8px 15px;
    border-radius:30px;
    font-size:12px;
    font-weight:600;
}

.fleet-content{
    padding:1px;
}

.fleet-content h3{
    color:#fff;
    margin-bottom:20px;
    text-align:center;
}

.price-box{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:25px;
    color:#fff;
}

.price-box span{
    color:#aaa;
}

.price-box strong{
    color:#d4af37;
    font-size:24px;
}

.fleet-buttons{
    display:flex;
    gap:10px;
}

.btn{
    flex:1;
    text-align:center;
    padding:12px;
    border-radius:12px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.whatsapp{
    background:#25D366;
    color:#fff;
}

.call{
    background:#fff;
    color:#000;
}

.book{
    background:#d4af37;
    color:#000;
}

.btn:hover{
    transform:translateY(-3px);
}

/* Mobile */
@media(max-width:768px){

.section-header h2{
    font-size:34px;
}

.fleet-image{
    height:220px;
}

.fleet-buttons{
    flex-direction:column;
}

.btn{
    width:100%;
}
}




/* SEO CONTENT SECTION */

.seo-content{
    padding:100px 5%;
    background:#0a0a0a;
    position:relative;
    overflow:hidden;
}

.seo-content::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(255,215,0,0.08);
    filter:blur(120px);
    top:-150px;
    right:-150px;
    border-radius:50%;
}

.seo-box{
    max-width:1200px;
    margin:auto;
    background:rgba(255,255,255,0.03);
    backdrop-filter:blur(20px);
    border:1px solid rgba(255,215,0,0.15);
    border-radius:30px;
    padding:60px;
    position:relative;
    z-index:2;
}

.seo-tag{
    display:inline-block;
    background:rgba(255,215,0,0.12);
    color:#ffd700;
    padding:10px 22px;
    border-radius:50px;
    font-size:14px;
    letter-spacing:1px;
    margin-bottom:20px;
}

.seo-box h2{
    font-size:48px;
    color:#fff;
    margin-bottom:25px;
    line-height:1.2;
}

.seo-box p{
    color:#cfcfcf;
    font-size:18px;
    line-height:1.9;
    margin-bottom:20px;
}

.seo-features{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-top:40px;
}

.feature{
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,215,0,0.12);
    border-radius:20px;
    padding:30px;
    text-align:center;
    transition:0.4s;
}

.feature:hover{
    transform:translateY(-10px);
    border-color:#ffd700;
}

.feature i{
    font-size:35px;
    color:#ffd700;
    margin-bottom:15px;
}

.feature h4{
    color:#fff;
    font-size:18px;
}

.seo-buttons{
    margin-top:40px;
    display:flex;
    gap:20px;
}

.btn-primary{
    background:linear-gradient(135deg,#ffd700,#ffb700);
    color:#000;
    padding:16px 35px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    transition:.4s;
}

.btn-primary:hover{
    transform:translateY(-5px);
}

.btn-secondary{
    border:1px solid #ffd700;
    color:#ffd700;
    padding:16px 35px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    transition:.4s;
}

.btn-secondary:hover{
    background:#ffd700;
    color:#000;
}

/* MOBILE RESPONSIVE */

@media(max-width:992px){

    .seo-box{
        padding:40px 25px;
    }

    .seo-box h2{
        font-size:34px;
    }

    .seo-features{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){

    .seo-content{
        padding:70px 20px;
    }

    .seo-box h2{
        font-size:28px;
    }

    .seo-box p{
        font-size:16px;
    }

    .seo-features{
        grid-template-columns:1fr;
    }

    .seo-buttons{
        flex-direction:column;
    }

    .btn-primary,
    .btn-secondary{
        width:100%;
        text-align:center;
    }
}




.luxury-footer{
    background:#050505;
    color:#fff;
}

.footer-top{
    padding:100px 5%;
    border-bottom:1px solid rgba(255,215,0,.15);
}

.footer-top .container{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr 1.3fr;
    gap:40px;
}

.footer-column h2{
    font-size:38px;
    color:#FFD700;
    margin-bottom:20px;
}

.footer-column h3{
    color:#FFD700;
    margin-bottom:25px;
}

.footer-column p{
    color:#bdbdbd;
    line-height:1.9;
}

.footer-column ul{
    list-style:none;
}

.footer-column ul li{
    margin-bottom:12px;
}

.footer-column ul li a{
    color:#d0d0d0;
    text-decoration:none;
    transition:.3s;
}

.footer-column ul li a:hover{
    color:#FFD700;
    padding-left:8px;
}

.social-links{
    margin-top:25px;
    display:flex;
    gap:12px;
}

.social-links a{
    width:45px;
    height:45px;
    border:1px solid rgba(255,215,0,.3);
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#FFD700;
    text-decoration:none;
}

.contact-box{
    display:flex;
    gap:15px;
    margin-bottom:18px;
    color:#d0d0d0;
}

.contact-box i{
    color:#FFD700;
}

.footer-btn{
    display:inline-block;
    margin-top:20px;
    padding:15px 30px;
    background:linear-gradient(135deg,#FFD700,#ffb300);
    color:#000;
    text-decoration:none;
    border-radius:50px;
    font-weight:700;
}

.footer-seo{
    padding:60px 8%;
    text-align:center;
    border-bottom:1px solid rgba(255,215,0,.1);
}

.footer-seo h3{
    color:#FFD700;
    margin-bottom:20px;
    font-size:32px;
}

.footer-seo p{
    max-width:1200px;
    margin:0 auto 20px;
    color:#bdbdbd;
    line-height:1.9;
}

.footer-bottom{
    padding:30px 5%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
}

.bottom-links{
    display:flex;
    gap:20px;
}

.bottom-links a{
    color:#d0d0d0;
    text-decoration:none;
}

.bottom-links a:hover{
    color:#FFD700;
}

@media(max-width:1200px){
.footer-top .container{
grid-template-columns:repeat(2,1fr);
}
}

@media(max-width:768px){

.footer-top .container{
grid-template-columns:1fr;
}

.footer-bottom{
flex-direction:column;
gap:20px;
text-align:center;
}

.bottom-links{
flex-wrap:wrap;
justify-content:center;
}

.footer-column h2{
font-size:30px;
}

.footer-seo h3{
font-size:24px;
}

}











<!----------------------------------------------------about page css----------------------------------------------------------!>

.our-story-section{
    background:#0a0a0a;
    padding:100px 20px;
    overflow:hidden;
}

.about-container{
    max-width:1300px;
    margin:auto;
}

.story-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.story-image{
    position:relative;
}

.story-image img{
    width:100%;
    height:650px;
    object-fit:cover;
    border-radius:25px;
    box-shadow:0 20px 50px rgba(0,0,0,.5);
    transition:.5s;
}

.story-image:hover img{
    transform:scale(1.03);
}

.story-content{
    color:#fff;
}

.section-tag{
    display:inline-block;
    color:#d4af37;
    letter-spacing:3px;
    font-size:14px;
    margin-bottom:15px;
    font-weight:600;
}

.story-content h2{
    font-size:3rem;
    line-height:1.2;
    margin-bottom:25px;
    font-weight:700;
}

.story-content p{
    color:#cfcfcf;
    line-height:1.9;
    font-size:17px;
    margin-bottom:20px;
}

.overview-box{
    margin-top:35px;
    background:rgba(255,255,255,.05);
    backdrop-filter:blur(12px);
    border:1px solid rgba(255,255,255,.1);
    border-radius:20px;
    padding:35px;
}

.overview-box h3{
    color:#d4af37;
    margin-bottom:25px;
    font-size:24px;
}

.features-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.feature-item{
    background:rgba(255,255,255,.03);
    padding:15px;
    border-radius:12px;
    border:1px solid rgba(255,255,255,.08);
    transition:.4s;
}

.feature-item:hover{
    background:#d4af37;
    color:#000;
    transform:translateY(-5px);
}

@media(max-width:991px){

.story-grid{
    grid-template-columns:1fr;
}

.story-image img{
    height:450px;
}

.story-content h2{
    font-size:2.2rem;
}

.features-grid{
    grid-template-columns:1fr;
}

}

@media(max-width:576px){

.our-story-section{
    padding:70px 15px;
}

.story-content h2{
    font-size:1.8rem;
}

.story-content p{
    font-size:15px;
}

.story-image img{
    height:320px;
}

.overview-box{
    padding:25px;
}

}




/* SECTION */
.seo-section {
    background: #000;
    padding: 80px 20px;
    color: #fff;
}

/* CONTAINER */
.seo-container {
    max-width: 900px;
    margin: auto;
}

/* HEADINGS */
.seo-container h2 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #00ffcc;
}

.seo-container h3 {
    margin-top: 40px;
    margin-bottom: 20px;
    color: #00ffcc;
}

/* TEXT */
.seo-container p {
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* FAQ */
.faq-item {
    margin-bottom: 15px;
    padding: 15px;
    background: #111;
    border-radius: 10px;
    transition: 0.3s;
}

.faq-item h4 {
    margin-bottom: 5px;
    color: #fff;
}

.faq-item p {
    font-size: 14px;
    color: #aaa;
}

/* HOVER */
.faq-item:hover {
    background: #1a1a1a;
}

/* MOBILE */
@media (max-width: 600px) {
    .seo-container h2 {
        font-size: 24px;
    }
}




/* SECTION */
.brand-section {
    background:#000000;
    padding: 80px 20px;
    text-align: center;
}

/* HEADER */
.brand-header h2 {
    font-size: 34px;
    color:#FFFF00;
    margin-bottom: 15px;
}

.brand-header p {
    max-width: 800px;
    margin: auto;
    color:#FFFFFF;
    line-height: 1.6;
    margin-bottom: 50px;
}

/* GRID */
.brand-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* BOX */
.brand-box {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    border: 1px solid #eee;
}

/* IMAGE AUTO FIT */
.brand-box img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    transition: 0.3s;
}

/* HOVER */
.brand-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.brand-box:hover img {
    transform: scale(1.1);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .brand-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .brand-container {
        grid-template-columns: 1fr;
    }
}








<!---------------------------------------------------fleet page css--------------------------------------------------------!>

.fleet-section{
    background:#000;
    padding:100px 5%;
}

.fleet-heading{
    text-align:center;
    margin-bottom:60px;
}

.fleet-heading span{
    color:#d4af37;
    font-size:14px;
    letter-spacing:2px;
    font-weight:600;
}

.fleet-heading h2{
    color:#fff;
    font-size:55px;
    margin:15px 0;
}

.fleet-heading p{
    color:#999;
    max-width:700px;
    margin:auto;
}

.fleet-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.car-card{
    background:#0a0a0a;
    border:1px solid #222;
    border-radius:20px;
    overflow:hidden;
    transition:.4s;
}

.car-card:hover{
    transform:translateY(-10px);
    border-color:#d4af37;
}

.car-image{
    overflow:hidden;
}

.car-image img{
    width:100%;
    height:260px;
    object-fit:cover;
    display:block;
    transition:.5s;
}

.car-card:hover img{
    transform:scale(1.05);
}

.car-content{
    padding:25px;
}

.car-content h3{
    color:#fff;
    font-size:28px;
    margin-bottom:20px;
    text-transform:uppercase;
}

.car-specs{
    display:flex;
    justify-content:space-between;
    margin-bottom:25px;
    color:#ddd;
    font-size:15px;
}

.price-box{
    border-top:1px solid #222;
    border-bottom:1px solid #222;
    padding:15px 0;
    margin-bottom:25px;
}

.price-box small{
    color:#888;
    display:block;
}

.price-box h4{
    color:#d4af37;
    font-size:35px;
    margin-top:5px;
}

.price-box h4 span{
    color:#999;
    font-size:18px;
}

.card-buttons{
    display:flex;
    gap:12px;
}

.btn-details,
.btn-book{
    flex:1;
    text-align:center;
    padding:14px;
    border-radius:10px;
    text-decoration:none;
    font-weight:600;
}

.btn-details{
    border:1px solid #d4af37;
    color:#fff;
}

.btn-book{
    background:#d4af37;
    color:#000;
}

.btn-book:hover{
    background:#f2cc62;
}

@media(max-width:991px){

    .fleet-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .fleet-heading h2{
        font-size:38px;
    }

    .fleet-grid{
        grid-template-columns:1fr;
    }

    .car-image img{
        height:220px;
    }

}









<!-----------------------------------------------sevice page css--------------------------------------------!>

/* ===========================
   SERVICES SECTION
=========================== */

.services-section{
    background:#000;
    padding:100px 5%;
}

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title span{
    color:#d4af37;
    font-size:14px;
    font-weight:600;
    letter-spacing:2px;
}

.section-title h2{
    color:#fff;
    font-size:55px;
    margin:15px 0;
}

.section-title p{
    color:#aaa;
    max-width:800px;
    margin:auto;
    line-height:1.8;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.service-card{
    background:#0a0a0a;
    border:1px solid #222;
    border-radius:20px;
    padding:35px;
    transition:.4s;
}

.service-card:hover{
    transform:translateY(-10px);
    border-color:#d4af37;
    box-shadow:0 0 30px rgba(212,175,55,.15);
}

.service-icon{
    font-size:50px;
    margin-bottom:20px;
}

.service-card h3{
    color:#fff;
    margin-bottom:15px;
}

.service-card p{
    color:#aaa;
    line-height:1.8;
    margin-bottom:20px;
}

.service-card ul{
    list-style:none;
    margin-bottom:25px;
}

.service-card ul li{
    color:#ddd;
    padding:8px 0;
    border-bottom:1px solid #222;
}

.service-btn{
    display:inline-block;
    background:#d4af37;
    color:#000;
    text-decoration:none;
    padding:12px 25px;
    border-radius:8px;
    font-weight:600;
}

/* ===========================
   WHY CHOOSE SECTION
=========================== */

.why-earthcon{
    background:#050505;
    padding:100px 5%;
}

.features-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.feature-box{
    background:#111;
    color:#fff;
    text-align:center;
    padding:30px 20px;
    border-radius:15px;
    border:1px solid #222;
    transition:.4s;
    font-weight:500;
}

.feature-box:hover{
    border-color:#d4af37;
    transform:translateY(-8px);
    box-shadow:0 0 25px rgba(212,175,55,.15);
}

/* ===========================
   TABLET
=========================== */

@media(max-width:991px){

    .services-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .features-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

/* ===========================
   MOBILE
=========================== */

@media(max-width:768px){

    .section-title h2{
        font-size:38px;
    }

    .services-grid{
        grid-template-columns:1fr;
    }

    .features-grid{
        grid-template-columns:1fr;
    }

    .service-card{
        padding:25px;
    }

}







<!---------------------------------------------wedding cars page css---------------------------------------------------------!>

/* ==========================
   WEDDING FLEET SECTION
========================== */

.wedding-fleet{
    background:#000;
    padding:100px 5%;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    color:#d4af37;
    letter-spacing:2px;
    font-size:14px;
    font-weight:600;
}

.section-title h2{
    color:#fff;
    font-size:55px;
    margin:15px 0;
}

.section-title p{
    color:#aaa;
    max-width:750px;
    margin:auto;
    line-height:1.8;
}

.wedding-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.wedding-card{
    background:#0b0b0b;
    border:1px solid #222;
    border-radius:20px;
    overflow:hidden;
    transition:.4s;
}

.wedding-card:hover{
    transform:translateY(-10px);
    border-color:#d4af37;
    box-shadow:0 15px 35px rgba(212,175,55,.15);
}

.car-image{
    position:relative;
    overflow:hidden;
}

.car-image img{
    width:100%;
    height:260px;
    object-fit:cover;
    display:block;
    transition:.5s;
}

.wedding-card:hover .car-image img{
    transform:scale(1.08);
}

.badge{
    position:absolute;
    top:15px;
    left:15px;
    background:#d4af37;
    color:#000;
    padding:8px 15px;
    border-radius:30px;
    font-size:12px;
    font-weight:700;
}

.card-content{
    padding:25px;
}

.card-content h3{
    color:#fff;
    margin-bottom:18px;
    font-size:24px;
}

.details{
    display:flex;
    justify-content:space-between;
    margin-bottom:20px;
    color:#ccc;
    font-size:14px;
}

.price{
    color:#aaa;
    margin-bottom:25px;
}

.price strong{
    display:block;
    color:#d4af37;
    font-size:32px;
    margin-top:5px;
}

.book-btn{
    display:block;
    text-align:center;
    background:linear-gradient(135deg,#d4af37,#f7d976);
    color:#000;
    text-decoration:none;
    padding:15px;
    border-radius:10px;
    font-weight:700;
    transition:.3s;
}

.book-btn:hover{
    transform:translateY(-2px);
}

/* ==========================
   TABLET
========================== */

@media(max-width:991px){

    .wedding-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

/* ==========================
   MOBILE
========================== */

@media(max-width:768px){

    .section-title h2{
        font-size:38px;
    }

    .wedding-grid{
        grid-template-columns:1fr;
    }

    .car-image img{
        height:220px;
    }

}






<!----------------------------------------------corporate cars page css--------------------------------------------------!>

.corporate-fleet{
    background:#000;
    padding:100px 5%;
}

.section-header{
    text-align:center;
    margin-bottom:70px;
}

.section-header span{
    color:#d4af37;
    font-size:14px;
    letter-spacing:2px;
    font-weight:600;
}

.section-header h2{
    color:#fff;
    font-size:55px;
    margin:15px 0;
}

.section-header p{
    color:#aaa;
    max-width:750px;
    margin:auto;
    line-height:1.8;
}

.fleet-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.fleet-card{
    background:#0a0a0a;
    border:1px solid #222;
    border-radius:20px;
    overflow:hidden;
    transition:.4s;
}

.fleet-card:hover{
    transform:translateY(-10px);
    border-color:#d4af37;
    box-shadow:0 15px 35px rgba(212,175,55,.15);
}

.fleet-card img{
    width:100%;
    height:240px;
    object-fit:cover;
    display:block;
    transition:.5s;
}

.fleet-card:hover img{
    transform:scale(1.05);
}

.fleet-content{
    padding:25px;
}

.fleet-content h3{
    color:#fff;
    margin-bottom:20px;
    font-size:22px;
}

.fleet-info{
    display:flex;
    flex-direction:column;
    gap:10px;
    margin-bottom:20px;
}

.fleet-info span{
    color:#ccc;
    font-size:14px;
}

.price-box{
    border-top:1px solid #222;
    border-bottom:1px solid #222;
    padding:15px 0;
    margin-bottom:20px;
}

.price-box small{
    color:#888;
}

.price-box h4{
    color:#d4af37;
    font-size:32px;
    margin-top:5px;
}

.book-btn{
    display:block;
    text-align:center;
    text-decoration:none;
    background:linear-gradient(135deg,#d4af37,#f5d76e);
    color:#000;
    padding:14px;
    border-radius:10px;
    font-weight:700;
}

.book-btn:hover{
    opacity:.9;
}

@media(max-width:1200px){
    .fleet-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){

    .section-header h2{
        font-size:38px;
    }

    .fleet-grid{
        grid-template-columns:1fr;
    }

    .fleet-card img{
        height:220px;
    }

}







<!-----------------------------------------------------airport transfer page css--------------------------------------------------!>

.airport-fleet{
    background:#000;
    padding:100px 5%;
}

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title span{
    color:#d4af37;
    font-size:14px;
    letter-spacing:3px;
    font-weight:600;
}

.section-title h2{
    color:#fff;
    font-size:55px;
    margin:15px 0;
}

.section-title p{
    color:#aaa;
    max-width:800px;
    margin:auto;
    line-height:1.8;
}

.airport-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.airport-card{
    background:#0a0a0a;
    border:1px solid #222;
    border-radius:20px;
    overflow:hidden;
    transition:.4s;
}

.airport-card:hover{
    transform:translateY(-10px);
    border-color:#d4af37;
    box-shadow:0 15px 40px rgba(212,175,55,.15);
}

.airport-image{
    position:relative;
    overflow:hidden;
}

.airport-image img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:.6s;
}

.airport-card:hover img{
    transform:scale(1.08);
}

.airport-tag{
    position:absolute;
    top:15px;
    left:15px;
    background:#d4af37;
    color:#000;
    padding:8px 14px;
    border-radius:30px;
    font-size:12px;
    font-weight:700;
}

.airport-content{
    padding:25px;
}

.airport-content h3{
    color:#fff;
    margin-bottom:20px;
    font-size:24px;
}

.airport-info{
    display:flex;
    flex-direction:column;
    gap:10px;
    margin-bottom:20px;
}

.airport-info span{
    color:#ddd;
    font-size:14px;
}

.airport-price{
    border-top:1px solid #222;
    border-bottom:1px solid #222;
    padding:15px 0;
    margin-bottom:25px;
    color:#999;
}

.airport-price h4{
    color:#d4af37;
    font-size:34px;
    margin-top:5px;
}

.airport-btn{
    display:block;
    text-align:center;
    text-decoration:none;
    background:linear-gradient(135deg,#d4af37,#f8dd7f);
    color:#000;
    padding:15px;
    border-radius:10px;
    font-weight:700;
}

.airport-btn:hover{
    opacity:.95;
}

@media(max-width:1200px){

    .airport-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .airport-grid{
        grid-template-columns:1fr;
    }

    .section-title h2{
        font-size:38px;
    }

    .airport-image img{
        height:220px;
    }

}









<!----------------------------------------------contact page css-----------------------------------------------!>

.contact-cards-section{
    background:#000;
    padding:100px 5%;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    color:#d4af37;
    font-size:14px;
    letter-spacing:3px;
    font-weight:600;
}

.section-title h2{
    color:#fff;
    font-size:55px;
    margin:15px 0;
}

.section-title p{
    color:#999;
    max-width:800px;
    margin:auto;
    line-height:1.8;
}

.contact-cards-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.contact-card{
    background:linear-gradient(
        145deg,
        #0b0b0b,
        #111
    );
    border:1px solid #222;
    border-radius:25px;
    padding:40px 30px;
    text-align:center;
    transition:.4s;
    position:relative;
    overflow:hidden;
}

.contact-card:hover{
    transform:translateY(-10px);
    border-color:#d4af37;
    box-shadow:0 15px 40px rgba(212,175,55,.15);
}

.contact-icon{
    width:80px;
    height:80px;
    background:linear-gradient(
        135deg,
        #d4af37,
        #f8dd7f
    );
    color:#000;
    font-size:34px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    margin:0 auto 25px;
}

.contact-card h3{
    color:#fff;
    font-size:26px;
    margin-bottom:15px;
}

.contact-card p{
    color:#aaa;
    line-height:1.7;
    margin-bottom:20px;
}

.contact-link{
    color:#d4af37;
    text-decoration:none;
    font-weight:700;
    font-size:18px;
}

.contact-link:hover{
    color:#fff;
}

.contact-text{
    color:#d4af37;
    font-size:18px;
    font-weight:700;
}

/* Tablet */

@media(max-width:991px){

    .contact-cards-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

/* Mobile */

@media(max-width:768px){

    .contact-cards-section{
        padding:70px 20px;
    }

    .section-title h2{
        font-size:38px;
    }

    .contact-cards-grid{
        grid-template-columns:1fr;
    }

    .contact-card{
        padding:30px 25px;
    }

}
/* ===== FINAL FLEET FIX ===== */

.fleet-section{
    padding:100px 2% !important;
}

.fleet-container{
    max-width:1600px !important;
    width:100% !important;
    margin:0 auto !important;
}

.fleet-grid{
    display:grid !important;
    grid-template-columns:repeat(3,1fr) !important;
    gap:30px !important;
    width:100% !important;
}

.car-card,
.fleet-card{
    width:100% !important;
}

@media(max-width:991px){
    .fleet-grid{
        grid-template-columns:repeat(2,1fr) !important;
    }
}

@media(max-width:768px){
    .fleet-grid{
        grid-template-columns:1fr !important;
    }
}