/* ===== Google Fonts ===== */
/*==================================================
            GLOBAL VARIABLES
==================================================*/

html{
    scroll-behavior:smooth;
}

:root{

    --primary:#FFC107;
    --primary-dark:#E0A800;

    --black:#111111;
    --dark:#222222;
    --gray:#666666;

    --white:#FFFFFF;

    --bg:#F8F9FB;

    --border:#ECECEC;

    --shadow:0 15px 40px rgba(0,0,0,.08);

    --shadow-hover:0 25px 55px rgba(0,0,0,.15);

    --radius:20px;

    --transition:.35s ease;

}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Inter',sans-serif;

    background:#ffffff;

    color:#111;

}

.container{

    width:90%;

    max-width:1300px;

    margin:auto;

}

/* Header */

.header{

    width:100%;

    position:fixed;

    top:0;

    left:0;

    z-index:999;

    background:rgba(0,0,0,.25);

backdrop-filter:blur(18px);

border-bottom:1px solid rgba(255,255,255,.15);

    box-shadow:0 4px 20px rgba(0,0,0,.08);

}

.navbar{

    height:80px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:30px;

}

.logo{

    text-decoration:none;

    font-size:30px;

    font-weight:700;

    color:white;

}

.logo i{

    color:#FFC107;

    margin-right:10px;

}

.nav-links{

    display:flex;

    list-style:none;

    gap:28px;

    margin-left:40px;

    flex:1;

    justify-content:center;

}

.nav-right{

    display:flex;

    align-items:center;

    gap:15px;

    flex-shrink:0;

}

.nav-links a{

    text-decoration:none;

    color:white;

    font-weight:600;

    transition:.3s;

}

.nav-links a:hover{

    color:#FFC107;

}

.nav-buttons{
    display:flex;
    align-items:center;
    gap:15px;
    margin-left:auto;
    flex-wrap:nowrap;
}

.call-btn,
.book-btn{

    display:flex;

    align-items:center;

    justify-content:center;

    white-space:nowrap;

    padding:12px 22px;

    border-radius:40px;

    text-decoration:none;

    font-weight:600;

}

.call-btn{

    color:rgb(237, 71, 76);

    border:2px solid #FFC107;

}

.book-btn{

    background:#FFC107;

    color:#111;

}

.menu-toggle{

    display:none;

    font-size:28px;

    cursor:pointer;

}

/*=========================
HERO
==========================*/

.hero{

position:relative;
padding-top:120px;

min-height:100vh;

display:flex;

align-items:center;

/* background:url("../images/hero/bg.jpg");

background-size:cover;

background-position:center; */

overflow:hidden;

}

.hero-bg-slider{

position:absolute;

top:0;

left:0;

width:100%;

height:100%;

z-index:0;

overflow:hidden;

}

.hero-overlay{

position:absolute;

top:0;

left:0;

width:100%;

height:100%;

background:rgba(0,0,0,.55);

}


.hero-slide{

position:absolute;

width:100%;

height:100%;

background-size:cover;

background-position:center;

opacity:0;

transition:opacity 1.5s ease;

transform:scale(1.08);

}

.hero-slide.active{

opacity:1;

animation:heroZoom 8s linear forwards;

}

@keyframes heroZoom{

from{

transform:scale(1.08);

}

to{

transform:scale(1);

}

}

.hero-content{

position:relative;

z-index:2;

display:flex;

justify-content:space-between;

align-items:center;

color:white;

}

.hero-left{

width:50%;

animation:heroContent 1s ease;

}

.hero-right{

width:50%;

text-align:right;

position:relative;

display:flex;

justify-content:flex-end;

align-items:center;

}

.hero-right::before{

content:"";

position:absolute;

width:520px;

height:520px;

background:radial-gradient(circle,
rgba(255,193,7,.45) 0%,
rgba(255,193,7,.15) 45%,
transparent 72%);

border-radius:50%;

animation:rotateGlow 18s linear infinite;

z-index:0;

filter:blur(10px);

}

.hero-right img{

position:relative;

z-index:2;

width:100%;

max-width:700px;

animation:carFloat 6s ease-in-out infinite;

will-change:transform;

}

.floating-card{

position:absolute;

display:flex;

align-items:center;

gap:12px;

padding:14px 18px;

background:rgba(255,255,255,.15);

backdrop-filter:blur(18px);

border:1px solid rgba(255,255,255,.25);

border-radius:18px;

color:#fff;

z-index:3;

box-shadow:0 15px 35px rgba(0,0,0,.18);

animation:floatCard 5s ease-in-out infinite;

}

.floating-card i{

width:45px;

height:45px;

border-radius:50%;

background:var(--primary);

display:flex;

align-items:center;

justify-content:center;

color:#111;

font-size:18px;

flex-shrink:0;

}

.floating-card h4{

font-size:16px;

margin-bottom:3px;

}

.floating-card span{

font-size:13px;

opacity:.9;

}

.card-1{

top:8%;

left:2%;

animation-delay:0s;

}

.card-2{

top:45%;

right:-5%;

animation-delay:1.5s;

}

.card-3{

bottom:8%;

left:10%;

animation-delay:3s;

}
@keyframes floatCard{

0%,100%{

transform:translateY(0px);

}

50%{

transform:translateY(-12px);

}

}

.hero h1{

font-size:72px;

font-weight:800;

line-height:1.1;

margin:20px 0;
animation:fadeUp .8s ease forwards;
animation-delay:.4s;
opacity:0;

}

.hero h1 span{

color:#FFC107;

}

.hero p{

font-size:20px;

line-height:1.8;

max-width:600px;

margin-bottom:35px;
animation:fadeUp .8s ease forwards;
animation-delay:.6s;
opacity:0;

}

.hero-badge{

display:inline-block;

padding:10px 22px;

background:rgba(255,255,255,.15);

backdrop-filter:blur(10px);

border-radius:40px;

font-weight:600;
animation:fadeUp .8s ease forwards;
animation-delay:.2s;
opacity:0;

}

.hero-buttons{

margin-bottom:50px;
animation:fadeUp .8s ease forwards;
animation-delay:.8s;
opacity:0;
}

.hero-stats{

    display:flex;
    gap:60px;

    margin-bottom:120px;
    animation:fadeUp .8s ease forwards;
    animation-delay:1s;
    opacity:0;

}

.hero-stats h3{

font-size:40px;

color:#FFC107;

}

.hero-stats span{

font-size:16px;

}
@keyframes rotateGlow{

0%{

transform:rotate(0deg);

}

100%{

transform:rotate(360deg);

}

}

@keyframes carFloat {

    0% {
        transform: translateX(-18px) rotate(-1deg);
    }

    25% {
        transform: translateX(-8px) rotate(0deg);
    }

    50% {
        transform: translateX(18px) rotate(1deg);
    }

    75% {
        transform: translateX(8px) rotate(0deg);
    }

    100% {
        transform: translateX(-18px) rotate(-1deg);
    }

}

/*=====================================
SCROLL INDICATOR
======================================*/

.scroll-indicator{

position:absolute;

left:50%;

bottom:30px;

transform:translateX(-50%);

display:flex;

flex-direction:column;

align-items:center;

gap:12px;

z-index:5;

color:#fff;

font-size:14px;

letter-spacing:2px;

text-transform:uppercase;

}

.mouse{

width:30px;

height:52px;

border:2px solid rgba(255,255,255,.7);

border-radius:20px;

display:flex;

justify-content:center;

padding-top:8px;

}

.wheel{

width:4px;

height:10px;

background:var(--primary);

border-radius:20px;

animation:scrollWheel 1.6s infinite;

}

@keyframes scrollWheel{

0%{

opacity:1;

transform:translateY(0);

}

100%{

opacity:0;

transform:translateY(18px);

}

}

.hero-buttons{

display:flex;

flex-wrap:wrap;

align-items:center;

gap:20px;

margin-bottom:50px;

}

@keyframes fadeUp{

from{

opacity:0;

transform:translateY(40px);

}

to{

opacity:1;

transform:translateY(0);

}

}

@keyframes heroContent{

from{

opacity:0;

transform:translateX(-40px);

}

to{

opacity:1;

transform:translateX(0);

}

}



/* ===========================
BOOKING SECTION
===========================*/

.booking{

    margin-top:-70px;
    position:relative;
    z-index:50;

}

.booking-card{

    background:#fff;

    border-radius:20px;

    padding:30px;

    display:grid;

    grid-template-columns:repeat(7,1fr);

    gap:20px;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

    align-items:end;

}

.booking-item{

    display:flex;

    flex-direction:column;

}

.booking-item label{

    font-size:14px;

    font-weight:600;

    margin-bottom:8px;

    color:#555;

}

.booking-item select,

.booking-item input{

    height:55px;

    border:1px solid #ddd;

    border-radius:12px;

    padding:0 15px;

    font-size:15px;

    outline:none;

    transition:.3s;

}

.booking-item select:focus,

.booking-item input:focus{

    border-color:#FFC107;

}

.search-btn{

    height:55px;

    border:none;

    border-radius:12px;

    background:#FFC107;

    color:#111;

    font-size:17px;

    font-weight:700;

    cursor:pointer;

    transition:.3s;

}

.search-btn:hover{

    transform:translateY(-3px);

    box-shadow:0 15px 30px rgba(255,193,7,.35);

}

.primary-btn{

display:inline-flex;

align-items:center;

justify-content:center;

padding:16px 38px;

background:var(--primary);

color:#111;

border-radius:50px;

text-decoration:none;

font-weight:700;

transition:.35s;

margin-right:20px;

position:relative;

overflow:hidden;

box-shadow:0 12px 30px rgba(255,193,7,.30);

}

.primary-btn::before{

content:"";

position:absolute;

top:0;

left:-120%;

width:60%;

height:100%;

background:rgba(255,255,255,.35);

transform:skewX(-25deg);

transition:.6s;

}

.primary-btn:hover::before{

left:140%;

}

.primary-btn:hover{

transform:translateY(-6px);

box-shadow:0 20px 45px rgba(255,193,7,.45);

}

.secondary-btn{

display:inline-flex;

align-items:center;

justify-content:center;

padding:16px 38px;

border:2px solid rgba(255,255,255,.8);

color:#fff;

border-radius:50px;

text-decoration:none;

font-weight:700;

transition:.35s;

backdrop-filter:blur(10px);

}

.secondary-btn:hover{

background:#fff;

color:#111;

transform:translateY(-6px);

box-shadow:0 20px 40px rgba(255,255,255,.20);

}

/*==================================================
            FLEET SECTION
==================================================*/

.fleet{

    padding:120px 0;

    background:#f8f9fb;

}

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.section-title span{

    display:inline-block;

    color:#FFC107;

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:15px;

}

.section-title h2{

    font-size:48px;

    font-family:'Poppins',sans-serif;

    color:#111;

    margin-bottom:20px;

}

.section-title p{

    width:700px;

    max-width:95%;

    margin:auto;

    color:#666;

    line-height:1.8;

    font-size:18px;

}

.fleet-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.car-card{

    background:white;

    border-radius:22px;

    overflow:hidden;

    transition:.4s;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.car-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 55px rgba(0,0,0,.15);

}

.car-image{

    height:240px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#f5f5f5;

    overflow:hidden;

}

.car-image img{

    width:90%;

    transition:.5s;

}

.car-card:hover .car-image img{

    transform:scale(1.08);

}

.car-info{

    padding:25px;

}

.car-info h3{

    font-size:24px;

    margin-bottom:12px;

    color:#111;

}

.rating{

    color:#FFC107;

    font-size:17px;

    margin-bottom:18px;

    font-weight:700;

}

.car-specs{

    display:flex;

    flex-wrap:wrap;

    gap:12px;

    margin-bottom:25px;

}

.car-specs span{

    background:#f2f2f2;

    padding:8px 12px;

    border-radius:30px;

    font-size:14px;

    color:#555;

}

.car-specs i{

    color:#FFC107;

    margin-right:6px;

}

.price-row{

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.price-row h4{

    font-size:28px;

    color:#111;

}

.price-row small{

    font-size:15px;

    color:#777;

}

.card-btn{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    background:#FFC107;
    color:#111;

    padding:12px 35px;

    border-radius:40px;

    text-decoration:none;

    font-weight:700;

    transition:.3s;

    white-space:nowrap;

}
.card-btn{
    color:#111 !important;
}

.card-btn:hover{
    color:#fff !important;
}

.card-btn:hover{

    background:#111;

    color:white;

}

.fleet-btn{

    text-align:center;

    margin-top:60px;

}

.view-fleet-btn{

    display:inline-flex;

    align-items:center;

    gap:12px;

    background:#111;

    color:white;

    padding:18px 38px;

    border-radius:50px;

    text-decoration:none;

    font-weight:700;

    transition:.3s;

}

.view-fleet-btn:hover{

    background:#FFC107;

    color:#111;

}




/*======================================
WHY CHOOSE US
======================================*/

.why-us{

padding:120px 0;

background:white;

}

.why-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

margin-top:60px;

}

.why-card{

padding:40px 30px;

text-align:center;

background:#fff;

border-radius:20px;

box-shadow:var(--shadow);

transition:var(--transition);

}

.why-card:hover{

transform:translateY(-12px);

box-shadow:var(--shadow-hover);

}

.why-card i{

font-size:55px;

color:var(--primary);

margin-bottom:25px;

}

.why-card h3{

margin-bottom:15px;

font-size:24px;

}

.why-card p{

color:var(--gray);

line-height:1.8;

}

/*==================================================
            HOW IT WORKS
==================================================*/

.process{

    padding:120px 0;

    background:#f8f9fb;

}

.process-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin-top:70px;

}

.step-card{

    position:relative;

    background:white;

    padding:40px 30px;

    border-radius:20px;

    text-align:center;

    box-shadow:var(--shadow);

    transition:var(--transition);

}

.step-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-hover);

}

.step-number{

    position:absolute;

    top:18px;

    right:20px;

    font-size:42px;

    font-weight:700;

    color:rgba(255,193,7,.15);

}

.step-card i{

    font-size:55px;

    color:var(--primary);

    margin-bottom:25px;

}

.step-card h3{

    margin-bottom:15px;

    font-size:24px;

}

.step-card p{

    color:var(--gray);

    line-height:1.8;

}

/*=========================================
            SERVICES
==========================================*/

.services{

padding:120px 0;

background:#fff;

}

.services-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

margin-top:70px;

}

.service-card{

padding:45px 35px;

border-radius:22px;

background:#fff;

box-shadow:var(--shadow);

transition:var(--transition);

}

.service-card:hover{

transform:translateY(-12px);

box-shadow:var(--shadow-hover);

}

.service-icon{

width:85px;

height:85px;

background:var(--primary);

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

margin-bottom:30px;

}

.service-icon i{

font-size:34px;

color:#111;

}

.service-card h3{

font-size:26px;

margin-bottom:18px;

}

.service-card p{

line-height:1.8;

color:var(--gray);

margin-bottom:25px;

}

.service-card a{

text-decoration:none;

font-weight:700;

color:var(--primary);

transition:.3s;

}

.service-card:hover a{

letter-spacing:1px;

}

/*=====================================
DESTINATIONS
======================================*/

.destinations{

padding:120px 0;

background:var(--bg);

}

.destination-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

margin-top:70px;

}

.destination-card{

background:#fff;

border-radius:22px;

overflow:hidden;

box-shadow:var(--shadow);

transition:var(--transition);

}

.destination-card:hover{

transform:translateY(-10px);

box-shadow:var(--shadow-hover);

}

.destination-card img{

width:100%;

height:260px;

object-fit:cover;

transition:.5s;

}

.destination-card:hover img{

transform:scale(1.08);

}

.destination-content{

padding:25px;

}

.destination-content h3{

font-size:28px;

margin-bottom:12px;

}

.destination-content p{

color:var(--gray);

margin-bottom:20px;

line-height:1.8;

}

.destination-content a{

color:var(--primary);

font-weight:700;

text-decoration:none;

}

/*=========================================
            RENTAL PACKAGES
=========================================*/

.packages{

padding:120px 0;

background:#fff;

}

.package-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:35px;

margin-top:70px;

}

.package-card{

position:relative;

padding:45px 35px;

background:#fff;

border-radius:24px;

box-shadow:var(--shadow);

text-align:center;

transition:var(--transition);

border:2px solid transparent;

}

.package-card:hover{

transform:translateY(-12px);

box-shadow:var(--shadow-hover);

}

.package-card.featured{

border-color:var(--primary);

transform:scale(1.03);

}

.package-badge{

position:absolute;

top:20px;

right:20px;

background:var(--primary);

color:#111;

padding:6px 14px;

font-size:13px;

font-weight:700;

border-radius:30px;

}

.package-card i{

font-size:55px;

color:var(--primary);

margin-bottom:25px;

}

.package-card h3{

font-size:26px;

margin-bottom:15px;

}

.package-card h2{

font-size:46px;

margin-bottom:5px;

}

.package-card span{

display:block;

color:var(--gray);

margin-bottom:30px;

}

.package-card ul{

list-style:none;

padding:0;

margin:0 0 35px;

}

.package-card ul li{

margin:16px 0;

text-align:left;

}

.package-card ul li i{

font-size:16px;

margin-right:10px;

}

.package-btn{

display:inline-block;

padding:15px 35px;

background:var(--primary);

color:#111;

font-weight:700;

text-decoration:none;

border-radius:40px;

transition:var(--transition);

}

.package-btn:hover{

background:#111;

color:#fff;

}

/*=========================================
            SPECIAL OFFERS
=========================================*/

.offers{

padding:120px 0;

background:var(--bg);

}

.offers-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:35px;

margin-top:70px;

}

.offer-card{

position:relative;

padding:45px 35px;

background:#fff;

border-radius:24px;

box-shadow:var(--shadow);

transition:var(--transition);

overflow:hidden;

text-align:center;

}

.offer-card:hover{

transform:translateY(-12px);

box-shadow:var(--shadow-hover);

}

.featured-offer{

border:2px solid var(--primary);

}

.offer-ribbon{

position:absolute;

top:20px;

left:-35px;

background:var(--primary);

color:#111;

padding:8px 45px;

font-size:13px;

font-weight:700;

transform:rotate(-45deg);

}

.offer-icon{

width:90px;

height:90px;

margin:auto;

border-radius:50%;

background:var(--primary);

display:flex;

justify-content:center;

align-items:center;

margin-bottom:30px;

}

.offer-icon i{

font-size:36px;

color:#111;

}

.offer-card h3{

font-size:28px;

margin-bottom:18px;

}

.offer-card p{

color:var(--gray);

line-height:1.8;

margin-bottom:25px;

}

.coupon{

background:#FFF8DC;

padding:15px;

border-radius:12px;

margin-bottom:30px;

font-weight:600;

}

.offer-btn{

display:inline-block;

padding:15px 35px;

background:#111;

color:#fff;

text-decoration:none;

border-radius:40px;

font-weight:700;

transition:var(--transition);

}

.offer-btn:hover{

background:var(--primary);

color:#111;

}

/*=========================================
TESTIMONIALS
=========================================*/

.testimonials{

padding:120px 0;

background:#fff;

}

.testimonialSwiper{

margin-top:70px;

padding-bottom:60px;

}

.testimonialSwiper .swiper-slide{

height:auto;

}

.swiper-pagination-bullet{

width:12px;

height:12px;

background:#ccc;

opacity:1;

transition:.3s;

}

.swiper-pagination-bullet-active{

background:var(--primary);

width:28px;

border-radius:10px;

}

.testimonial-card{

padding:35px;

background:white;

border-radius:22px;

box-shadow:var(--shadow);

transition:var(--transition);

}

.testimonial-card:hover{

transform:translateY(-10px);

box-shadow:var(--shadow-hover);

}

.customer-top{

display:flex;

align-items:center;

gap:18px;

margin-bottom:20px;

}

.customer-top img{

width:70px;

height:70px;

border-radius:50%;

object-fit:cover;

}

.customer-top h3{

margin-bottom:5px;

}

.customer-top span{

font-size:14px;

color:green;

}

.rating{

color:#FFC107;

font-size:20px;

margin-bottom:18px;

}

.trip-info{

margin-top:25px;

font-weight:600;

color:#555;

}

/*=========================================
COUNTER SECTION
=========================================*/

.counter-section{

padding:120px 0;

background:linear-gradient(rgba(17,17,17,.92),rgba(17,17,17,.92)),
url("../images/counter-bg.jpg") center/cover no-repeat;

background-attachment:fixed;

}

.counter-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

}

.counter-card{

background:rgba(255,255,255,.08);

backdrop-filter:blur(12px);

border:1px solid rgba(255,255,255,.12);

padding:45px 30px;

border-radius:24px;

text-align:center;

transition:var(--transition);

}

.counter-card:hover{

transform:translateY(-10px);

background:rgba(255,255,255,.12);

}

.counter-icon{

width:85px;

height:85px;

margin:auto;

margin-bottom:25px;

border-radius:50%;

background:var(--primary);

display:flex;

justify-content:center;

align-items:center;

}

.counter-icon i{

font-size:36px;

color:#111;

}

.counter-card h2{

font-size:52px;

color:#fff;

margin-bottom:12px;

font-weight:700;

}

.counter-card p{

font-size:18px;

color:#ddd;

}

/*=====================================
FAQ
======================================*/

.faq{

padding:120px 0;

background:var(--bg);

}

.faq-container{

max-width:900px;

margin:70px auto 0;

}

.faq-item{

background:white;

margin-bottom:20px;

border-radius:18px;

overflow:hidden;

box-shadow:var(--shadow);

}

.faq-question{

width:100%;

padding:25px;

background:white;

border:none;

font-size:20px;

font-weight:600;

display:flex;

justify-content:space-between;

cursor:pointer;

}

.faq-answer{

display:none;

padding:0 25px 25px;

color:#666;

line-height:1.8;

}

.faq-item.active .faq-answer{

display:block;

}

/*=========================================
CALL TO ACTION
=========================================*/

.cta-section{

padding:120px 0;

background:#111;

overflow:hidden;

}

.cta-wrapper{

display:flex;

align-items:center;

justify-content:space-between;

gap:60px;

}

.cta-left{

flex:1;

color:white;

}

.cta-left span{

display:inline-block;

color:var(--primary);

font-weight:700;

letter-spacing:2px;

margin-bottom:20px;

}

.cta-left h2{

font-size:52px;

margin-bottom:25px;

line-height:1.2;

}

.cta-left p{

color:#ddd;

line-height:1.8;

margin-bottom:40px;

font-size:18px;

}

.cta-buttons{

display:flex;

gap:20px;

flex-wrap:wrap;

}

.cta-right{

flex:1;

text-align:center;

}

.cta-right img{

width:100%;

max-width:650px;

animation:carFloat 6s ease-in-out infinite;

}

/*=========================================
BLOG SECTION
=========================================*/

.blog-section{

padding:120px 0;

background:#fff;

}

.blog-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:35px;

margin-top:70px;

}

.blog-card{

background:#fff;

border-radius:22px;

overflow:hidden;

box-shadow:var(--shadow);

transition:var(--transition);

}

.blog-card:hover{

transform:translateY(-10px);

box-shadow:var(--shadow-hover);

}

.blog-image{

position:relative;

overflow:hidden;

}

.blog-image img{

width:100%;

height:240px;

object-fit:cover;

transition:.5s;

display:block;

}

.blog-card:hover .blog-image img{

transform:scale(1.08);

}

.blog-category{

position:absolute;

top:20px;

left:20px;

background:var(--primary);

color:#111;

padding:8px 16px;

border-radius:30px;

font-size:13px;

font-weight:700;

}

.blog-content{

padding:28px;

}

.blog-meta{

display:flex;

justify-content:space-between;

flex-wrap:wrap;

gap:10px;

font-size:14px;

color:#777;

margin-bottom:18px;

}

.blog-content h3{

font-size:24px;

margin-bottom:15px;

line-height:1.4;

}

.blog-content p{

color:var(--gray);

line-height:1.8;

margin-bottom:25px;

}

.blog-btn{

display:inline-flex;

align-items:center;

gap:10px;

text-decoration:none;

font-weight:700;

color:#111;

transition:.3s;

}

.blog-btn:hover{

color:var(--primary);

}

.blog-footer{

text-align:center;

margin-top:60px;

}

/*=====================================
FOOTER
======================================*/

.footer{

background:#000;

color:white;

padding:90px 0 30px;

}

.footer-grid{

display:grid;

grid-template-columns:2fr 1fr 1fr 1.5fr;

gap:40px;

margin-bottom:50px;

}

.footer h2{

color:var(--primary);

margin-bottom:20px;

}

.footer h3{

margin-bottom:25px;

}

.footer p{

line-height:1.8;

color:#ccc;

}

.footer ul{

list-style:none;

padding:0;

}

.footer ul li{

margin-bottom:15px;

}

.footer a{

color:#ccc;

text-decoration:none;

transition:.3s;

}

.footer a:hover{

color:var(--primary);

}

.social-links{

display:flex;

gap:15px;

margin-top:25px;

}

.social-links a{

width:45px;

height:45px;

background:#222;

display:flex;

justify-content:center;

align-items:center;

border-radius:50%;

}

.social-links a:hover{

background:var(--primary);

color:#111;

}

.copyright{

text-align:center;

margin-top:30px;

color:#888;

}

/*=========================================
PREMIUM NAVBAR
=========================================*/

header{

position:fixed;

top:0;

left:0;

width:100%;

z-index:9999;

transition:.4s ease;

}

header.sticky{

background:#fff;

box-shadow:0 8px 30px rgba(0,0,0,.08);

padding:12px 0;

}

header.sticky .logo{

color:var(--primary);

}

header.sticky .nav-links a{

color:#111;

}

header.sticky .menu-toggle{

color:#111;

}

header.sticky .book-btn{

background:var(--primary);

color:#111;

}

.nav-links a.active{

color:var(--primary);

font-weight:700;

}

.nav-links a{

transition:.3s;

}
html{

scroll-behavior:smooth;

}

/*=====================================
FLOATING BUTTONS
======================================*/

.floating-action{

position:fixed;

right:25px;

bottom:25px;

display:flex;

flex-direction:column;

gap:15px;

z-index:999;

}

.floating-action a,
#scrollTop{

width:58px;

height:58px;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

font-size:22px;

border:none;

cursor:pointer;

text-decoration:none;

box-shadow:0 15px 35px rgba(0,0,0,.18);

transition:.35s;

}

.whatsapp-btn{

background:#25D366;

color:#fff;

}

.floating-action .call-btn{

background:var(--primary);

color:#111;

}

#scrollTop{

background:#111;

color:#fff;

}

.floating-action a:hover,
#scrollTop:hover{

transform:translateY(-8px);

}

/*=====================================
PREMIUM LOADER
======================================*/

.loader{

position:fixed;

top:0;

left:0;

width:100%;

height:100%;

background:#111;

display:flex;

justify-content:center;

align-items:center;

z-index:99999;

transition:opacity .6s ease, visibility .6s ease;

}

.loader.hide{

opacity:0;

visibility:hidden;

}

.loader-content{

text-align:center;

color:#fff;

}

.loader-content i{

font-size:70px;

color:var(--primary);

margin-bottom:20px;

animation:bounceCar 1.2s infinite;

}

.loader-content h2{

font-size:42px;

margin-bottom:30px;

color:#fff;

}

.loader-bar{

width:220px;

height:6px;

background:rgba(255,255,255,.15);

border-radius:20px;

overflow:hidden;

margin:auto;

}

.loader-bar span{

display:block;

width:0;

height:100%;

background:var(--primary);

animation:loading 2s linear forwards;

}

@keyframes loading{

0%{

width:0;

}

100%{

width:100%;

}

}

@keyframes bounceCar{

0%,100%{

transform:translateY(0);

}

50%{

transform:translateY(-10px);

}

}

/*=====================================
SCROLL PROGRESS
======================================*/

.scroll-progress{

position:fixed;

top:0;

left:0;

width:0%;

height:4px;

background:linear-gradient(90deg,#FFC107,#FF9800);

z-index:999999;

transition:width .1s linear;

}

/*==========================
ABOUT SECTION
===========================*/

.about-section{
    padding:100px 0;
    background:#f8fafc;
}

.about-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
}

.about-image{
    flex:1;
}

.about-image img{
    width:100%;
    border-radius:20px;
    box-shadow:0 20px 45px rgba(0,0,0,.12);
    display:block;
}

.about-content{
    flex:1;
}

.section-tag{
    display:inline-block;
    color:#f5a000;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:15px;
    text-transform:uppercase;
}

.about-content h2{
    font-size:42px;
    margin-bottom:20px;
    line-height:1.2;
    color:#111827;
}

.about-content p{
    color:#555;
    line-height:1.8;
    margin-bottom:30px;
}

.about-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin-bottom:35px;
}

.feature{
    display:flex;
    align-items:center;
    gap:12px;
    background:#fff;
    padding:15px 18px;
    border-radius:12px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.feature i{
    color:#f5a000;
    font-size:18px;
}

.about-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.btn-primary,
.btn-secondary{
    padding:14px 30px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.btn-primary{
    background:#f5a000;
    color:#fff;
}

.btn-primary:hover{
    transform:translateY(-3px);
}

.btn-secondary{
    border:2px solid #f5a000;
    color:#f5a000;
}

.btn-secondary:hover{
    background:#f5a000;
    color:#fff;
}

@media(max-width:991px){

    .about-wrapper{
        flex-direction:column;
    }

    .about-content h2{
        font-size:34px;
    }

    .about-features{
        grid-template-columns:1fr;
    }

}

/*=========================
CONTACT SECTION
=========================*/

.contact-section{
    padding:100px 0;
    background:#ffffff;
}

.contact-wrapper{
    display:flex;
    gap:60px;
    align-items:flex-start;
}

.contact-info{
    flex:1;
}

.info-box{
    display:flex;
    gap:18px;
    align-items:flex-start;
    padding:20px;
    margin-bottom:20px;
    border-radius:15px;
    background:#f8fafc;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.3s;
}

.info-box:hover{
    transform:translateY(-5px);
}

.info-box i{
    font-size:24px;
    color:#f5a000;
    margin-top:5px;
}

.info-box h4{
    margin-bottom:6px;
    color:#222;
}

.info-box p,
.info-box a{
    color:#666;
    text-decoration:none;
}

.contact-form{
    flex:1;
}

.contact-form form{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:16px;
    border:1px solid #ddd;
    border-radius:10px;
    outline:none;
    font-size:16px;
    transition:.3s;
}

.contact-form input:focus,
.contact-form textarea:focus{
    border-color:#f5a000;
}

.contact-form textarea{
    resize:none;
}

.contact-form button{
    width:fit-content;
    cursor:pointer;
}

@media(max-width:991px){

    .contact-wrapper{
        flex-direction:column;
    }

}

.contact-numbers{
    display:flex;
    align-items:center;
    gap:8px;
    padding:10px 18px;
    background:#fff;
    border-radius:50px;
    white-space:nowrap;
}

.contact-numbers i{
    color:#FFC107;
    font-size:18px;
}

.contact-numbers a{
    text-decoration:none;
    color:#111;
    transition:.3s;
}

.contact-numbers a:hover{
    color:#FFC107;
}

.contact-numbers span{
    color:#999;
}


