/* ── CSS Variables ──────────────────────────────────────────── */
:root {
    --gold:        #fca40c;
    --gold-hover:  #e6930a;
    --gold-light:  #fbbe2f;
    --gold-btn:    #ffc61a;
    --dark:        #000000;
    --dark-soft:   #020202;
    --light-bg:    #f5f4f2;
    --text:        #555555;
    --white:       #ffffff;
    --radius:      5px;
    --transition:  0.25s ease;
}

/* ── Base ───────────────────────────────────────────────────── */
*, *::before, *::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

html { scroll-behavior: smooth; }

h1, h2, h3, h4, span, p {
    font-family: "Lato", sans-serif;
}

img { display: block; max-width: 100%; }

a { text-decoration: none; }

/* ── Navbar ─────────────────────────────────────────────────── */
header {
    position: absolute;
    width: 100%;
    z-index: 99;
    padding: 15px 0;
}

.navbar-brand img { width: 130px; }

.navbar-nav .nav-item { margin: 0 10px; }

.navbar-nav .nav-link {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    transition: color var(--transition);
}
.navbar-nav .nav-link:hover { color: var(--gold); }

.navbar-nav .nav-link.active {
    background-color: var(--gold);
    color: #000;
    border-radius: 30px;
    padding: 5px 20px;
    font-weight: 600;
}

/* Mobile toggler */
.navbar-toggler { filter: brightness(10); border-color: transparent; }
.navbar-toggler:focus { box-shadow: 0 0 3px var(--gold); }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
    width: 100%;
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(rgba(0,0,0,.5), rgba(0,0,0,.5)), url('../imgs/hero.png') center/cover no-repeat;
    position: relative;
    display: flex;
    justify-content: center;
    padding: 12rem 0;
}

.hero-text { text-align: center; }

.hero-text span {
    display: block;
    color: var(--gold);
    font-size: 40px;
    font-weight: 500;
    font-family: "Kristi", cursive;
    text-transform: uppercase;
}

.hero-text h1 {
    color: #fff;
    font-size: 50px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.15;
}

.hero-img {
    position: absolute;
    bottom: -90px;
    left: 24%;
}

.hero-img img { width: 70%; }

/* Banner slider car image — centered, above swiper */
.hero-slider .hero-img {
    left: 50%;
    transform: translateX(-50%);
    bottom: -90px;
    z-index: 10;
    width: 70%;
}

.hero-slider .hero-img img { width: 100%; }

/* ── About + Booking ────────────────────────────────────────── */
.cap-book {
    background-color: var(--gold);
    width: 100%;
    height: 90vh;
    min-height: 640px;
    padding-top: 160px;
}

.book-text span {
    display: block;
    font-size: 35px;
    font-weight: 800;
    color: #000;
    font-family: "Lato", sans-serif;
}

.book-text h1 {
    font-size: 50px;
    font-weight: 800;
    line-height: 45px;
    color: #000;
    margin: 10px 0 0;
}

.book-text p { margin: 30px 0; }

.read-btn { margin-top: 40px; }

.read-btn a {
    display: inline-block;
    background-color: #000;
    color: #fff;
    padding: 10px 15px;
    border-radius: var(--radius);
    font-size: 18px;
    font-weight: 500;
    transition: background var(--transition);
}
.read-btn a:hover { background: #333; color: #fff; }

/* Booking form */
.form { display: flex; justify-content: center; }

.book-form { height: 100%; width: 370px; }

.book-form .messages { display: flex; justify-content: center; position: relative; }

.book-heading {
    background-color: #000;
    padding: 10px 30px;
}
.book-heading h1 {
    color: #fff;
    text-transform: uppercase;
    font-size: 35px;
    font-weight: 600;
    margin: 0;
}
.book-heading h1 span { color: var(--gold); }

.form-body {
    background-color: #fff;
    padding: 30px 15px 15px;
}
.form-body .input { margin: 10px 0; }

.main-input {
    display: flex;
    justify-content: space-between;
}
.main-input.date { padding: 0 15px; }
.main-input.date input { width: 100%; }

.main-input input {
    border: none;
    outline: none;
    width: 90%;
    padding: 12px 5px;
    border-bottom: 2px solid #ddd;
    font-family: inherit;
    font-size: 14px;
    transition: border-color var(--transition);
    background: transparent;
}
.main-input input:focus { border-bottom-color: var(--gold); }

.input-label {
    display: block;
    font-size: 11px;
    color: #999;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .4px;
}

.choose-car { margin-top: 15px; }
.choose-car select {
    width: 100%;
    border: none;
    outline: none;
    border-bottom: 2px solid #ddd;
    padding: 10px 0;
    font-family: inherit;
    font-size: 14px;
    background: transparent;
    transition: border-color var(--transition);
}
.choose-car select:focus { border-bottom-color: var(--gold); }

.field-error { font-size: 11px; color: #e53e3e; min-height: 14px; }

/* Form messages */
#formMessages .msg-box {
    padding: 10px 14px;
    border-radius: var(--radius);
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.5;
    width: 100%;
}
#formMessages .msg-success { background: #f0fff4; color: #276749; border: 1px solid #9ae6b4; }
#formMessages .msg-danger   { background: #fff5f5; color: #c53030; border: 1px solid #feb2b2; }

.messages .close {
    width: 20px;
    border: none;
    background-color: #fe8d15;
    border: 1px solid #000;
    margin-right: 15px;
    cursor: pointer;
}
.alert {
    padding: 10px 40px;
    position: absolute;
    margin: auto;
}

.submit-btn { margin-top: 30px; }
.submit-btn button {
    background-color: #000;
    color: #fff;
    width: 100%;
    padding: 10px 0;
    display: block;
    text-align: center;
    font-size: 24px;
    font-weight: 500;
    outline: none;
    border: none;
    font-family: inherit;
    cursor: pointer;
    transition: background var(--transition);
    border-radius: 0;
}
.submit-btn button:hover:not(:disabled) { background: #333; }
.submit-btn button:disabled { opacity: .6; cursor: not-allowed; }

/* ── Vehicles ───────────────────────────────────────────────── */
.cars { padding: 60px 0; }

.custom-container {
    width: 80%;
    margin: auto;
}

.cars-heading {
    text-align: center;
    margin-bottom: 100px;
}
.cars-heading h1 {
    font-size: 35px;
    text-transform: uppercase;
    font-weight: 800;
}

/* Cards */
.car-details {
    background-color: var(--light-bg);
    height: 100%;
    position: relative;
    padding: 50px 0 0;
}

/* Alternate (gold) card */
.car-details.car { background-color: var(--gold); }
.car-details.car .passengers i { color: #000; }
.car-details.car .passengers .book-btn a { background-color: #000; color: #fff; }

.car-img {
    width: 80%;
    margin: auto;
    position: relative;
    margin-top: -140px;
}
.car-img img {
    width: 100%;
    height: 190px;
    object-fit: contain;
}

.car-text {
    padding: 0 30px;
    text-align: center;
}
.car-name { margin: 30px 0; }
.car-name h2 { font-size: 30px; font-weight: 800; color: #000; }
.car-text p  { margin-bottom: 0; font-size: 16px; font-weight: 500; }

.passengers { padding: 0 30px; margin: 30px 0; }
.passengers ul { margin: 0; padding: 0; list-style: none; }
.passengers ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 15px 0;
}
.passengers ul li i { color: var(--gold); margin-right: 5px; }
.passengers ul li span { font-weight: 700; }

.passengers .book-btn {
    text-align: center;
    margin-top: 60px;
}
.passengers .book-btn a {
    display: inline-block;
    background-color: var(--gold-btn);
    color: #000;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 12px 20px;
    border-radius: var(--radius);
    letter-spacing: -1px;
    transition: background var(--transition);
}
.passengers .book-btn a:hover { background: var(--gold); color: #000; }

/* View all link below featured cars */
.view-all-btn {
    display: inline-block;
    background-color: #000;
    color: #fff;
    padding: 12px 35px;
    border-radius: var(--radius);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: .3px;
    transition: background var(--transition);
}
.view-all-btn:hover { background: #333; color: #fff; }

/* ── Features ───────────────────────────────────────────────── */
.our-features {
    background: url('../imgs/slider-bg.jpg') center/cover no-repeat;
    padding: 100px 0;
}

.feature-heading {
    text-align: center;
    margin-bottom: 80px;
}
.feature-heading h1 {
    color: var(--gold);
    font-size: 45px;
    font-weight: 600;
    text-transform: uppercase;
}
.feature-heading p { color: #fff; margin-top: 10px; }

.feature-detail {
    display: flex;
    align-items: flex-start;
    margin: 25px 0;
    gap: 0;
}

.feature-icon { flex-shrink: 0; }
.feature-icon span {
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--gold-light);
    border-radius: 100%;
}
.feature-icon span i { font-size: 25px; }

.our-features .row { margin-left: 70px; }

.feature-text { margin-left: 20px; }
.feature-text h3 {
    color: var(--gold-btn);
    text-transform: uppercase;
    font-size: 25px;
    font-weight: 700;
}
.feature-text p { color: #fff; }

/* ── Testimonials ───────────────────────────────────────────── */
.testimonial {
    padding: 65px 0;
    width: 100%;
    background: url('../imgs/BBG.png') center/cover;
}

.testi-heading { text-align: center; }
.testi-heading h2 {
    color: var(--gold-btn);
    font-size: 25px;
    font-weight: 600;
    text-transform: uppercase;
}
.testi-heading h1 {
    font-size: 45px;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
}

.testi-details { margin-top: 60px; }

.testimonial2,
.testimonial1 {
    background-color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    height: 100%;
}

.testi-stars { color: var(--gold); font-size: 14px; margin-bottom: 8px; }

.testi-body p { font-size: 15px; }

.testi-user {
    display: flex;
    align-items: center;
    margin-top: 25px;
}
.testi-user .user-img {
    width: 50px;
    height: 50px;
    border-radius: 50px;
    overflow: hidden;
    flex-shrink: 0;
}
.testi-user img { width: 100%; height: 100%; object-fit: cover; border-radius: 30px; }
.testi-user .user-name { margin-left: 10px; }
.testi-user .user-name h4 {
    color: var(--gold);
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

/* ── Testimonials Slider ────────────────────────────────────── */
.testi-slider-wrap {
    position: relative;
    margin-top: 50px;
    padding: 0 55px 55px;  /* side padding makes room for arrows */
}

.testi-swiper {
    overflow: hidden;
    padding: 8px 4px;
}

.testi-swiper .swiper-slide { height: auto; }
.testimonial1, .testimonial2 { height: 100%; }

/* Navigation arrows — positioned in the wrapper padding zone */
.testi-prev,
.testi-next {
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0,0,0,.3);
    transition: background var(--transition), transform var(--transition);
}
.testi-prev:hover,
.testi-next:hover { background: var(--gold-hover); transform: translateY(-50%) scale(1.08); }

.testi-prev { left: 0; }
.testi-next { right: 0; }

.testi-prev::after,
.testi-next::after {
    font-size: 15px;
    font-weight: 900;
    color: #000;
}

/* Pagination dots */
.testi-pagination {
    bottom: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.testi-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,.4);
    opacity: 1;
    border-radius: 50%;
    transition: all 0.3s ease;
    margin: 0 !important;
}
.testi-pagination .swiper-pagination-bullet-active {
    background: var(--gold);
    width: 30px;
    border-radius: 6px;
}

/* ── CTA banner ─────────────────────────────────────────────── */
.contact-us {
    padding: 50px;
    background-color: var(--gold-light);
}
.contact-us .contact { text-align: center; }
.contact-us .contact h4 {
    font-size: 30px;
    font-weight: 600;
    color: #000;
}
.contact-us .contact h2 {
    font-size: 35px;
    font-weight: 800;
    color: #000;
}
.contact-us .contact a {
    color: #000;
    transition: color var(--transition);
}
.contact-us .contact a:hover { color: #333; }

/* ── Footer ─────────────────────────────────────────────────── */
.footer-top {
    width: 100%;
    padding: 70px 0;
    background: linear-gradient(rgba(0,0,0,.7), rgba(0,0,0,.7)), url('../imgs/3rd Pic.png') center/cover no-repeat;
}

.footer .footer-box .box-heading h2 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
}
.footer .footer-box .box-heading h2::before {
    content: '';
    width: 50px;
    height: 3px;
    position: absolute;
    background-color: var(--gold);
    bottom: -20px;
}
.footer .footer-box .box-heading { margin-bottom: 60px; }

.footer .row { margin-left: 60px; }

.box-text p { color: #fff; font-size: 14px; }

.social-links { margin-top: 25px; }
.social-links ul { padding: 0; margin: 0; list-style: none; display: flex; gap: 4px; }
.social-links ul li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px; height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    color: var(--gold-light);
    font-size: 18px;
    transition: background var(--transition);
}
.social-links ul li a:hover { background: var(--gold); color: #000; }

.footer-box .links ul { list-style: none; padding: 0; margin: 0; }
.footer-box .links ul li { margin: 10px 0; }
.footer-box .links ul li a { color: #fff; font-size: 14px; }
.footer-box .links ul li a:hover { color: var(--gold); }

.location { display: flex; gap: 0; }
.location .icon { margin-right: 20px; }
.location .icon i { color: #fff; }
.location .address span { color: #fff; font-size: 14px; line-height: 1.6; }

.contact-detail ul { padding: 0; margin: 0; list-style: none; }
.contact-detail ul li { margin: 10px 0; }
.contact-detail ul li a,
.contact-detail ul li span { font-size: 14px; }

.contact-number {
    display: flex;
    align-items: center;
    color: #fff;
}
.contact-number .icon { margin-right: 20px; }
.contact-number .icon i { color: #fff; }
.contact-number .text { font-size: 14px; }
.contact-number:hover { color: var(--gold); }

.contact-email {
    display: flex;
    align-items: center;
    color: #fff;
}
.contact-email .icon { margin-right: 20px; }
.contact-email .icon i { color: #fff; }
.contact-email .text { font-size: 14px; }
.contact-email:hover { color: var(--gold); }

.footer-end {
    background-color: var(--dark-soft);
    text-align: center;
    padding: 15px 0;
}
.footer-end p { color: #fff; margin-bottom: 0; font-size: 14px; }

/* ── Page (all.html inner pages) ────────────────────────────── */
.page header {
    position: relative;
    background-color: #000;
}

/* ── Contact page ───────────────────────────────────────────── */
.contact-page-section {
    padding: 70px 0 50px;
    background: #f9f8f6;
}

.contact-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 24px rgba(0,0,0,.08);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-card-header {
    background: #000;
    padding: 20px 28px;
    display: flex;
    align-items: center;
    gap: 14px;
}
.contact-card-header i {
    font-size: 22px;
    color: var(--gold);
}
.contact-card-header h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.contact-card-list {
    list-style: none;
    padding: 24px 28px;
    margin: 0;
    flex: 1;
}
.contact-card-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
    font-size: 15px;
    color: #444;
    line-height: 1.6;
}
.contact-card-list li:last-child { margin-bottom: 0; }
.cc-icon {
    width: 36px;
    height: 36px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.cc-icon i { color: #000; font-size: 14px; }
.contact-card-list a { color: #333; transition: color var(--transition); }
.contact-card-list a:hover { color: var(--gold); }

.contact-card-actions {
    padding: 16px 28px 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.cc-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 18px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    transition: opacity var(--transition);
}
.cc-btn:hover { opacity: .85; }
.cc-btn-dark      { background: #000; color: #fff; }
.cc-btn-gold      { background: var(--gold); color: #000; }
.cc-btn-whatsapp  { background: #25d366; color: #fff; }

.contact-page-cta {
    text-align: center;
    margin-top: 60px;
    padding: 50px 20px;
    background: #000;
    border-radius: 10px;
    color: #fff;
}
.contact-page-cta h2 { font-size: 35px; font-weight: 800; color: var(--gold); margin-bottom: 10px; }
.contact-page-cta p  { font-size: 16px; color: #ccc; margin-bottom: 24px; }

/* ── Page banner (vehicles page, inner pages) ───────────────── */
.page-banner {
    background: linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.6)), url('../imgs/hero.png') center/cover no-repeat;
    padding: 140px 0 60px;
    text-align: center;
}
.page-banner h1 {
    color: #fff;
    font-size: 48px;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0;
}
.page-banner p {
    color: var(--gold);
    font-size: 16px;
    margin-top: 10px;
}
.page-banner .breadcrumb-nav { margin-top: 15px; }
.page-banner .breadcrumb-nav a { color: var(--gold); font-size: 14px; }
.page-banner .breadcrumb-nav span { color: #ccc; font-size: 14px; }
.page-banner .breadcrumb-nav .sep { margin: 0 8px; color: #aaa; }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
══════════════════════════════════════════════════════════════ */

/* ── ≤ 500px ─────────────────────────────────────────────── */
@media (max-width: 500px) {
    .navbar-collapse {
        padding: 20px;
        border-radius: 10px;
        background-color: #3f3f3f;
    }
    .navbar .navbar-nav li a { font-size: 10px; }
    .navbar-toggler:hover { box-shadow: 0 0 3px #fe8d15; }
    .navbar-brand img { width: 100px; }

    .hero { padding: 11rem 0; min-height: 365px; height: 70vh; }
    .hero-img { left: 12%; }
    .hero-img img { width: 85%; }
    .hero-text span { font-size: 25px; }
    .hero-text h1   { font-size: 23px; }

    .cap-book { height: auto; min-height: auto; padding: 110px 0 35px; }
    .book-text p  { font-size: 15px; }
    .book-text h1 { font-size: 25px; line-height: 28px; }
    .book-text span { font-size: 22px; }
    .read-btn { margin: 30px 0; }
    .book-heading h1  { font-size: 25px; }
    .submit-btn button { font-size: 20px; }

    .cars { padding: 40px 0 0; }
    .custom-container { width: 95%; }
    .cars-heading h1  { font-size: 25px; }
    .cars-heading      { margin-bottom: 65px; }
    .car-name { margin: 12px 0; }
    .car-name h2 { font-size: 25px; }
    .passengers .book-btn { margin-top: 40px; }
    .passengers .book-btn a { font-size: 15px; }

    .feature-heading h1 { font-size: 25px; }
    .our-features { padding: 40px 0; }
    .feature-heading p  { font-size: 14px; margin-top: 10px; margin-bottom: 0; }
    .feature-heading    { margin-bottom: 40px; }
    .our-features .row  { margin-left: 0; }
    .our-features .feature-text h3 { font-size: 16px; }
    .our-features .feature-text p  { margin-bottom: 0; font-size: 13px; }
    .feature-icon span  { width: 50px; height: 50px; }
    .feature-icon span i { font-size: 20px; }

    .testimonial { padding: 40px 0; }
    .testi-heading h2 { font-size: 16px; }
    .testi-heading h1 { font-size: 25px; }
    .testi-details  { margin-top: 30px; }
    .testimonial1   { margin-bottom: 30px; }
    .testimonial2, .testimonial1 { padding: 15px 20px; border-radius: 20px; }

    .contact-us { padding: 30px 0; }
    .contact-us .contact h4 { font-size: 20px; }
    .contact-us .contact h2 { font-size: 24px; }

    .footer .row { margin-left: 0; }
    .footer-box  { margin: 25px 0; }
    .footer-top  { width: 100%; padding: 30px 0; }
    .footer .footer-box .box-heading h2 { font-size: 18px; }
    .footer .footer-box .box-heading    { margin-bottom: 35px; }
    .main-input { flex-direction: column; }
    .main-input input { width: 100%; }
}

/* ── 501–759px ──────────────────────────────────────────── */
@media (min-width: 501px) and (max-width: 759px) {
    .navbar-collapse { padding: 20px; border-radius: 10px; background-color: #3f3f3f; }
    .navbar .navbar-nav li a { font-size: 10px; }
    .navbar-toggler:hover { box-shadow: 0 0 3px #fe8d15; }
    .navbar-brand img { width: 100px; }

    .hero { height: 90vh; min-height: 470px; padding: 11rem 0; }
    .hero-img { left: 25%; }
    .hero-img img { width: 65%; }
    .hero-text span { font-size: 35px; }
    .hero-text h1   { font-size: 30px; }

    .cap-book { height: auto; min-height: auto; padding: 95px 0 35px; }
    .book-text p  { font-size: 15px; }
    .form { display: block; }
    .book-form { width: 100%; }
    .book-text h1 { font-size: 25px; line-height: 28px; }
    .read-btn { margin: 30px 0; }
    .book-heading h1  { font-size: 25px; }
    .submit-btn button { font-size: 20px; }

    .cars { padding: 40px 0 0; }
    .custom-container { width: 95%; }
    .cars-heading h1  { font-size: 25px; }
    .cars .col-md-6   { width: 50%; }
    .cars-heading { margin-bottom: 65px; }
    .car-name { margin: 12px 0; }
    .car-name h2 { font-size: 25px; }
    .passengers .book-btn   { margin-top: 40px; }
    .passengers .book-btn a { font-size: 15px; }

    .feature-heading h1 { font-size: 30px; }
    .our-features { padding: 40px 0; }
    .feature-heading p  { font-size: 13px; margin-top: 10px; margin-bottom: 0; }
    .feature-heading    { margin-bottom: 40px; }
    .our-features .row  { margin-left: 0; }
    .our-features .row .col-md-6 { width: 50%; }
    .our-features .feature-text h3 { font-size: 16px; }
    .our-features .feature-text p  { margin-bottom: 0; font-size: 13px; }
    .feature-icon span  { width: 50px; height: 50px; }
    .feature-icon span i { font-size: 20px; }

    .testimonial { padding: 40px 0; }
    .testi-heading h2 { font-size: 16px; }
    .testi-heading h1 { font-size: 25px; }
    .testi-details  { margin-top: 30px; }
    .testimonial1   { margin-bottom: 30px; }
    .testimonial2, .testimonial1 { padding: 15px 20px; border-radius: 20px; }

    .contact-us { padding: 30px 0; }
    .contact-us .contact h4 { font-size: 20px; }
    .contact-us .contact h2 { font-size: 24px; }

    .footer .row { margin-left: 0; }
    .footer .row .col-md-6 { width: 50%; }
    .footer-box  { margin: 25px 0; }
    .footer-top  { width: 100%; padding: 30px 0; }
    .footer .footer-box .box-heading h2 { font-size: 18px; }
    .footer .footer-box .box-heading    { margin-bottom: 35px; }
}

/* ── 760–768px ──────────────────────────────────────────── */
@media (min-width: 760px) and (max-width: 768px) {
    .navbar-collapse { padding: 20px; border-radius: 10px; background-color: #3f3f3f; }
    .navbar .navbar-nav li a { font-size: 10px; }
    .navbar-toggler:hover { box-shadow: 0 0 3px #fe8d15; }
    .navbar-toggler:focus { box-shadow: 0 0 3px #fe8d15; }
    .navbar-brand img { width: 100px; }

    .hero { padding: 11rem 0; }
    .hero-img { left: 15%; }
    .hero-img img { width: 80%; }
    .hero-text h1 { font-size: 40px; }

    .cap-book { height: auto; min-height: auto; padding: 150px 0 35px; }
    .form { display: block; }
    .book-form { width: 100%; }
    .book-text h1 { font-size: 25px; line-height: 28px; }
    .read-btn { margin: 30px 0; }
    .book-heading h1  { font-size: 25px; }
    .submit-btn button { font-size: 20px; }
    .book-text p  { font-size: 15px; }

    .cars { padding: 40px 0 0; }
    .custom-container { width: 95%; }
    .cars-heading h1  { font-size: 25px; }
    .cars .col-md-6   { width: 50%; }
    .cars-heading { margin-bottom: 65px; }
    .car-name { margin: 12px 0; }
    .car-name h2 { font-size: 25px; }
    .passengers .book-btn   { margin-top: 40px; }
    .passengers .book-btn a { font-size: 15px; }

    .feature-heading h1 { font-size: 30px; }
    .our-features { padding: 40px 0; }
    .feature-heading p  { font-size: 13px; margin-top: 10px; margin-bottom: 0; }
    .feature-heading    { margin-bottom: 40px; }
    .our-features .row  { margin-left: 0; }
    .our-features .row .col-md-6 { width: 50%; }
    .our-features .feature-text h3 { font-size: 16px; }
    .our-features .feature-text p  { margin-bottom: 0; font-size: 13px; }
    .feature-icon span  { width: 50px; height: 50px; }
    .feature-icon span i { font-size: 20px; }

    .testimonial { padding: 40px 0; }
    .testi-heading h2 { font-size: 16px; }
    .testi-heading h1 { font-size: 25px; }
    .testi-details  { margin-top: 30px; }
    .testimonial1   { margin-bottom: 30px; }
    .testimonial2, .testimonial1 { padding: 15px 20px; border-radius: 20px; }

    .contact-us { padding: 30px 0; }
    .contact-us .contact h4 { font-size: 20px; }
    .contact-us .contact h2 { font-size: 24px; }

    .footer .row { margin-left: 0; }
    .footer .row .col-md-6 { width: 50%; }
    .footer-box  { margin: 25px 0; }
    .footer-top  { width: 100%; padding: 30px 0; }
    .footer .footer-box .box-heading h2 { font-size: 18px; }
    .footer .footer-box .box-heading    { margin-bottom: 35px; }
}

/* ── 769–991px ──────────────────────────────────────────── */
@media (min-width: 769px) and (max-width: 991px) {
    .navbar-collapse { padding: 20px; border-radius: 10px; background-color: #3f3f3f; }
    .navbar .navbar-nav li a { font-size: 10px; }
    .navbar-toggler:hover { box-shadow: 0 0 3px #fe8d15; }
    .navbar-toggler:focus { box-shadow: 0 0 3px #fe8d15; }
    .navbar-brand img { width: 100px; }

    .hero { padding: 11rem 0; }
    .hero-img { left: 15%; }
    .hero-img img { width: 75%; }
    .hero-text h1 { font-size: 40px; }

    .cap-book { height: auto; min-height: auto; padding: 150px 0 35px; }
    .form { display: block; }
    .book-form { width: 100%; }
    .book-text h1 { font-size: 30px; line-height: 28px; }
    .read-btn { margin: 30px 0; }
    .book-heading h1  { font-size: 25px; }
    .submit-btn button { font-size: 20px; }
    .book-text p  { font-size: 15px; }

    .cars { padding: 40px 0 0; }
    .custom-container { width: 95%; }
    .cars-heading h1  { font-size: 25px; }
    .cars .col-md-6   { width: 50%; }
    .cars-heading { margin-bottom: 65px; }
    .car-name { margin: 12px 0; }
    .car-name h2 { font-size: 25px; }
    .passengers .book-btn   { margin-top: 40px; }
    .passengers .book-btn a { font-size: 15px; }

    .feature-heading h1 { font-size: 30px; }
    .our-features { padding: 40px 0; }
    .feature-heading p  { font-size: 13px; margin-top: 10px; margin-bottom: 0; }
    .feature-heading    { margin-bottom: 40px; }
    .our-features .row  { margin-left: 0; }
    .our-features .row .col-md-6 { width: 50%; }
    .our-features .feature-text h3 { font-size: 16px; }
    .our-features .feature-text p  { margin-bottom: 0; font-size: 13px; }
    .feature-icon span  { width: 50px; height: 50px; }
    .feature-icon span i { font-size: 20px; }

    .testimonial { padding: 40px 0; }
    .testi-heading h2 { font-size: 16px; }
    .testi-heading h1 { font-size: 25px; }
    .testi-details  { margin-top: 30px; }
    .testimonial1   { margin-bottom: 30px; }
    .testimonial2, .testimonial1 { padding: 15px 20px; border-radius: 20px; }

    .contact-us { padding: 30px 0; }
    .contact-us .contact h4 { font-size: 20px; }
    .contact-us .contact h2 { font-size: 24px; }

    .footer .row { margin-left: 0; }
    .footer .row .col-md-6 { width: 50%; }
    .footer-box  { margin: 25px 0; }
    .footer-top  { width: 100%; padding: 30px 0; }
    .footer .footer-box .box-heading h2 { font-size: 18px; }
    .footer .footer-box .box-heading    { margin-bottom: 35px; }
}

/* ── 992–1024px ─────────────────────────────────────────── */
@media (min-width: 992px) and (max-width: 1024px) {
    .book-text h1  { font-size: 45px; }
    .submit-btn button { font-size: 20px; }
    .passengers .book-btn a { font-size: 18px; }
    .our-features   { padding: 90px 0; }
    .feature-text h3 { font-size: 20px; }
    .feature-text p  { font-size: 15px; margin-bottom: 0; }
    .feature-icon span { width: 60px; height: 60px; }
    .feature-icon span i { font-size: 22px; }
    .testi-heading h1 { font-size: 35px; }
    .testi-heading h2 { font-size: 22px; }
    .testimonial2, .testimonial1 { border-radius: 30px; }
    .feature-heading h1 { font-size: 35px; }
    .book-heading h1    { font-size: 30px; }
}

/* ── > 1441px ────────────────────────────────────────────── */
@media (min-width: 1441px) {
    .hero-text span { font-size: 50px; }
    .hero-text h1   { font-size: 60px; }
    .hero-img { position: absolute; left: 35%; }
    .hero-img img { width: 90%; }
    .hero { padding: 10rem 0; align-items: center; }
    .book-text p  { font-size: 20px; }
    .book-form { width: 100%; }
    .cap-book { height: 70vh; }
}

/* ── Banner Slider Hero ───────────────────────────────────────── */
.hero-slider { padding: 0; height: 100vh; min-height: 600px; background: none; display: block; position: relative; }
.banner-swiper { width: 100%; height: 100%; }
.banner-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 12rem 0;
    height: 100vh;
    min-height: 600px;
    position: relative;
}
.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55));
}
.banner-content { position: relative; z-index: 2; text-align: center; }
.banner-swiper .swiper-button-prev,
.banner-swiper .swiper-button-next { color: var(--gold); }
.banner-swiper .swiper-pagination-bullet-active { background: var(--gold); }
