html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px; /* Offset for sticky navbar */
}

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

.site-navbar .container {
    max-width: 1350px !important;
}

.sticky-wrapper.is-sticky .site-navbar {
    padding: 8px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.site-navbar .site-logo {
    white-space: nowrap;
}

.nav-logo {
    max-height: 50px;
    width: auto;
    transition: 0.3s;
}

.logo-text-nav {
    font-family: 'Outfit', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Navbar color rules removed to prevent conflicts with modern-index.css */

.nav-container {
    max-width: 1400px;
    margin: auto;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.custom-toggler {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none !important;
    margin: 10px 0;
}

.custom-toggler:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.custom-toggler:active {
    transform: scale(0.95);
}

.custom-toggler span {
    color: #ffffff !important;
    font-size: 24px;
    line-height: 1;
}

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

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.nav-logo {
    height: 60px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .nav-logo {
        height: 45px;
    }
}

.logo-text-nav {
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    color: #0f172a !important;
    font-size: 1.4rem;
    vertical-align: middle;
    letter-spacing: -0.5px;
    text-decoration: none !important;
}

.site-logo a:hover {
    text-decoration: none !important;
}

:root {
   margin: 0;
 
    align-items: center;
}

.logo-text span {
    color: #06b6d4;
    margin-left: 4px;
}

/* =========================
MENU
========================= */

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-left: 60px;
    margin-right: auto;
}

.nav-menu a{
position: relative;
text-decoration: none;
color: #374151;
font-weight: 500;
font-size: 15px;
transition: 0.3s;
padding: 8px 0;
}
.nav-menu a::after {
content: "";
position: absolute;
left: 0;
bottom: -6px;

width: 100%;
height: 3px;
background-color: #06b6d4;

transform: scaleX(0);
transform-origin: left;

transition: transform 0.3s ease;
}

.nav-menu a:hover::after {
transform: scaleX(1);
}

/* =========================
HERO SECTION
========================= */

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

#slider{
display: flex;
width: 100%;
height: 100%;
transition: all 0.7s ease;
}

.slide{
width: 100%;
height: 100%;
position: relative;
flex-shrink: 0;
}

.slide img{
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;
}

.overlay-dark{
position: absolute;
inset: 0;
background: rgba(0,0,0,0.4); /* Lighter for better image visibility */
}

.overlay-gradient{
position: absolute;
inset: 0;
background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.4));
}

.hero-container{
position: relative;
z-index: 10;
max-width: 1400px;
margin: auto;
padding: 0 24px;
height: 100%;
display: flex;
align-items: center;
}

.hero-content{
max-width: 700px;
margin-bottom: 180px;
}

.hero-badge{
display: inline-block;
padding: 12px 22px;
border-radius: 999px;
font-size: 13px;
text-transform: uppercase;
letter-spacing: 2px;
border: 1px solid #22d3ee;
background: rgba(34,211,238,0.15);
color: #67e8f9;
}

.hero-title{
font-size: 64px;
line-height: 1.1;
color: #fff;
font-weight: 800;
margin-top: 25px;
}

.hero-title span{
color: #22d3ee;
}

.hero-text{
color: #e5e7eb;
font-size: 18px;
line-height: 1.8;
margin-top: 25px;
max-width: 600px;
}

.hero-buttons{
display: flex;
flex-wrap: wrap;
gap: 20px;
margin-top: 40px;
}

.btn-primary{
padding: 16px 34px;
background: #06b6d4;
color: white;
border-radius: 18px;
font-weight: 600;
text-decoration: none;
transition: 0.3s;
}

.btn-primary:hover{
background: #0891b2;
}

.btn-secondary{
padding: 16px 34px;
background: rgba(255,255,255,0.1);
border: 1px solid rgba(255,255,255,0.2);
backdrop-filter: blur(10px);
color: white;
border-radius: 18px;
font-weight: 600;
text-decoration: none;
transition: 0.3s;
}

.btn-secondary:hover{
background: white;
color: black;
}

/* Slider Nav Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: #06b6d4;
    border-color: #06b6d4;
    transform: translateY(-50%) scale(1.1);
}

.prev-btn { left: 40px; }
.next-btn { right: 40px; }

/* Scroll Down Buttons */
.scroll-down-container {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 25;
    display: flex;
    gap: 30px;
}

.scroll-down-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: white;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 20px;
    min-width: 120px;
}

.scroll-down-btn:hover {
    transform: translateY(-10px);
    background: rgba(34, 211, 238, 0.2);
    border-color: #22d3ee;
    color: #22d3ee;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.scroll-down-btn i {
    font-size: 20px;
}

.scroll-down-btn span {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

/* Slider Dots */
.dots {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot.active {
    background: #06b6d4;
    transform: scale(1.3);
    border-color: rgba(255, 255, 255, 0.5);
}

/* =========================
BOOKING SECTION
========================= */

.booking-section{
max-width: 1580px;
margin: -70px auto 0;
position: relative;
z-index: 20;
padding: 0 24px;
}

.booking-box {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border-radius: 40px;
    padding: 50px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.4);
    margin-top: -120px;
    position: relative;
    z-index: 10;
}

.booking-top{
display: flex;
align-items: center;
justify-content: space-between;
gap: 40px;
flex-wrap: wrap;
}

.booking-title{
font-size: 36px;
font-weight: 700;
color: #1f2937;
}

.vehicle-types{
display: flex;
flex-wrap: wrap;
gap: 20px;
}

.vehicle-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    border-radius: 18px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.vehicle-card img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.vehicle-card.active {
    background: #06b6d4;
    color: white;
    box-shadow: 0 8px 20px rgba(6, 182, 212, 0.3);
    border-color: #06b6d4;
}

.vehicle-card:hover:not(.active) {
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

.booking-form{
display: grid;
grid-template-columns: repeat(5,1fr);
gap: 24px;
margin-top: 40px;
}

.form-group{
display: flex;
flex-direction: column;
gap: 12px;
}

.form-group label {
    font-weight: 700;
    color: #1f2937;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select {
    background: rgba(255, 255, 255, 0.6) !important;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 16px 20px;
    outline: none;
    transition: all 0.3s ease;
    font-size: 16px;
    color: #1f2937;
}

.form-group input:focus,
.form-group select:focus {
    background: white !important;
    border-color: #06b6d4;
    box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.1);
}

.search-btn{
width: 100%;
background: #06b6d4;
color: white;
border: none;
padding: 16px;
border-radius: 14px;
font-weight: 700;
cursor: pointer;
transition: 0.3s;
}

.search-btn:hover{
background: #0891b2;
}

/* =========================
POPULAR VEHICLES
========================= */

.popular-section{
max-width: 1400px;
margin: auto;
padding: 80px 24px;
}

.section-top{
display: flex;
justify-content: space-between;
align-items: center;
gap: 20px;
flex-wrap: wrap;
margin-bottom: 50px;
}

.section-title{
font-size: 42px;
font-weight: 700;
color: #111827;
}

.section-desc{
margin-top: 10px;
color: #6b7280;
}

.vehicle-grid{
display: grid;
grid-template-columns: repeat(4,1fr);
gap: 32px;
}

.vehicle-box{
background: white;
border-radius: 30px;
padding: 24px;
border: 1px solid #f3f4f6;
transition: 0.3s;
box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.vehicle-box:hover{
transform: translateY(-6px);
box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.vehicle-image img{
width: 100%;
height: 180px;
object-fit: contain;
}

.price{
color: #06b6d4;
font-size: 32px;
font-weight: 700;
}

.book-btn{
width: 100%;
margin-top: 30px;
padding: 16px;
border: none;
border-radius: 999px;
background: #06b6d4;
color: white;
font-weight: 700;
cursor: pointer;
transition: 0.3s;
}

.book-btn:hover{
background: #0891b2;
}

/* =========================
HOW IT WORKS
========================= */

.how-it-works {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 30px !important;
    position: relative;
    padding-top: 50px;
    margin-left: auto;
    margin-right: auto;
}

.step {
    text-align: center;
    position: relative;
    padding: 50px 25px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.04);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255,255,255,0.8);
    z-index: 1;
}

.step .number {
    width: 60px;
    height: 60px;
    background: #06b6d4;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    margin: -70px auto 20px;
    border: 6px solid #f8fafc;
    box-shadow: 0 8px 20px rgba(6, 182, 212, 0.3);
    position: relative;
    z-index: 2;
}

@media (max-width: 1200px) {
    .how-it-works {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 576px) {
    .how-it-works {
        grid-template-columns: 1fr !important;
    }
}

/* =========================
WHY CHOOSE US (ADVANTAGE)
========================= */

.why-section {
    background: #ffffff;
    padding: 30px 24px;
    position: relative;
    overflow: hidden;
}

.why-title {
    font-size: 48px;
    font-weight: 800;
    color: #111827;
    text-align: center;
    letter-spacing: -1.5px;
    font-family: 'Outfit', sans-serif;
}

.why-title span {
    color: #06b6d4;
}

.why-desc {
    margin-top: 20px;
    color: #64748b;
    font-size: 18px;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Force 4 in one row on desktop */
    gap: 25px;
    margin-top: 60px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.why-card {
    background: #ffffff;
    border-radius: 35px;
    padding: 60px 40px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f1f5f9;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.why-card:hover {
    transform: translateY(-15px);
    border-color: #06b6d4;
    box-shadow: 0 30px 60px rgba(6, 182, 212, 0.1);
}

.why-card .icon-box {
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
    border-radius: 24px;
    background: #f0fdfa;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s;
}

.why-card:hover .icon-box {
    background: #06b6d4;
    transform: rotate(10deg);
}

.why-card .icon-box i {
    font-size: 36px;
    color: #06b6d4;
    transition: 0.4s;
}

.why-card:hover .icon-box i {
    color: #ffffff;
}

.why-card h3 {
    font-size: 26px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 15px;
    font-family: 'Outfit', sans-serif;
}

.why-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #64748b;
}

/* Glass cards for CTA section */
.glass-card {
    background: rgba(255, 255, 255, 0.08); /* Slightly more visible background */
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.glass-card h3 {
    color: #ffffff !important; /* Force pure white */
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    font-family: 'Outfit', sans-serif;
}

.glass-card p {
    color: rgba(255, 255, 255, 0.9) !important; /* High contrast white */
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.glass-card .icon-box {
    font-size: 30px;
    margin-bottom: 15px;
    color: #22d3ee;
}

@media (max-width: 1200px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
TESTIMONIALS SECTION
========================= */

/* =========================
   TESTIMONIALS SECTION
========================= */

.testmonials-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
}

.testmonials-section .box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    gap: 30px;
}

.testmonials-section .section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: #0f172a;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -1.5px;
    margin: 0;
    position: relative;
}

.testmonials-section .section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #06b6d4;
    margin-top: 10px;
    border-radius: 10px;
}

.btn-review {
    padding: 14px 32px;
    background: #0f172a;
    color: white !important;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.15);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    font-size: 0.95rem;
}

.btn-review:hover {
    background: #06b6d4;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 30px rgba(6, 182, 212, 0.3);
}

.container-right {
    position: relative;
    padding: 0;
}

.container-right .carousel {
    overflow: visible;
    width: 100%;
}

.carousel-track {
    display: flex;
    gap: 30px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 20px 0;
}

.testmonials-section .review-card {
    background: #ffffff;
    width: calc((100% - 60px) / 3);
    border-radius: 32px;
    padding: 40px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
    position: relative;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    cursor: grab;
}

.testmonials-section .review-card:active {
    cursor: grabbing;
}

.review-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.1);
    border-color: #06b6d4;
}

.review-card .quote-mark {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 48px;
    color: #f1f5f9;
    z-index: 0;
    opacity: 0.8;
}

.review-card .reviewer-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.review-card .img {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    overflow: hidden;
    background: #f8fafc;
    flex-shrink: 0;
    border: 2px solid #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.review-card .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviewer-info h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 4px;
    font-family: 'Outfit', sans-serif;
}

.stars {
    color: #fbbf24;
    font-size: 12px;
    display: flex;
    gap: 2px;
}

.review-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #475569;
    font-weight: 400;
    position: relative;
    z-index: 1;
    margin: 0;
}

.review-text p {
    margin: 0;
}

.right-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    background: white;
    color: #0f172a;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.right-btn:hover {
    background: #06b6d4;
    color: white;
    border-color: #06b6d4;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 10px 20px rgba(6, 182, 212, 0.3);
}

.right-btn:first-child {
    left: -28px;
}

.right-btn:last-child {
    right: -28px;
}

/* HERO RESPONSIVENESS */
@media (max-width: 991px) {
    .hero {
        height: 70vh; /* Better balance for cover layout */
        min-height: 500px;
        background: #000;
    }
    .slide img {
        object-fit: cover !important; /* Back to cover for full-screen impact */
        width: 100% !important;
        height: 100% !important;
        object-position: center;
    }
    .slide {
        background: #000;
    }
    .hero-container {
        align-items: flex-start;
        padding-top: 100px; /* Standard professional padding */
        justify-content: flex-start;
    }
    .hero-content {
        text-align: left;
        margin-bottom: 0;
        max-width: 100%;
        margin-left: 0;
    }
    .hero-title {
        font-size: 36px; /* Slightly smaller for better fit */
        margin-top: 15px;
        text-align: left;
    }
    .hero-text {
        margin: 15px 0 0;
        font-size: 14px;
        line-height: 1.6;
        max-width: 100%;
        text-align: left;
        /* Keep it brief to avoid crowding */
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .hero-buttons {
        display: flex;
        flex-direction: row; /* Back to row as requested */
        gap: 12px;
        margin-top: 25px;
        width: 100%;
        max-width: 100%;
    }
    .btn-primary, .btn-secondary {
        flex: 1;
        padding: 14px 10px;
        font-size: 13px;
        text-align: center;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        white-space: nowrap;
    }
    /* MOBILE TOGGLE BUTTON */
    .mobile-booking-toggle {
        display: flex;
        position: fixed;
        bottom: 25px;
        left: 50%;
        transform: translateX(-50%);
       top: 100px;
        background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
        color: white;
        padding: 16px 32px;
        border-radius: 50px;
        border: none;
        font-weight: 800;
        gap: 12px;
        box-shadow: 0 10px 30px rgba(6, 182, 212, 0.4);
        align-items: center;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        font-size: 14px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .mobile-booking-toggle i { font-size: 18px; }

    /* SIDEBAR EFFECT */
    .booking-section {
        position: fixed !important;
        top: 0;
        right: -105%; /* Hidden by default */
        width: 88% !important;
        height: 100vh !important;
        background: #ffffff !important;
        z-index: 5000 !important;
        margin-top: 0 !important;
        padding: 0 !important;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
        box-shadow: -15px 0 40px rgba(0,0,0,0.15) !important;
        overflow-y: auto;
        display: block !important;
    }
    .booking-section.active {
        right: 0 !important;
    }

    /* CLOSE BUTTON FOR SIDEBAR */
    .close-booking {
        display: flex;
        position: absolute;
        top: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
        background: #f8fafc;
        border: 1px solid #e2e8f0;
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        color: #64748b;
        z-index: 100;
    }

    .booking-box {
        height: 100%;
        padding: 90px 25px 40px !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        background: transparent !important;
        border: none !important;
    }
    .booking-top {
        flex-direction: column;
        align-items: flex-start !important;
        text-align: left !important;
        gap: 25px !important;
    }
    .booking-title {
        font-size: 32px !important;
        letter-spacing: -1px;
        font-weight: 800;
        color: #0f172a !important;
    }
    .vehicle-types {
        width: 100% !important;
        justify-content: flex-start !important;
        gap: 12px;
    }
    .vehicle-card {
        flex: 1 !important;
        padding: 14px 10px;
        justify-content: center;
        border-radius: 18px;
        background: #f8fafc !important;
        border: 1px solid #e2e8f0;
    }
    .vehicle-card.active {
        background: #06b6d4 !important;
        color: white;
        border-color: #06b6d4;
    }
    .vehicle-card img {
        width: 26px;
        height: 26px;
        margin-right: 8px;
    }
    .vehicle-card span {
        font-size: 14px;
        font-weight: 700;
    }

    /* SLIDER NAVIGATION (STAYS FUNCTIONAL) */
    .slider-btn {
        display: flex;
        width: 38px;
        height: 38px;
        font-size: 16px;
        top: auto !important;
        bottom: 100px !important;
        transform: none !important;
       
    }
    .left-btn { left: 20px; }
    .right-btn { right: 20px; left: auto; }
    .dots {
        bottom: 30px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
       
        display: flex;
        gap: 8px;  
    }


/* FORM FIELDS */
    .booking-form {
        margin-top: 30px;
    }
    .form-group label {
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        font-weight: 800;
        color: #94a3b8;
        margin-bottom: 10px;
        display: block;
    }
    /* PREVENT SCROLLING WHEN SIDEBAR OPEN */
    body.no-scroll {
        overflow: hidden !important;
    }
}

/* DESKTOP DEFAULTS */
.mobile-booking-toggle, .close-booking {
    display: none;
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
}

/* OTHER RESPONSIVENESS */

@media (max-width: 1024px) {
    .vehicle-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .booking-section {
        margin-top: 0; /* Remove negative margin on mobile to prevent overlap */
        padding-top: 20px;
    }
    .booking-box {
        margin-top: 0 !important;
        padding: 30px 20px;
        border-radius: 30px;
    }
    .booking-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }
    .vehicle-types {
        justify-content: center;
        gap: 10px;
        width: 100%;
    }
    .vehicle-card {
        padding: 10px 20px;
        flex: 1;
        justify-content: center;
        font-size: 14px;
        min-width: 120px;
    }
    .booking-title {
        font-size: 24px;
    }
    .booking-form {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .section-title {
        font-size: 32px;
        text-align: center;
    }
    .section-top {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .vehicle-grid {
        grid-template-columns: 1fr;
    }
    .booking-wrapper {
        margin-top: -40px;
        padding: 20px;
    }
    .vehicle-card {
        padding: 10px 15px;
        font-size: 13px;
    }
    .how-it-works {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
}

/* TESTIMONIALS RESPONSIVENESS */
@media (max-width: 1024px) {
    .testmonials-section .review-card {
        width: calc((100% - 30px) / 2);
        padding: 30px;
    }
}

@media (max-width: 991px) {
    .testmonials-section {
        padding: 60px 24px;
        margin: 40px auto;
    }
    .testmonials-section .box {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 40px;
    }
    .testmonials-section .section-title::after {
        margin: 10px auto 0;
    }
    .right-btn:first-child {
        left: -15px;
    }
    .right-btn:last-child {
        right: -15px;
    }
}

@media (max-width: 768px) {
    .testmonials-section {
        padding: 40px 20px;
    }
    .testmonials-section .review-card {
        width: calc(100vw - 60px);
        padding: 25px;
        border-radius: 24px;
    }
    .review-text {
        font-size: 1rem;
    }
    .right-btn {
        width: 44px;
        height: 44px;
    }
    .right-btn:first-child {
        left: -10px;
    }
    .right-btn:last-child {
        right: -10px;
    }
}

@media (max-width: 480px) {
    .testmonials-section .review-card {
        width: calc(100vw - 40px);
        margin: 0 10px;
    }
    .carousel-track {
        gap: 15px;
    }
}

/* FLOATING SOCIAL ICONS */
.floating-social {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.floating-social a {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    font-size: 24px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-social a.whatsapp {
    background: #25D366;
}

.floating-social a.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.floating-social a:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.3);
}



/* =========================
   MOBILE SIDEBAR FINAL OVERRIDE
   ========================= */
@media (max-width: 991px) {
    .mobile-booking-toggle {
        display: flex !important;
        position: relative !important; /* Back in page flow */
        bottom: auto !important;
        left: auto !important;
        transform: none !important;
        margin: -30px 20px 30px !important; /* Overlap banner slightly for premium look */
        z-index: 1000 !important;
        background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%) !important;
        color: white !important;
        padding: 18px 25px !important;
        border-radius: 20px !important;
        border: none !important;
        font-weight: 800 !important;
        gap: 15px !important;
        box-shadow: 0 15px 35px rgba(6, 182, 212, 0.3) !important;
        align-items: center !important;
        justify-content: center !important;
        text-transform: uppercase !important;
        letter-spacing: 1.5px !important;
        font-size: 16px !important;
        width: calc(100% - 40px) !important;
        transition: all 0.3s ease !important;
    }

    .booking-section {
        position: fixed !important;
        top: 0 !important;
        right: -105% !important;
        width: 100% !important;
        max-width: 400px !important;
        height: 100vh !important;
        background: #ffffff !important;
        z-index: 10000 !important;
        margin: 0 !important;
        padding: 0 !important;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
        box-shadow: -15px 0 40px rgba(0,0,0,0.15) !important;
        overflow-y: auto !important;
        display: block !important;
    }

    .booking-section.active {
        right: 0 !important;
    }

    .close-booking {
        display: flex !important;
        position: absolute !important;
        top: 20px !important;
        right: 20px !important;
        width: 44px !important;
        height: 44px !important;
        background: #f8fafc !important;
        border: 1px solid #e2e8f0 !important;
        border-radius: 50% !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 20px !important;
        color: #64748b !important;
        z-index: 100 !important;
    }

    body.no-scroll {
        overflow: hidden !important;
    }
}

/* MOBILE STYLES FOR CTA & ADVANTAGE SECTIONS */
@media (max-width: 991px) {
    .cta-adventure-section {
        padding: 60px 20px !important;
    }
    .cta-adventure-section h2 {
        font-size: 2.2rem !important;
        line-height: 1.1 !important;
        margin-bottom: 15px !important;
    }
    .cta-adventure-section p {
        font-size: 1rem !important;
        line-height: 1.6 !important;
        margin-bottom: 30px !important;
    }
    .cta-adventure-section .d-flex {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 12px !important;
        width: 100% !important;
        max-width: 380px !important;
        margin: 0 auto !important;
    }
    .cta-adventure-section .btn {
        margin: 0 !important;
        padding: 14px 10px !important;
        font-size: 14px !important;
        border-radius: 14px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        white-space: normal !important;
        line-height: 1.2 !important;
        font-weight: 700 !important;
        min-height: 60px !important;
    }

    /* WHY CHOOSE US SECTION */
    .why-section {
        padding: 30px 0 !important;
        background: #ffffff !important;
    }
    .why-section-inner {
        padding: 0 20px !important;
    }
    .why-title {
        font-size: 1.8rem !important;
        line-height: 1.1 !important;
        margin-bottom: 5px !important;
        text-align: center !important;
    }
    .why-title span {
        color: #06b6d4 !important;
    }
    .why-desc {
        font-size: 0.9rem !important;
        color: #64748b !important;
        margin-bottom: 20px !important;
        text-align: center !important;
        line-height: 1.4 !important;
    }
    .why-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 4px !important; /* Fixed invalid value */
        margin-top: 10px !important;
        border-top: 1px solid #f1f5f9 !important;
    }
    .why-card {
        background: #ffffff !important;
        border-radius: 0 !important; /* Square cards to sit flush */
        padding: 30px 20px !important;
        text-align: center !important;
        box-shadow: none !important; /* Remove shadow to look flat */
        border: none !important;
        border-bottom: 1px solid #f1f5f9 !important;
        transition: background 0.3s ease !important;
    }
    .why-card:last-child {
        border-bottom: none !important;
    }
    .why-card .icon-box {
        width: 80px !important;
        height: 80px !important;
        background: #f0fdfa !important;
        border-radius: 24px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 auto 25px !important;
    }
    .why-card .icon-box i {
        font-size: 32px !important;
        color: #06b6d4 !important;
    }
    .why-card h3 {
        font-size: 1.4rem !important;
        font-weight: 700 !important;
        color: #0f172a !important;
        margin-bottom: 15px !important;
    }
    .why-card p {
        font-size: 0.95rem !important;
        color: #64748b !important;
        line-height: 1.6 !important;
        margin-bottom: 0 !important;
    }

    /* SECTION TITLE MOBILE */
    .section-title {
        font-size: 1.2rem !important;
        line-height: 1.1 !important;
        margin-bottom: 25px !important;
        text-align: center !important;
        font-weight: 800 !important;
        color: #0f172a !important;
        width: 100% !important;
    }

    /* FOOTER MOBILE REFINEMENT */
    .site-footer {
        padding: 50px 0 30px !important;
        text-align: left !important;
    }
    .site-footer .col-lg-4.mb-5 {
        margin-bottom: 40px !important;
    }
    .site-footer .col-lg-8.ml-auto .row {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 40px 20px !important;
    }
    .site-footer .col-lg-4 {
        margin-bottom: 0 !important;
    }
    .footer-heading {
        font-size: 1.1rem !important;
        font-weight: 700 !important;
        margin-bottom: 15px !important;
        color: #ffffff !important;
        position: relative;
    }
    .site-footer p {
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
        color: #94a3b8 !important;
    }
    .site-footer ul li {
        margin-bottom: 12px !important;
    }
    .site-footer ul li a {
        font-size: 0.85rem !important;
        color: #94a3b8 !important;
        text-decoration: none !important;
        transition: all 0.3s ease !important;
    }
    .site-footer ul li a:hover {
        color: #06b6d4 !important;
        padding-left: 5px !important;
    }
    .site-footer .fab {
        width: 45px !important;
        height: 45px !important;
        background: rgba(255, 255, 255, 0.05) !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 12px !important;
        margin-right: 10px !important;
        font-size: 18px !important;
        color: #ffffff !important;
    }
}

