/* Four Star Car Rental — Light Premium Theme */
:root {
    --primary: #5B9FED;
    --primary-dark: #3D8AE8;
    --primary-light: #E3F0FF;
    --secondary: #FFC107;
    --heading: #2D6CB5;
    --dark: #4A8FD4;
    --bg: #FFFFFF;
    --bg-soft: #F8FAFC;
    --bg-white: #FFFFFF;
    --text: #2C3E50;
    --text-muted: #6B7C93;
    --white: #ffffff;
    --radius: 16px;
    --radius-sm: 10px;
    --radius-pill: 50px;
    --shadow: 0 2px 16px rgba(91, 159, 237, 0.1);
    --shadow-lg: 0 8px 32px rgba(91, 159, 237, 0.15);
    --glass: rgba(255, 255, 255, 0.95);
    --border: #E8EDF5;
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --header-height: 72px;
    --topbar-height: 38px;
    --mobile-nav-height: 72px;
    --mobile-nav-gap: 14px;
    --font: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --qs-bar-height: 82px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    color: var(--text);
    background-color: #ffffff;
    background-image:
        linear-gradient(rgba(241, 245, 249, 0.5) 1px, transparent 1px),
        linear-gradient(90deg, rgba(241, 245, 249, 0.5) 1px, transparent 1px);
    background-size: 32px 32px;
    background-attachment: fixed;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    font-size: 14px;
    font-weight: 400;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: var(--primary-dark); transition: var(--transition); }
a:hover { color: var(--heading); }

.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

/* ── Header Wrap (scroll to top) ── */
.site-header-wrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1040;
    padding-top: env(safe-area-inset-top, 0);
    transition: box-shadow 0.35s ease;
    background: #fff;
}

body.header-sticky .site-header-wrap {
    box-shadow: var(--shadow-lg);
}

body.header-sticky .top-bar {
    height: 0;
    opacity: 0;
    overflow: hidden;
    border: none;
    padding: 0;
}

body.header-sticky .site-header {
    top: 0 !important;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}

body.header-sticky .site-header .brand-name,
body.header-sticky .site-header .brand-tagline,
body.header-sticky .site-header .navbar-nav .nav-link,
body.header-sticky .site-header .btn-lang,
body.header-sticky .site-header .header-phone-inner {
    color: var(--heading) !important;
    text-shadow: none !important;
}

body.header-sticky .site-header .navbar-nav .nav-link.active {
    color: var(--primary-dark) !important;
    background: transparent !important;
}

body.header-sticky .site-header .btn-lang {
    background: var(--white);
    border-color: var(--border);
}

body.header-sticky .site-header .navbar-toggler-icon { filter: none; }

/* ── Top Bar ── */
.top-bar {
    background: transparent;
    color: var(--heading);
    height: var(--topbar-height);
    font-size: 0.74rem;
    font-weight: 500;
    z-index: 1050;
    overflow: hidden;
    border-bottom: 1px solid #EDE6C8;
    transition: height 0.35s ease, opacity 0.35s ease;
}

.top-bar-inner { display: flex; align-items: center; height: 100%; gap: 0.75rem; padding: 6px 0.25rem; }

.top-bar-email {
    color: var(--primary-dark);
    font-weight: 600;
    white-space: nowrap;
    padding: 0 0.75rem;
    flex-shrink: 0;
    font-size: 0.72rem;
    background: var(--white);
    border-radius: var(--radius-pill);
    padding: 0.25rem 0.75rem;
    border: 1px solid var(--border);
}

.top-bar-email:hover { background: var(--primary); color: var(--white); }

.marquee-wrapper {
    flex: 1;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-content {
    display: flex;
    gap: 2.5rem;
    animation: marquee 35s linear infinite;
    white-space: nowrap;
}

.marquee-content span { display: inline-flex; align-items: center; gap: 0.35rem; }
.marquee-content i { color: var(--primary); font-size: 0.65rem; }

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ── Header ── */
.site-header {
    position: relative;
    top: 0;
    left: 0; right: 0;
    z-index: 1040;
    transition: var(--transition);
    background: #fff;
    border-bottom: 1px solid #EEF2F7;
    box-shadow: none;
    min-height: var(--header-height);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.site-header.scrolled,
.page-home .site-header.scrolled {
    background: #fff;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.05);
}

.site-header .navbar {
    padding: 0;
    min-height: var(--header-height);
    align-items: center;
}

.navbar-brand { display: flex; align-items: center; gap: 0.55rem; }

.brand-icon {
    width: 36px; height: 36px;
    background: linear-gradient(135deg, var(--primary), #7BB8FF);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    font-size: 0.95rem;
    box-shadow: 0 2px 8px rgba(91, 159, 237, 0.25);
}

.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-weight: 600; font-size: 1rem; color: var(--heading); letter-spacing: -0.02em; }
.brand-tagline { font-size: 0.62rem; color: var(--text-muted); font-weight: 400; }

.header-phone {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--heading);
}

.header-phone a { color: inherit; }
.header-phone i { color: var(--primary); }

.header-phone { display: none; }

.navbar-nav .nav-link {
    font-weight: 500;
    font-size: 0.8rem;
    color: #64748B;
    padding: 0.35rem 0.7rem !important;
    border-radius: 0;
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link:hover { color: var(--primary-dark) !important; background: transparent; }

.navbar-nav .nav-link.active {
    color: var(--primary-dark) !important;
    background: transparent !important;
    font-weight: 600;
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    left: 0.7rem;
    right: 0.7rem;
    bottom: 0;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

@media (min-width: 992px) {
    .navbar-nav {
        gap: 0.5rem;
        align-items: center;
    }

    .navbar-nav .nav-link {
        display: inline-block;
        padding: 0.5rem 1.1rem !important;
        font-size: 0.84rem;
        letter-spacing: -0.01em;
        white-space: nowrap;
    }

    .navbar-nav .nav-link i {
        display: none !important;
    }

    .navbar-nav .nav-link.active::after {
        left: 1.1rem;
        right: 1.1rem;
    }
}

.header-phone-inner {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--heading);
    display: flex;
    gap: 0.35rem;
    align-items: center;
    white-space: nowrap;
}

.header-phone-inner a { color: inherit; text-decoration: none; }
.header-phone-inner i { color: var(--primary); font-size: 0.8rem; }

.header-actions { display: flex; align-items: center; gap: 0.45rem; }

.btn-lang {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    padding: 0.3rem 0.65rem;
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--heading);
}

.btn-book-header {
    padding: 0.45rem 1rem !important;
    font-size: 0.78rem !important;
    font-weight: 600 !important;
}

.navbar-toggler {
    border: 1px solid var(--border);
    padding: 0;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--bg-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(91, 159, 237, 0.25);
    outline: none;
}

.navbar-toggler[aria-expanded="true"] {
    background: var(--primary-light);
    border-color: var(--primary);
}

.navbar-toggler-icon { filter: none; width: 1.15em; height: 1.15em; }

.site-header .navbar > .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem;
}

.site-header .navbar-brand {
    flex: 1;
    min-width: 0;
    margin-right: 0;
}

.header-mobile-toolbar {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-shrink: 0;
    margin-left: auto;
}

.btn-lang-mobile {
    min-height: 42px;
    padding: 0.35rem 0.65rem !important;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    border-radius: 12px !important;
}

/* ── Buttons ── */
.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white) !important;
    border: none;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.55rem 1.25rem;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(91, 159, 237, 0.3);
}

.btn-primary-custom:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(91, 159, 237, 0.4);
    color: var(--white) !important;
}

.btn-secondary-custom {
    background: var(--secondary);
    color: var(--text) !important;
    border: none;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.55rem 1.25rem;
}

.btn-secondary-custom:hover {
    background: #e6ac00;
    transform: translateY(-1px);
    color: var(--text) !important;
}

.btn-outline-primary-custom {
    border: 1.5px solid var(--primary);
    color: var(--primary-dark) !important;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.82rem;
    background: var(--white);
    padding: 0.45rem 1rem;
}

.btn-outline-primary-custom:hover {
    background: var(--primary);
    color: var(--white) !important;
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white) !important;
    border: none;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.55rem 1.25rem;
}

.btn-whatsapp:hover {
    background: #1fb855;
    color: var(--white) !important;
    transform: translateY(-1px);
}

.btn-lg { padding: 0.7rem 1.5rem; font-size: 0.9rem; }
.btn-sm { padding: 0.35rem 0.85rem; font-size: 0.78rem; }
.btn-book-header { white-space: nowrap; }

/* ── Main ── */
.site-main { padding-top: calc(var(--topbar-height) + var(--header-height) + env(safe-area-inset-top, 0px)); }
.page-home .site-main { padding-top: 0; }

/* ── Home Unified Flow (hero → cars → services) ── */
.home-unified-zone {
    background: transparent;
    padding-bottom: 1.25rem;
}

.home-unified-zone .booking-section {
    margin-top: 1.1rem;
    padding-bottom: 0.25rem;
}

.home-flow-inner {
    padding-top: calc(var(--qs-bar-height) * 0.62 + 6px);
}

.home-block + .home-block {
    margin-top: 1rem;
}

/* ── Hero — Image Only ── */
.hero-slider-section {
    position: relative;
    margin-top: calc(var(--topbar-height) + var(--header-height) + env(safe-area-inset-top, 0px));
    background: transparent;
    padding-bottom: calc(var(--qs-bar-height) * 0.38);
}

.hero-image-only .hero-swiper {
    width: 100%;
    height: auto !important;
    min-height: 0;
    max-height: none;
    background: #E8EDF5;
    overflow: hidden;
}

.hero-image-only .swiper-wrapper,
.hero-image-only .swiper-slide {
    height: auto !important;
}

.hero-image-only .swiper-slide picture {
    display: block;
    width: 100%;
    line-height: 0;
}

.hero-image-only .swiper-slide img {
    width: 100%;
    height: auto;
    max-height: min(52vh, 420px);
    display: block;
    object-fit: contain;
    object-position: center;
    vertical-align: top;
}

.hero-overlay,
.hero-content-wrap,
.hero-promo-card { display: none !important; }

.quick-search-wrap {
    position: absolute;
    bottom: 0;
    left: 0; right: 0;
    z-index: 20;
    transform: translateY(38%);
    pointer-events: none;
}

.quick-search-wrap .container,
.quick-search-wrap form {
    pointer-events: auto;
}

.quick-search-bar {
    display: flex;
    align-items: stretch;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.1);
    border: 1px solid #E5E7EB;
    overflow: hidden;
    min-height: var(--qs-bar-height);
}

.qs-field {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.85rem 1rem;
    min-width: 0;
    transition: background 0.2s ease;
    cursor: text;
}

.qs-field:focus-within {
    background: #E7F3FF;
}

.qs-field > i {
    color: #9CA3AF;
    font-size: 0.95rem;
    flex-shrink: 0;
    width: 16px;
    text-align: center;
    margin-top: 1.15rem;
}

.qs-field-inner { min-width: 0; flex: 1; }

.qs-field-inner label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: #5B9FED;
    margin-bottom: 0.28rem;
    line-height: 1.2;
    letter-spacing: 0.01em;
}

.qs-field-inner input,
.qs-field-inner select {
    width: 104%;
    border: none;
    background: transparent;
    font-size: 1.02rem;
    font-weight: 700;
    color: #0F172A;
    font-family: var(--font);
    padding: 0;
    outline: none;
    line-height: 1.35;
}

.qs-field-inner input::placeholder {
    color: rgba(148, 163, 184, 0.45);
    font-weight: 500;
}

.qs-field-inner select {
    color: #0F172A;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%235B9FED' d='M1 1l4 4 4-4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    padding-right: 1rem;
}

.qs-field-inner select:invalid {
    color: rgba(148, 163, 184, 0.5);
    font-weight: 500;
}

.qs-divider {
    width: 1px;
    background: #E5E7EB;
    align-self: stretch;
    margin: 0.9rem 0;
    flex-shrink: 0;
}

.qs-search-btn {
    background: #5B9FED;
    color: #fff;
    border: none;
    padding: 0 1.65rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-shrink: 0;
    font-size: 0.92rem;
    font-weight: 700;
    font-family: var(--font);
    cursor: pointer;
    transition: background 0.2s ease;
    min-width: 148px;
    border-radius: 0 12px 12px 0;
    letter-spacing: 0.01em;
}

.qs-search-btn:hover {
    background: #4A8FDD;
}

.hero-nav {
    color: var(--primary-dark) !important;
    background: var(--white) !important;
    width: 38px !important; height: 38px !important;
    border-radius: 50% !important;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    top: 50%; margin-top: -19px;
}

.hero-nav::after { font-size: 0.85rem !important; }
.hero-pagination { bottom: calc(var(--qs-bar-height) * 0.38 + 12px) !important; }

.hero-pagination .swiper-pagination-bullet {
    background: var(--primary); opacity: 0.3; width: 7px; height: 7px;
}

.hero-pagination .swiper-pagination-bullet-active {
    opacity: 1; background: var(--primary); width: 20px; border-radius: 4px;
}

/* ── Glass Card ── */
.glass-card {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/* ── COMPACT BOOKING FORM ── */
.booking-section {
    margin-top: 1.25rem;
    position: relative;
    z-index: 10;
    padding-bottom: 1.5rem;
    background: transparent;
}

.booking-section-wizard {
    padding-top: 1.25rem;
    margin-top: 0.75rem;
    padding-bottom: 2rem;
}

.booking-section-wizard .container {
    max-width: 1180px;
}

/* ── Booking Home — full redesign ── */
.booking-home-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 2rem;
    align-items: start;
    background: #fff;
    border: 1px solid #E8EDF5;
    border-radius: 22px;
    padding: 1.75rem 1.85rem;
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.08);
}

.booking-home-kicker {
    margin: 0 0 0.4rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #3B82F6;
}

.booking-home-title {
    margin: 0 0 0.55rem;
    font-size: clamp(1.65rem, 3vw, 2rem);
    font-weight: 700;
    color: #1D4ED8;
    line-height: 1.15;
}

.booking-home-desc {
    margin: 0 0 1.15rem;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #444;
    max-width: 420px;
}

.booking-home-benefits {
    background: #fff;
    border: 1px solid #EEF2F7;
    border-radius: 16px;
    padding: 1.1rem 1.15rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
}

.booking-home-benefits-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.booking-home-benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.88rem;
    font-weight: 500;
    color: #111;
    line-height: 1.45;
}

.booking-home-benefit-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #EFF6FF;
    color: #3B82F6;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.82rem;
}

.booking-home-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    margin-top: 1rem;
    padding-top: 0.9rem;
    border-top: 1px solid #EEF2F7;
}

.booking-home-contact a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.84rem;
    font-weight: 500;
    color: #333;
    text-decoration: none;
}

.booking-home-contact a i {
    color: #3B82F6;
    font-size: 0.8rem;
}

.booking-home-contact a:hover {
    color: #1D4ED8;
}

.booking-home-visual {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(15, 23, 42, 0.1);
}

.booking-home-visual img {
    width: 100%;
    height: auto;
    min-height: 160px;
    max-height: 220px;
    object-fit: cover;
    display: block;
}

.booking-home-form-card {
    background: #fff;
    border: 1px solid #E8EDF5;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
}

.booking-home-form-head {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.95rem 1.1rem;
    background: linear-gradient(135deg, #2563EB 0%, #3B82F6 100%);
    color: #fff;
}

.booking-home-form-head i {
    font-size: 1.05rem;
    opacity: 0.95;
}

.booking-home-form-head span {
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.booking-home-form-body {
    padding: 1.35rem 1.5rem 1.5rem;
}

.booking-home-stepper {
    margin-bottom: 1.15rem;
}

.booking-home-form-body .booking-step-heading {
    font-size: 1.15rem;
    margin-bottom: 1.1rem;
}

.booking-home-form-body .booking-form-wizard .booking-field label {
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
}

.booking-home-form-body .booking-form-wizard .booking-field input,
.booking-home-form-body .booking-form-wizard .booking-field select,
.booking-home-form-body .booking-form-wizard .booking-field textarea {
    background: #F8FAFC;
    border: 1.5px solid #E8E0C8;
    border-radius: 12px;
    font-size: 0.95rem;
    padding: 0.72rem 0.9rem;
    min-height: 50px;
}

.booking-home-form-body .booking-form-wizard .booking-row-2 {
    gap: 1rem;
    margin-bottom: 1rem;
}

.booking-home-form-body .booking-step-nav {
    margin-top: 1.15rem;
    padding-top: 1rem;
}

.booking-home-form-body .btn-step-next {
    background: linear-gradient(135deg, #2563EB, #3B82F6);
    border: none;
    color: #fff;
    border-radius: 12px;
    font-weight: 600;
    padding: 0.7rem 1.6rem !important;
    min-height: 50px;
}

.booking-ref-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 1.75rem;
    align-items: start;
    background: #fff;
    border: 1px solid #EEF2F7;
    border-radius: 20px;
    padding: 1.35rem 1.5rem;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.07);
}

.booking-ref-intro {
    margin-bottom: 1rem;
}

.booking-ref-kicker {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--primary);
    margin-bottom: 0.35rem;
}

.booking-ref-layout .booking-side-title {
    font-size: clamp(1.45rem, 2.8vw, 1.85rem);
    margin-bottom: 0.4rem;
}

.booking-ref-layout .booking-side-desc {
    font-size: 0.86rem;
    max-width: 100%;
    margin-bottom: 0;
    color: #444;
}

.booking-ref-benefits {
    margin-bottom: 0.75rem;
    border-radius: 14px;
    padding: 1rem 1.05rem;
    background: #F8FAFC;
    border-color: #F0E6C8;
    box-shadow: none;
}

.booking-ref-benefits .booking-benefits-list li {
    font-size: 0.84rem;
}

.booking-ref-visual {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
}

.booking-ref-visual img {
    width: 100%;
    max-height: 180px;
    object-fit: cover;
    display: block;
}

.booking-ref-card {
    border-radius: 16px;
    border: 1px solid #E8EDF5;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
}

.booking-ref-card .booking-wizard-card-head {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1rem;
    background: linear-gradient(135deg, #0D1B52 0%, #1e40af 55%, #3B82F6 100%);
}

.booking-ref-card .booking-wizard-card-head i {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.booking-ref-card .booking-wizard-card-head span {
    font-style: normal;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.01em;
}

.booking-ref-stepper {
    flex-direction: column;
    gap: 0.65rem;
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 1rem;
}

.booking-stepper-track {
    height: 4px;
    background: #EEF2F7;
    border-radius: 4px;
    overflow: hidden;
}

.booking-stepper-progress {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #3B82F6, #5B9FED);
    border-radius: 4px;
    transition: width 0.35s ease;
}

.booking-stepper-items {
    display: flex;
    justify-content: space-between;
    gap: 0.35rem;
}

.booking-ref-stepper .booking-stepper-item {
    flex: 1;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    gap: 0.25rem;
}

.booking-ref-stepper .booking-stepper-item .step-num {
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
}

.booking-ref-stepper .booking-stepper-item .step-label {
    font-size: 0.75rem;
    white-space: normal;
    line-height: 1.25;
}

/* ── Booking Wizard (home) ── */
.booking-wizard-wrap:not(.booking-ref-layout) {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: start;
    border: 1px solid #1D4ED8;
}

.booking-ref-layout.booking-wizard-wrap {
    display: grid;
}

.booking-ref-layout .booking-wizard-left {
    padding: 0;
}

.booking-wizard-left {
    padding: 0.5rem 0.25rem 0;
}

.booking-kicker {
    display: block;
    font-size: 0.8rem;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 0.35rem;
}

.booking-side-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--heading);
    letter-spacing: 0.02em;
    margin: 0 0 0.5rem;
    line-height: 1.15;
}

.booking-side-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 1rem;
    max-width: 380px;
}

.booking-info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.booking-info-list li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    background: #fff;
    border-radius: 10px;
    padding: 0.6rem 0.75rem;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.05);
    border: 1px solid #EEF2F7;
}

.booking-info-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.85rem;
}

.booking-info-list strong {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--heading);
}

.booking-info-list a,
.booking-info-list span {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-decoration: none;
}

.booking-info-list a:hover { color: var(--primary); }

.booking-side-visual {
    margin-top: 0;
    text-align: center;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
}

.booking-wizard-left .booking-side-visual img {
    width: 100%;
    max-width: none;
    height: auto;
    min-height: 160px;
    object-fit: cover;
    margin: 0;
    display: block;
    border-radius: 16px;
}

.booking-wizard-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.1);
    padding: 0;
    border: 1px solid #E8EDF5;
    overflow: hidden;
}

.booking-wizard-card-head {
    background: linear-gradient(90deg, #5B9FED 0%, #3D8AE8 50%, #2D6CB5 100%);
    padding: 0.9rem 1.1rem;
    text-align: center;
}

.booking-wizard-card-head span {
    color: #fff;
    font-size: 1.05rem;
    font-style: italic;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.booking-wizard-card-body {
    padding: 1.5rem 1.6rem 1.6rem;
    background: #fff;
}

.booking-ref-card .booking-wizard-card-body {
    padding: 1.5rem 1.65rem 1.65rem;
}

.booking-stepper {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #F1F5F9;
}

.booking-stepper-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    flex: 1;
    min-width: 0;
    opacity: 0.5;
    transition: var(--transition);
}

.booking-stepper-item.active,
.booking-stepper-item.done {
    opacity: 1;
}

.booking-stepper-item .step-num {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #E8EDF5;
    color: #888;
    font-size: 0.82rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.booking-stepper-item.active .step-num,
.booking-stepper-item.done .step-num {
    background: var(--primary);
    color: #fff;
}

.booking-stepper-item .step-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: #888;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.booking-stepper-item.active .step-label {
    color: #000;
    font-weight: 700;
}

.booking-stepper-line {
    flex: 0 0 20px;
    height: 2px;
    background: #EEF2F7;
    border-radius: 2px;
}

.booking-step-heading {
    font-size: 1.2rem;
    font-weight: 700;
    color: #000000;
    margin: 0 0 1.15rem;
}

.booking-form-wizard .booking-field label {
    font-size: 0.92rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.45rem;
    display: block;
}

.booking-form-wizard .booking-field input,
.booking-form-wizard .booking-field select,
.booking-form-wizard .booking-field textarea {
    background: #F8FAFC;
    border: 1.5px solid #E2E8F0;
    border-radius: 12px;
    font-size: 1rem;
    color: #000;
    padding: 0.75rem 0.9rem;
    min-height: 48px;
    width: 100%;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.booking-form-wizard .booking-field textarea {
    min-height: 100px;
    padding-top: 0.75rem;
}

.booking-form-wizard .booking-field input:focus,
.booking-form-wizard .booking-field select:focus,
.booking-form-wizard .booking-field textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(91, 159, 237, 0.12);
}

.booking-form-wizard .booking-field input::placeholder,
.booking-form-wizard .booking-field textarea::placeholder {
    color: #999;
}

.booking-step-panel {
    display: none !important;
}

.booking-step-panel.active {
    display: block !important;
    animation: fadeStep 0.3s ease;
}

@keyframes fadeStep {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

.booking-form-wizard .booking-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.booking-form-wizard .booking-row-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.85rem;
    margin-bottom: 0.85rem;
}

.booking-form-wizard .booking-field {
    min-width: 0;
    flex: none;
}

.booking-step-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 0.85rem;
    border-top: 1px solid #EEF2F7;
}

.booking-step-nav[hidden] {
    display: none !important;
}

.btn-outline-step {
    background: #fff;
    border: 1.5px solid #E2E8F0;
    color: var(--text);
    border-radius: 12px;
    padding: 0.65rem 1.15rem;
    font-size: 0.92rem;
    font-weight: 600;
    font-family: var(--font);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: var(--transition);
    min-height: 48px;
}

.btn-outline-step:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-step-next {
    margin-left: auto;
    padding: 0.65rem 1.5rem !important;
    font-size: 0.95rem !important;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.booking-actions-final {
    margin-top: 0.75rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.booking-actions-final .btn {
    flex: 1;
    min-width: 140px;
    justify-content: center;
}

.booking-card {
    background: var(--white);
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
    border: none;
    padding: 1.1rem 1.25rem;
}

.booking-card-header {
    text-align: center;
    margin-bottom: 0.85rem;
}

.booking-card-header h2 {
    font-weight: 600;
    font-size: 1rem;
    color: var(--heading);
    margin-bottom: 0.1rem;
}

.booking-card-header p { color: var(--text-muted); margin: 0; font-size: 0.75rem; }

.booking-row {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.booking-field label {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.68rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 0.2rem;
    text-transform: none;
    letter-spacing: 0;
}

.booking-field input,
.booking-field select,
.booking-field textarea {
    width: 100%;
    padding: 0.5rem 0.65rem;
    border: 1px solid #E8EDF5;
    border-radius: 8px;
    font-size: 0.8rem;
    font-family: var(--font);
    background: #FAFBFC;
    color: var(--text);
    transition: var(--transition);
}

.page-home .booking-extra {
    display: none;
}

.page-home .services-checkboxes-compact h6 {
    font-size: 0.7rem;
    margin-bottom: 0.4rem;
    text-transform: none;
}

.page-home .booking-field-full textarea {
    min-height: 48px;
}

.booking-field {
    flex: 1;
    min-width: 140px;
    max-width: 100%;
}

.booking-field select {
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.booking-field-full { width: 100%; flex: none; margin-top: 0.5rem; }

.booking-field label i { color: var(--primary); font-size: 0.65rem; }

.booking-field input:focus,
.booking-field select:focus,
.booking-field textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(91, 159, 237, 0.12);
}

.booking-field textarea { resize: vertical; min-height: 60px; }

/* Service Pills */
.services-checkboxes-compact { margin: 0.75rem 0; }

.services-checkboxes-compact h6 {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.5rem;
}

.services-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.service-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.65rem;
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--text);
}

.service-pill:hover { border-color: var(--primary); background: var(--primary-light); }

.service-pill input { display: none; }

.service-pill:has(input:checked) {
    border-color: var(--primary);
    background: var(--primary-light);
    color: var(--heading);
}

.pill-icon { font-size: 0.75rem; display: flex; }
.pill-text { white-space: nowrap; }

.booking-actions {
    display: flex;
    gap: 0.6rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.booking-actions .btn { flex: 1; min-width: 160px; justify-content: center; display: inline-flex; align-items: center; gap: 0.4rem; }

/* ── Fleet Home Block (Reference) ── */
.section-ref,
.fleet-home-block,
.services-section-ref {
    background: transparent;
}

.fleet-home-block,
.services-section-ref {
    padding: 0;
}

.fleet-home-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 210px;
    gap: 0 0.85rem;
    align-items: start;
}

.fleet-col-main,
.fleet-col-side {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.fleet-headers {
    min-height: 26px;
    margin-bottom: 0.55rem;
    display: flex;
    align-items: flex-end;
}

.fleet-headers .section-header-inline { margin-bottom: 0; width: 100%; }

.how-title {
    font-size: 22px;
    font-weight: 600;
    color: #1E293B;
    margin-left: 0px;
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    letter-spacing: -0.01em;
    white-space: nowrap;
}

.how-title i { color: var(--primary); font-size: 20px; }

.section-header-inline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 0.55rem;
    min-width: 0;
}

.section-header-inline h2,
.section-title-ref {
    font-size: 1.28rem;
    font-weight: 700;
    color: #000000;
    margin: 0;
    letter-spacing: -0.02em;
    flex: 1;
    min-width: 0;
}

.view-all-link {
    font-size: 0.75rem;
    font-weight: 500;
    margin-right: 0;
    flex-shrink: 0;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    text-decoration: none;
    white-space: nowrap;
}

.view-all-link:hover { color: var(--primary-dark); }

/* Cars slider with external nav */
.cars-slider-wrap {
    position: relative;
    display: flex;
    align-items: stretch;
    gap: 0.5rem;
}

.cars-nav {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid #5B9FED;
    background: #EFF6FF;
    color: #2563EB;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    cursor: pointer;
    font-size: 0.72rem;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.18);
    transition: var(--transition);
    z-index: 2;
    align-self: center;
}

.cars-nav:hover:not(:disabled):not(.swiper-button-disabled) {
    background: #5B9FED;
    color: #fff;
    border-color: #5B9FED;
    box-shadow: 0 6px 18px rgba(37, 99, 235, 0.28);
    transform: scale(1.05);
}

.cars-nav-next {
    background: #5B9FED;
    color: #fff;
    border-color: #4A8FDD;
}

.cars-nav-next:hover:not(:disabled):not(.swiper-button-disabled) {
    background: #4A8FDD;
    border-color: #3B7FCD;
}

.cars-nav:disabled,
.cars-nav.swiper-button-disabled,
.cars-nav[aria-disabled="true"] {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
    background: #f1f5f9;
    color: #94a3b8;
    border-color: #e2e8f0;
    box-shadow: none;
}

.cars-slider-wrap .fleet-swiper-ref {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    margin: 0 -1px;
}

.fleet-swiper-ref .swiper-wrapper {
    align-items: stretch;
}

/* Reference Car Cards */
.car-card-ref {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 14px;
    border: 1px solid #DBEAFE;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.05);
    transition: var(--transition);
    height: 100%;
}

.car-card-ref-media {
    display: block;
    text-decoration: none;
    color: inherit;
    flex: 1;
}

.car-card-ref:hover {
    box-shadow: 0 10px 28px rgba(91, 159, 237, 0.14);
    transform: translateY(-3px);
    border-color: #BFDBFE;
}

.car-card-ref-img {
    height: 200px;
    background: #F1F5F9;
    display: block;
    padding: 0;
    margin: 0;
    border-radius: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.car-card-ref-img img {
    width: 100%;
    height: 200px;
    max-height: none;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.car-card-ref-body { padding: 0.6rem 0.7rem 0.5rem; }

.car-card-ref-body h3 {
    font-size: 0.82rem;
    font-weight: 700;
    color: #0F172A;
    margin: 0 0 0.04rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.car-ref-cat {
    font-size: 0.68rem;
    color: #94A3B8;
    font-weight: 400;
    display: block;
    margin-bottom: 0.45rem;
}

.car-ref-specs {
    display: flex;
    gap: 0.6rem;
    font-size: 0.66rem;
    color: #64748B;
    font-weight: 400;
    margin-bottom: 0.55rem;
}

.car-ref-specs i { color: #94A3B8; margin-right: 0.15rem; font-size: 0.62rem; }

.car-ref-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.15rem;
    border-top: 1px solid #F1F5F9;
}

.car-ref-price {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0F172A;
}

.car-ref-price small {
    font-size: 0.62rem;
    font-weight: 400;
    color: #94A3B8;
}

.car-ref-rating {
    font-size: 0.72rem;
    font-weight: 600;
    color: #F59E0B;
    display: inline-flex;
    align-items: center;
    gap: 0.15rem;
}

.car-ref-rating i { font-size: 0.65rem; }

.car-ref-actions {
    padding: 0 0.7rem 0.7rem;
}

.car-ref-actions .btn-book-car-home {
    width: 100%;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.45rem 0.65rem;
    border-radius: 10px;
}

.fleet-swiper-ref .swiper-slide {
    height: auto;
    padding: 0 2px;
}

.fleet-swiper-ref .swiper-button-prev,
.fleet-swiper-ref .swiper-button-next { display: none; }

/* How It Works Sidebar */
.how-it-works-sidebar {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    margin-top: 10px;
    box-shadow: none;
}

.how-it-works-sidebar h3 { display: none; }

.how-it-works-sidebar h3 i { color: var(--primary); font-size: 0.75rem; }

.how-step {
    display: flex;
    gap: 0.5rem;
    padding: 0.38rem 0;
    border-bottom: none;
}

.how-step-icon {
    width: 30px; height: 30px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.7rem;
    flex-shrink: 0;
}

.how-step strong {
    display: block;
    font-size: 0.76rem;
    font-weight: 600;
    color: #1E293B;
    line-height: 1.25;
}

.how-step span {
    font-size: 0.66rem;
    color: #94A3B8;
    font-weight: 400;
    line-height: 1.35;
}

/* ── Services — reference strip + trust banner ── */
.services-block {
    margin-top: 0.25rem;
}

.services-block .section-title-ref {
    margin-bottom: -2.7rem;
    font-size: 1.22rem;
    font-weight: 700;
    color: #000;
    letter-spacing: -0.01em;
}

.services-inner-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.55rem;
    align-items: center;
}

.services-usp-strip {
    flex: 1 1 52%;
    min-width: 0;
    display: flex;
    gap: 0;
    align-items: stretch;
    background: #fff;
    border: 1px solid #d5e3f9;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.05);
    min-height: 80px;
    margin-top: 70px;

}

.service-compact-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    flex: 1 1 0;
    min-width: 0;
    background: transparent;
    border: none;
    border-right: 1px solid #EEF2F7;
    border-radius: 0;
    padding: 0.7rem 0.6rem;
    transition: background 0.2s ease;
    min-height: 80px;
    box-shadow: none;
    text-align: left;
}

.service-compact-card:last-child {
    border-right: none;
}

.service-compact-card:hover {
    background: #F8FBFF;
}

.services-block .svc-icon-wrap {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.82rem;
}

.services-block .svc-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
    flex: 1;
    gap: 0.15rem;
    justify-content: center;
}

.services-block .svc-text strong {
    font-size: 0.78rem;
    font-weight: 700;
    color: #000000;
    line-height: 1.25;
    display: block;
}

.services-block .svc-text span {
    font-size: 0.66rem;
    color: #666666;
    font-weight: 400;
    line-height: 1.35;
    display: block;
}

.trust-image-col {
    flex: 0 0 46%;
    min-width: 300px;
    max-width: 560px;
    display: flex;
    align-items: stretch;
    justify-content: center;
    overflow: hidden;
    border-radius: 14px;
    min-height: 112px;
    align-self: center;
}

.trust-stars-row {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex-wrap: wrap;
}

.trust-only-img {
    width: 100%;
    height: 100%;
    min-height: 112px;
    object-fit: contain;
    object-position: center;
    display: block;
    border-radius: 14px;
}

.trust-banner-card {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 112px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.15);
}

.trust-banner-overlay {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 50%;
    background: linear-gradient(135deg, #0D1B52 0%, #1e40af 100%);
    padding: 0.85rem 0.75rem;
    color: #fff;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trust-banner-overlay h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 0.22rem;
    line-height: 1.2;
    color: #fff;
}

.trust-banner-overlay p {
    font-size: 0.68rem;
    opacity: 0.95;
    margin: 0 0 0.42rem;
    line-height: 1.35;
    color: #fff;
}

.trust-stars-row i {
    color: #FFC107;
    font-size: 0.62rem;
}

.trust-stars-row span {
    font-size: 0.62rem;
    font-weight: 600;
    margin-left: 0.15rem;
    color: #fff;
}

.trust-banner-photo {
    width: 100%;
    height: 100%;
    min-height: 112px;
    object-fit: contain;
    object-position: center;
    display: block;
    border-radius: 14px;
    background: #F1F5F9;
}

/* Offer — full width image only */
.offer-image-section {
    padding: 0;
    margin: 0;
    line-height: 0;
    background: transparent;
}

.offer-image-section picture,
.offer-image-section img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
}

/* Legacy form (contact page) */
.form-floating-custom { position: relative; margin-bottom: 0; }

.form-floating-custom > i {
    position: absolute; left: 12px; top: 50%;
    transform: translateY(-50%);
    color: var(--primary); z-index: 2; font-size: 0.8rem;
}

.form-floating-custom textarea ~ i { top: 14px; transform: none; }

.form-floating-custom input,
.form-floating-custom select,
.form-floating-custom textarea {
    width: 100%;
    padding: 0.65rem 0.75rem 0.65rem 2.4rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    background: var(--bg-white);
    transition: var(--transition);
    color: var(--text);
    font-family: var(--font);
}

.form-floating-custom input:focus,
.form-floating-custom select:focus,
.form-floating-custom textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(91, 159, 237, 0.1);
}

.form-floating-custom label {
    position: absolute; left: 2.4rem; top: 50%;
    transform: translateY(-50%);
    font-size: 0.8rem; color: var(--text-muted);
    pointer-events: none; transition: var(--transition);
    background: var(--bg-white); padding: 0 3px;
}

.form-floating-custom textarea ~ label { top: 14px; transform: none; }

.form-floating-custom input:focus ~ label,
.form-floating-custom input:not(:placeholder-shown) ~ label,
.form-floating-custom select:focus ~ label,
.form-floating-custom select:valid ~ label,
.form-floating-custom textarea:focus ~ label,
.form-floating-custom textarea:not(:placeholder-shown) ~ label {
    top: 0; font-size: 0.65rem; color: var(--primary);
}

.form-floating-custom input.is-invalid,
.form-floating-custom select.is-invalid,
.form-floating-custom textarea.is-invalid,
.booking-field input.is-invalid,
.booking-field select.is-invalid { border-color: #e74c3c; }

/* ── Sections ── */
.section { padding: 3.5rem 0; }
.bg-light-custom { background: var(--bg-soft); }

.section-header { margin-bottom: 2rem; }
.section-header h2 { font-weight: 700; color: var(--heading); font-size: 1.5rem; }
.section-header p { color: var(--text-muted); font-size: 0.9rem; }


/* ── Booking Wizard Head ── */
.booking-wizard-head {
    margin-bottom: 1.75rem;
}

.booking-wizard-head .booking-side-title {
    font-size: clamp(1.65rem, 3.5vw, 2.1rem);
    font-weight: 700;
    color: #000000;
    margin: 0 0 0.5rem;
}

.booking-wizard-head .booking-side-desc {
    font-size: 0.95rem;
    color: #333333;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

.booking-benefits-card {
    background: #fff;
    border: 1px solid #EEF2F7;
    border-radius: 16px;
    padding: 1.15rem 1.2rem;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
    margin-bottom: 0.85rem;
}

.booking-benefits-card h3 {
    font-size: 1.08rem;
    font-weight: 700;
    color: #000000;
    margin: 0 0 0.75rem;
}

.booking-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.booking-benefits-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.88rem;
    color: #111111;
    font-weight: 500;
    line-height: 1.4;
}

.booking-benefits-list i {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.82rem;
}

.booking-contact-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1.25rem;
    padding-top: 0.85rem;
    border-top: 1px solid #EEF2F7;
}

.booking-contact-strip a {
    font-size: 0.82rem;
    color: #333333;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    text-decoration: none;
    font-weight: 500;
}

.booking-contact-strip a:hover { color: var(--primary); }
.booking-contact-strip i { color: var(--primary); font-size: 0.8rem; }

/* ── Why Choose Us — credit card swiper ── */
.why-section-home {
    padding-top: 2.75rem;
    padding-bottom: 2.75rem;
    background: #fff;
}

.why-section-header h2 {
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.35rem;
}

.why-section-header p {
    font-size: 0.88rem;
    color: #444444;
}

.why-slider-wrap {
    position: relative;
    display: flex;
    align-items: stretch;
    gap: 0.3rem;
    overflow: visible;
    padding: 0.5rem 0 0.75rem;
}

.why-slider-wrap .why-swiper {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.why-slider-wrap .why-nav-btn {
    flex-shrink: 0;
    align-self: center;
}

.why-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: #2563EB;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
    transition: background 0.2s, transform 0.2s, opacity 0.2s;
}

.why-nav-btn:hover:not(:disabled):not(.swiper-button-disabled) {
    background: #1D4ED8;
    transform: scale(1.05);
}

.why-nav-btn:disabled,
.why-nav-btn.swiper-button-disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
    box-shadow: none;
}

.why-swiper .swiper-slide {
    height: auto;
    max-width: 340px;
    border: 1px solid;
    border-radius: 18px;
}

/* Why Choose Us — credit card style */
.why-cc-card {
    position: relative;
    aspect-ratio: 1.586 / 1;
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-cc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 36px rgba(37, 99, 235, 0.15);
}

.why-cc-photo {
    position: absolute;
    inset: 0;
    background-image: var(--why-bg);
    background-size: cover;
    background-position: center;
    opacity: 0.32;
    pointer-events: none;
}

.why-cc-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.78) 55%, rgba(255, 255, 255, 0.88) 100%);
    pointer-events: none;
}

.why-cc-content {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 1.1rem 1.15rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.5rem;
}

.why-cc-badge {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--why-accent);
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.08);
    flex-shrink: 0;
    align-self: flex-start;
}

.why-cc-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0.5rem 0 0.35rem;
}

.why-cc-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #0F172A;
    margin: 0 0 0.3rem;
    line-height: 1.3;
}

.why-cc-card p {
    font-size: 0.8rem;
    color: #64748B;
    margin: 0;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.why-cc-brand {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    align-self: flex-end;
    margin-top: auto;
}

/* ── Destinations Home Slider ── */
.destinations-section-home {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.dest-home-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.dest-home-header h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0F172A;
    margin: 0 0 0.25rem;
}

.dest-home-header p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin: 0;
}

.dest-slider-wrap {
    position: relative;
    display: flex;
    align-items: stretch;
    gap: 0.25rem;
}

.dest-slider-wrap .destinations-swiper-home {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.dest-card-ref {
    display: block;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border-radius: 14px;
    border: 1px solid #EEF2F7;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.05);
    transition: var(--transition);
    height: 100%;
}

.dest-card-ref:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(91, 159, 237, 0.14);
    border-color: #DBEAFE;
}

.dest-card-ref-img {
    height: 140px;
    overflow: hidden;
    background: #F1F5F9;
}

.dest-card-ref-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.dest-card-ref:hover .dest-card-ref-img img { transform: scale(1.04); }

.dest-card-ref-body {
    padding: 0.65rem 0.75rem 0.75rem;
}

.dest-card-ref-body h3 {
    font-size: 0.88rem;
    font-weight: 700;
    color: #0F172A;
    margin: 0 0 0.15rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dest-card-ref-body p {
    font-size: 0.72rem;
    color: #94A3B8;
    margin: 0 0 0.35rem;
}

.dest-card-rating {
    font-size: 0.72rem;
    font-weight: 600;
    color: #F59E0B;
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
}

.dest-card-rating i { font-size: 0.65rem; }

.destinations-swiper-home .swiper-slide {
    height: auto;
    padding: 0.15rem 0.25rem;
}

/* Why Cards */
.why-card {
    padding: 1.25rem;
    height: 100%;
    transition: var(--transition);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.why-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.why-icon {
    width: 48px; height: 48px;
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.why-card h4 { font-weight: 600; font-size: 0.95rem; color: var(--heading); margin-bottom: 0.35rem; }
.why-card p { color: var(--text-muted); margin: 0; font-size: 0.82rem; }

/* Car Cards */
.car-card {
    overflow: hidden;
    transition: var(--transition);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.car-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.car-card-img {
    position: relative;
    min-height: 170px;
    height: auto;
    overflow: hidden;
    background: #F8FAFC;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem;
}

.car-card-img img {
    width: 100%;
    height: auto;
    max-height: 190px;
    object-fit: contain;
    object-position: center;
    transition: transform 0.4s ease;
}

.car-card:hover .car-card-img img { transform: scale(1.03); }

.car-category {
    position: absolute; top: 10px; left: 10px;
    color: var(--white);
    padding: 1.2rem 0.6rem;
    border-radius: var(--radius-pill);
    font-size: 0.68rem;
    font-weight: 600;
}

.car-card-body { padding: 1rem; }
.car-card-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.5rem; }
.car-card-top h3 { font-size: 0.95rem; font-weight: 600; margin: 0; color: var(--heading); }
.car-rating { color: var(--secondary); font-weight: 600; font-size: 0.78rem; }

.car-specs { display: flex; gap: 0.75rem; flex-wrap: wrap; font-size: 0.75rem; color: var(--text-muted); margin-bottom: 0.75rem; }
.car-specs i { color: var(--primary); margin-right: 0.2rem; }

.car-specs-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem;
    font-size: 0.78rem; color: var(--text-muted); margin-bottom: 0.75rem;
}
.car-specs-grid i { color: var(--primary); }

.car-features-list { margin-bottom: 0.75rem; font-size: 0.78rem; }
.car-features-list .badge { margin: 0.1rem; background: var(--primary-light) !important; color: var(--heading) !important; font-weight: 500; }

.car-card-footer { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.4rem; }
.car-price { font-size: 1.25rem; font-weight: 700; color: var(--primary-dark); }
.car-price small { font-size: 0.7rem; font-weight: 500; color: var(--text-muted); }
.car-actions { display: flex; gap: 0.4rem; }

/* Services Compact (reference style) */
.services-row-wrap {
    display: flex;
    gap: 1rem;
    align-items: stretch;
}

.services-row-wrap .services-compact-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
}

.services-row-wrap .service-compact-card {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.65rem 0.75rem;
    transition: var(--transition);
}

.services-row-wrap .service-compact-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.svc-icon {
    width: 36px; height: 36px;
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.services-row-wrap .svc-text { display: flex; flex-direction: column; min-width: 0; }
.services-row-wrap .svc-text strong { font-size: 0.78rem; font-weight: 600; color: var(--heading); line-height: 1.3; }
.services-row-wrap .svc-text span { font-size: 0.68rem; color: var(--text-muted); }

/* Trust Banner */
.trust-banner {
    width: 280px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary), #7BB8FF);
    border-radius: var(--radius);
    padding: 1.25rem;
    color: var(--white);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trust-banner-light { min-height: 200px; }

.trust-banner h3 { font-weight: 700; font-size: 1rem; margin-bottom: 0.35rem; }
.trust-banner p { opacity: 0.9; margin-bottom: 0.75rem; font-size: 0.78rem; }

.trust-stars { display: flex; align-items: center; gap: 0.35rem; flex-wrap: wrap; }
.trust-stars i { color: var(--secondary); font-size: 0.75rem; }
.trust-stars span { font-size: 0.75rem; }

.trust-banner img {
    position: absolute;
    right: -15px; bottom: -15px;
    width: 120px; height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid rgba(255,255,255,0.3);
    opacity: 0.7;
}

/* Service Cards (pages) */
.service-card {
    padding: 1.25rem;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.service-card-lg { padding: 1.5rem; }

.service-icon {
    width: 50px; height: 50px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.service-card h5, .service-card h4 { font-weight: 600; font-size: 0.9rem; color: var(--heading); margin-bottom: 0.35rem; }
.service-card p { color: var(--text-muted); font-size: 0.78rem; margin-bottom: 0; }

/* Destinations */
.destination-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    min-height: 180px;
    height: auto;
    cursor: pointer;
    transition: var(--transition);
    background: #F8FAFC;
}

.destination-card-lg { min-height: 200px; }

.destination-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.destination-card img {
    width: 100%;
    height: 100%;
    object-position: center center;
    transition: transform 0.4s ease;
    display: block;
    background: #E8EEF5;
}

.destination-card:hover img { transform: scale(1.04); }

.destination-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 1.25rem;
    background: linear-gradient(transparent, rgba(45, 108, 181, 0.75));
    color: var(--white);
}

.destination-overlay h3 { font-weight: 700; font-size: 1rem; margin-bottom: 0.15rem; }
.destination-overlay p { font-size: 0.78rem; opacity: 0.9; margin: 0; }

.dest-rating {
    position: absolute; bottom: 1.25rem; right: 1.25rem;
    background: rgba(255,255,255,0.25);
    backdrop-filter: blur(6px);
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
}

.dest-rating i { color: var(--secondary); }

.destination-info {
    padding: 1rem;
    margin-top: -0.75rem;
    position: relative;
    z-index: 2;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.destination-info p { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 0.75rem; }

/* Testimonials — hidden (section removed) */
.testimonials-section,
.testimonials-swiper { display: none !important; }

.testimonial-card {
    padding: 1.5rem;
    height: 100%;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.quote-icon { font-size: 1.5rem; color: var(--primary-light); margin-bottom: 0.75rem; }

.testimonial-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.65;
}

.testimonial-author { display: flex; align-items: center; gap: 0.6rem; }

.author-avatar {
    width: 40px; height: 40px;
    background: linear-gradient(135deg, var(--primary), #7BB8FF);
    color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 600;
    font-size: 0.75rem;
}

.testimonial-author strong { display: block; font-size: 0.85rem; color: var(--heading); }
.testimonial-author span { font-size: 0.72rem; color: var(--text-muted); }
.testimonial-stars { margin-left: auto; color: var(--secondary); font-size: 0.72rem; }

/* Offer Banner */
.offer-banner {
    background: linear-gradient(135deg, var(--primary), #7BB8FF);
    border-radius: var(--radius);
    padding: 2rem;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    overflow: hidden;
}

.offer-content h2 { font-weight: 700; font-size: 1.35rem; margin-bottom: 0.35rem; }
.offer-content p { opacity: 0.9; margin-bottom: 1rem; font-size: 0.85rem; }

.offer-features { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1rem; font-size: 0.82rem; }
.offer-features i { color: var(--secondary); margin-right: 0.35rem; }
.offer-image img { width: 240px; border-radius: var(--radius); opacity: 0.85; }

/* Stats */
.stat-card { padding: 1rem; }
.stat-icon {
    width: 48px; height: 48px;
    background: var(--primary-light);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    margin: 0 auto 0.75rem;
}

.stat-number { font-size: 2rem; font-weight: 700; color: var(--heading); line-height: 1; }
.stat-label { color: var(--text-muted); font-size: 0.82rem; margin-top: 0.35rem; }

/* FAQ */
.faq-accordion .accordion-item {
    border: 1px solid var(--border);
    margin-bottom: 0.5rem;
    border-radius: var(--radius-sm) !important;
    overflow: hidden;
    background: var(--white);
}

.faq-accordion .accordion-button {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--heading);
    background: var(--white);
    padding: 1rem 1.25rem;
    box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: var(--primary-light);
    color: var(--heading);
}

.faq-accordion .accordion-body { color: var(--text-muted); padding: 1rem 1.25rem; line-height: 1.65; font-size: 0.85rem; }

/* CTA */
.cta-bar {
    background: linear-gradient(135deg, var(--primary), #7BB8FF);
    border-radius: var(--radius);
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-text h2 { color: var(--white); font-weight: 700; font-size: 1.25rem; margin-bottom: 0.35rem; }
.cta-text p { color: rgba(255,255,255,0.9); margin: 0; font-size: 0.85rem; }
.cta-buttons { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* Trust Badges Bar */
.trust-badges-bar {
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 1.25rem 0;
}

.trust-badges-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-muted);
}

.trust-badge-item i {
    color: var(--primary);
    font-size: 1rem;
    width: 32px; height: 32px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--primary-light), var(--bg));
    padding: 2.5rem 0;
    color: var(--heading);
    margin-top: calc(-1 * (var(--topbar-height) + var(--header-height)));
    padding-top: calc(var(--topbar-height) + var(--header-height) + 2.5rem);
    border-bottom: 1px solid var(--border);
}

.page-hero-sm { padding-bottom: 1.5rem; }
.page-hero h1 { font-weight: 700; font-size: 1.75rem; margin-bottom: 0.35rem; color: var(--heading); }
.page-hero p { color: var(--text-muted); margin: 0; font-size: 0.9rem; }

.breadcrumb { margin-bottom: 0.75rem; }
.breadcrumb-item a { color: var(--primary-dark); }
.breadcrumb-item.active { color: var(--heading); font-weight: 600; }
.breadcrumb-item + .breadcrumb-item::before { color: var(--text-muted); }

/* Car Detail */
.car-gallery-swiper { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.car-gallery-swiper img { width: 100%; height: auto; max-height: 360px; object-fit: contain; background: #F8FAFC; }

.car-info-block { padding: 1.25rem; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); }
.car-info-block h3, .car-info-block h4 { font-weight: 600; color: var(--heading); margin-bottom: 0.75rem; font-size: 1rem; }
.car-info-block h4 i { color: var(--primary); margin-right: 0.4rem; }

.specs-table .spec-row {
    display: flex; justify-content: space-between;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.85rem;
}

.feature-list { list-style: none; padding: 0; margin: 0; font-size: 0.85rem; }
.feature-list li { padding: 0.4rem 0; }
.feature-list i { color: #34C759; margin-right: 0.4rem; }

.car-price-card { padding: 1.5rem; text-align: center; top: 90px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); }
.price-display { font-size: 2rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 1rem; }
.price-display small { font-size: 0.85rem; color: var(--text-muted); }
.sticky-top-custom { position: sticky; }

/* About */
.about-content { padding: 1.5rem; line-height: 1.75; font-size: 0.9rem; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); }
.about-content h4 { color: var(--heading); font-weight: 600; margin-top: 1.25rem; }
.about-card { padding: 1.25rem; margin-bottom: 0.75rem; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); }
.about-card-icon {
    width: 42px; height: 42px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 0.75rem;
}

.value-card { padding: 1.5rem; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); }
.value-icon { font-size: 1.75rem; margin-bottom: 0.75rem; }

.journey-timeline { padding: 1.5rem; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); }
.timeline { margin-top: 1rem; }

.timeline-item {
    display: flex; gap: 1rem;
    padding: 0.75rem 0;
    border-left: 2px solid var(--primary);
    padding-left: 1.25rem;
    margin-left: 0.75rem;
    position: relative;
    font-size: 0.85rem;
}

.timeline-item::before {
    content: '';
    width: 10px; height: 10px;
    background: var(--secondary);
    border-radius: 50%;
    position: absolute;
    left: -6px; top: 1rem;
}

.timeline-item .year { font-weight: 700; color: var(--primary-dark); min-width: 45px; }

/* Contact */
.contact-form-card, .contact-info-card, .whatsapp-contact-card {
    padding: 1.5rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.contact-form-card h3 { font-weight: 600; color: var(--heading); margin-bottom: 1.25rem; font-size: 1.1rem; }

.contact-info-list { list-style: none; padding: 0; margin: 0; }
.contact-info-list li {
    padding: 0.6rem 0;
    display: flex; align-items: center; gap: 0.6rem;
    border-bottom: 1px solid var(--border);
    font-size: 0.85rem;
}

.contact-info-list i { color: var(--primary); width: 18px; }
.map-wrapper { overflow: hidden; padding: 0; border: 1px solid var(--border); border-radius: var(--radius); }

/* Footer */
.site-footer {
    background: linear-gradient(180deg, #E8F4FF 0%, var(--bg) 100%);
    color: var(--text);
    padding: 3rem 0 0;
    border-top: 1px solid var(--border);
}

.footer-brand { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.75rem; }
.footer-brand h4 { color: var(--heading); margin: 0; font-weight: 700; font-size: 1rem; }
.footer-about { font-size: 0.82rem; line-height: 1.65; margin-bottom: 1rem; color: var(--text-muted); }

.footer-social { display: flex; gap: 0.5rem; }

.footer-social a {
    width: 36px; height: 36px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary);
    transition: var(--transition);
    font-size: 0.85rem;
}

.footer-social a:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }

.site-footer h5 { color: var(--heading); font-weight: 600; margin-bottom: 1rem; font-size: 0.9rem; }

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.45rem; }
.footer-links a { color: var(--text-muted); font-size: 0.82rem; }
.footer-links a:hover { color: var(--primary-dark); }

.newsletter-form .form-control {
    background: var(--white);
    border: 1px solid var(--border);
    color: var(--text);
    border-radius: var(--radius-pill) 0 0 var(--radius-pill);
    padding: 0.6rem 1rem;
    font-size: 0.82rem;
}

.newsletter-form .form-control::placeholder { color: var(--text-muted); }

.footer-bottom {
    border-top: 1px solid var(--border);
    margin-top: 2rem;
    padding: 1.25rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.payment-icons { font-size: 1.5rem; display: flex; gap: 0.5rem; opacity: 0.6; color: var(--heading); }

.footer-credit {
    border-top: 1px solid var(--border);
    padding: 0.85rem 0 1rem;
    text-align: center;
}

.footer-credit p {
    margin: 0;
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.footer-credit a {
    color: var(--primary-dark);
    font-weight: 600;
    text-decoration: none;
}

.footer-credit a:hover {
    text-decoration: underline;
}

/* Swiper */
.swiper-button-prev, .swiper-button-next {
    color: var(--primary-dark) !important;
    background: var(--white);
    width: 38px !important; height: 38px !important;
    border-radius: 50%;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.swiper-button-prev::after, .swiper-button-next::after { font-size: 0.85rem !important; }

/* Mobile Bottom Nav — Floating App Style */
.mobile-bottom-nav {
    position: fixed;
    bottom: calc(var(--mobile-nav-gap) + env(safe-area-inset-bottom));
    left: 14px;
    right: 14px;
    width: auto;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow:
        0 8px 32px rgba(15, 23, 42, 0.1),
        0 2px 8px rgba(15, 23, 42, 0.05);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0.55rem 0.4rem;
    z-index: 1040;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 22px;
}

.mob-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
    color: #94A3B8;
    font-size: 0.62rem;
    font-weight: 600;
    padding: 0.35rem 0.45rem;
    min-width: 52px;
    border-radius: 14px;
    transition: var(--transition);
}

.mob-nav-item i { font-size: 1.2rem; }

.mob-nav-item.active {
    color: #2563EB;
    background: #EFF6FF;
}

.mob-nav-item.mob-nav-book {
    color: #fff;
    background: linear-gradient(135deg, #2563EB, #3B82F6);
    border-radius: 16px;
    padding: 0.5rem 0.7rem;
    margin-top: 0;
    min-width: 58px;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.4);
}

.mob-nav-item.mob-nav-book i { font-size: 1.25rem; }
.mob-nav-item.mob-nav-book span { color: #fff; font-weight: 700; }

/* Modal */
.success-icon { font-size: 3.5rem; color: #34C759; margin-bottom: 0.75rem; }
.error-icon { font-size: 3.5rem; color: #EF4444; margin-bottom: 0.75rem; }
.modal-error .modal-content { border-color: #FECACA; }
.modal-error #successModalTitle { color: #DC2626; }
.modal-alert-icon { margin-bottom: 0.75rem; }
.modal-content.glass-card { border: 1px solid var(--border); }

/* Loading */
.btn.loading { pointer-events: none; opacity: 0.7; }
.btn.loading::after {
    content: '';
    width: 14px; height: 14px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    display: inline-block;
    margin-left: 6px;
}

@keyframes spin { to { transform: rotate(360deg); } }

.page-home .site-header:not(.scrolled) {
    background: #fff;
    border-bottom: 1px solid #EEF2F7;
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1199.98px) {
    .trust-image-col { flex: 0 0 44%; min-width: 240px; min-height: 100px; }
    .booking-home-panel { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ── RESPONSIVE / MOBILE APP ── */
@media (max-width: 991.98px) {
    :root { --qs-bar-height: 320px; }

    body.header-sticky .site-header-wrap { box-shadow: var(--shadow-lg); }

    .site-header,
    .page-home .site-header:not(.scrolled) {
        background: #fff !important;
    }

    .site-header .brand-name,
    .page-home .site-header:not(.scrolled) .brand-name { color: var(--heading) !important; text-shadow: none !important; }
    .site-header .brand-tagline { color: var(--text-muted) !important; }
    .site-header .navbar-nav .nav-link { color: var(--text) !important; }
    .site-header .btn-lang { color: var(--heading); border-color: var(--border); background: var(--white); }
    .site-header .navbar-toggler-icon { filter: none; }

    body { padding-bottom: calc(var(--mobile-nav-height) + var(--mobile-nav-gap) + 20px + env(safe-area-inset-bottom)); }

    html, body {
        overflow-x: clip;
        max-width: 100vw;
    }

    .page-home .site-header-wrap,
    .site-header-wrap {
        padding-left: 0;
        padding-right: 0;
    }

    .hero-slider-section {
        margin-top: calc(var(--topbar-height) + var(--header-height) + env(safe-area-inset-top, 0px));
        padding-bottom: 0;
    }

    .hero-image-only .hero-swiper {
        height: auto !important;
        min-height: 0;
        border-radius: 0 0 18px 18px;
        overflow: hidden;
    }

    .hero-image-only .swiper-slide picture {
        display: block;
        width: 100%;
        aspect-ratio: 1280 / 1600;
        background: #E8EDF5;
    }

    .hero-image-only .swiper-slide img {
        width: 100%;
        height: 100%;
        min-height: 0;
        max-height: none;
        aspect-ratio: 1280 / 1600;
        object-fit: cover;
        object-position: center center;
    }

    .hero-nav {
        width: 32px !important;
        height: 32px !important;
        opacity: 0.9;
    }

    .quick-search-wrap {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        transform: none;
        margin: -1.15rem 10px 0;
        padding: 0;
        z-index: 20;
    }

    .quick-search-wrap .container {
        padding-left: 0;
        padding-right: 0;
        max-width: 100%;
    }

    .quick-search-bar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1px;
        border-radius: 16px;
        border: 1px solid #E2E8F0;
        box-shadow: 0 8px 28px rgba(15, 23, 42, 0.1);
        min-height: auto;
        overflow: hidden;
        background: #EEF2F7;
    }

    .qs-field,
    .qs-search-btn {
        background: #fff;
    }

    .qs-field {
        padding: 0.65rem 0.75rem;
        border: none;
    }

    .qs-field.qs-field-age {
        grid-column: 1 / -1;
    }

    .qs-divider {
        display: none;
    }

    .qs-field-inner label {
        font-size: 0.7rem;
        color: #5B9FED;
        font-weight: 600;
    }

    .qs-field-inner input,
    .qs-field-inner select {
        font-size: 0.88rem;
        font-weight: 700;
    }

    .qs-field-inner input::placeholder,
    .qs-field-inner select:invalid {
        color: rgba(148, 163, 184, 0.45);
        font-weight: 500;
    }

    .qs-search-btn {
        grid-column: 1 / -1;
        width: 100%;
        min-width: 100%;
        border-radius: 0 !important;
        padding: 0.85rem 1rem !important;
        font-size: 0.88rem;
        justify-content: center;
    }

    .hero-pagination {
        bottom: 12px !important;
    }

    .home-flow-inner {
        padding-top: 0.65rem;
    }
    .home-unified-zone .booking-section {
        margin-top: 0.85rem;
        width: 100%;
    }

    .home-unified-zone .booking-section .container,
    .booking-section-wizard > .container {
        width: 100%;
        max-width: 100% !important;
        padding-left: 10px;
        padding-right: 10px;
        margin-left: auto;
        margin-right: auto;
    }

    .booking-v2-panel,
    .booking-v2-panel.booking-wizard-wrap,
    .booking-wizard-wrap:not(.booking-ref-layout) {
        display: block !important;
        grid-template-columns: 1fr !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        border: none;
        box-shadow: none;
    }

    .booking-v2-form-col {
        grid-column: 1 / -1;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0;
    }

    .booking-v2-info {
        display: none !important;
    }

    .booking-v2-form-card {
        width: 100% !important;
        max-width: 100% !important;
        border-radius: 16px;
    }

    .booking-v2-form-head {
        padding: 0.9rem 5.5rem 0.9rem 1rem;
        min-height: 82px;
    }

    .bvf-head-main {
        min-width: 0;
        flex: 1;
    }

    .bvf-head-main h3 {
        font-size: 0.95rem;
        line-height: 1.25;
        word-break: break-word;
    }

    .bvf-head-main p {
        font-size: 0.65rem;
        line-height: 1.35;
    }

    .bvf-head-car {
        width: 80px;
        max-height: 58px;
        top: 50%;
        transform: translateY(-50%);
        right: 0.65rem;
    }

    .booking-form-ref,
    .booking-v2-form-body {
        width: 100%;
        max-width: 100%;
    }

    .home-unified-zone { overflow-x: clip; }
    .home-unified-zone .booking-section { margin-top: 0.85rem; }
    .home-block + .home-block { margin-top: 0.85rem; }

    .home-block.fleet-block,
    .home-block.services-block {
        background: #fff;
        border: 1px solid #EEF2F7;
        border-radius: 14px;
        padding: 0.75rem 0.5rem;
        box-shadow: 0 2px 16px rgba(15, 23, 42, 0.04);
    }

    .page-home .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    /* Popular Cars */
    .fleet-home-row { grid-template-columns: 1fr; gap: 0; }
    .fleet-col-main { min-width: 0; }
    .fleet-headers { min-height: auto; margin-bottom: 0.65rem; }
    .section-header-inline {
        flex-wrap: wrap;
        align-items: center;
    }
    .section-header-inline h2 {
        font-size: 1.15rem;
    }
    .view-all-link {
        font-size: 0.72rem;
    }
    .cars-slider-wrap {
        gap: 0.35rem;
        min-width: 0;
    }
    .cars-slider-wrap .fleet-swiper-ref {
        margin: 0;
    }
    .fleet-swiper-ref .swiper-slide {
        width: 100% !important;
        padding: 0;
        box-sizing: border-box;
    }
    .car-card-ref-img {
        height: auto;
        min-height: 210px;
        aspect-ratio: 4 / 3;
        background: #F8FAFC;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .car-card-ref-img img {
        width: 100%;
        height: 100%;
        max-height: none;
        object-fit: contain;
        object-position: center center;
    }
    .cars-nav { width: 30px; height: 30px; font-size: 0.6rem; }

    /* How It Works */
    .fleet-col-side .fleet-headers {
        display: flex;
        margin-top: 1rem;
        margin-bottom: 0.5rem;
    }
    .how-title {
        margin-top: 0;
        font-size: 1.1rem;
        white-space: normal;
    }
    .how-it-works-sidebar {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.5rem;
        padding: 0;
        margin-top: 0;
        background: transparent;
        border: none;
        box-shadow: none;
    }
    .how-step {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.45rem;
        padding: 0.75rem 0.65rem;
        background: #F8FAFC;
        border-radius: 14px;
        border: 1px solid #EEF2F7;
        min-width: 0;
    }
    .how-step-icon {
        width: 34px;
        height: 34px;
        font-size: 0.78rem;
    }
    .how-step strong { font-size: 0.78rem; line-height: 1.25; }
    .how-step span { font-size: 0.68rem; line-height: 1.35; }

    /* Add Services — 4 icons in one row, image below */
    .services-block .section-title-ref {
        margin-bottom: 0.65rem;
        margin-top: 0;
        font-size: 1.05rem;
    }

    .services-inner-row {
        flex-direction: column;
        overflow-x: visible;
        gap: 0.5rem;
        padding-bottom: 0;
        align-items: stretch;
    }

    .services-usp-strip {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        width: 100%;
        margin-top: 0;
        min-height: auto;
        border-radius: 12px;
        overflow: hidden;
        gap: 0;
        border: 1px solid #E2E8F0;
    }

    .service-compact-card {
        flex: 1 1 0;
        width: auto;
        min-width: 0;
        min-height: auto;
        padding: 0.55rem 0.2rem;
        border-right: 1px solid #EEF2F7;
        border-bottom: none;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.3rem;
        display: flex;
    }

    .service-compact-card:last-child {
        border-right: none;
    }

    .services-block .svc-icon-wrap {
        width: 30px;
        height: 30px;
        font-size: 0.75rem;
        border-radius: 8px;
    }

    .services-block .svc-text {
        align-items: center;
    }

    .services-block .svc-text strong {
        font-size: 0.58rem;
        line-height: 1.2;
        word-break: break-word;
    }

    .services-block .svc-text span {
        display: none;
    }

    .trust-image-col {
        flex: none;
        width: calc(100% + 1rem);
        margin-left: -0.5rem;
        margin-right: -0.5rem;
        min-width: 0;
        max-width: none;
        min-height: 0;
        aspect-ratio: unset;
        border-radius: 0 0 12px 12px;
        overflow: hidden;
        align-self: stretch;
        padding: 0;
        line-height: 0;
        background: transparent;
    }

    .trust-only-img {
        width: 100%;
        height: auto;
        min-height: 0;
        max-height: none;
        display: block;
        object-fit: contain;
        object-position: center;
        border-radius: 0;
    }

    .trust-banner-card {
        width: 100%;
        min-height: 0;
        height: auto;
        border-radius: 12px;
        overflow: hidden;
    }

    .trust-banner-photo {
        width: 100%;
        height: auto;
        min-height: 140px;
        object-fit: contain;
        object-position: center;
        display: block;
        background: #F1F5F9;
    }

    .booking-home-panel {
        grid-template-columns: 1fr;
        padding: 1.15rem 1.2rem;
        border-radius: 18px;
        gap: 1.25rem;
    }
    .booking-home-visual { display: none; }
    .booking-home-form-body { padding: 1.1rem 1.15rem 1.2rem; }
    .booking-wizard-card {
        border-radius: 14px;
        box-shadow: 0 4px 20px rgba(15, 23, 42, 0.07);
    }
    .booking-wizard-card-body { padding: 1.1rem 1.15rem 1.2rem; }
    .booking-form-wizard .booking-field input,
    .booking-form-wizard .booking-field select,
    .booking-form-wizard .booking-field textarea {
        font-size: 16px;
        padding: 0.72rem 0.85rem;
        min-height: 50px;
    }
    .booking-form-wizard .booking-row-2,
    .booking-form-wizard .booking-row-3 {
        grid-template-columns: 1fr;
    }
    .booking-stepper { margin-bottom: 0.85rem; }
    .btn-step-next { width: 100%; justify-content: center; }
    .booking-step-nav { flex-direction: column-reverse; gap: 0.45rem; }
    .booking-step-nav .btn-outline-step { width: 100%; justify-content: center; }
    .booking-actions-final { flex-direction: column; }
    .booking-actions-final .btn { width: 100%; }

    .booking-section { margin-top: 0.85rem; }
    .booking-card { padding: 1rem; border-radius: 12px; }
    .booking-card-header h2 { font-size: 0.95rem; }

    .booking-row { flex-direction: column; gap: 0.5rem; margin-bottom: 0.5rem; }
    .booking-field { min-width: 100%; }

    .services-pills {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 0.25rem;
        scrollbar-width: none;
    }
    .services-pills::-webkit-scrollbar { display: none; }
    .service-pill { flex-shrink: 0; }

    .section-ref { padding-left: 0; padding-right: 0; }
    .section { padding: 2.5rem 0; }
    .section-header h2 { font-size: 1.25rem; }

    .offer-image-section img { object-fit: contain; max-height: 280px; }

    .cta-bar { padding: 1.5rem; flex-direction: column; text-align: center; }
    .cta-buttons { justify-content: center; width: 100%; }
    .cta-buttons .btn { flex: 1; min-width: 140px; }

    .page-hero h1 { font-size: 1.4rem; }

    .car-card-footer { flex-direction: column; align-items: stretch; }
    .car-actions { width: 100%; }
    .car-actions .btn { flex: 1; text-align: center; }

    .booking-actions { flex-direction: column; }
    .booking-actions .btn { width: 100%; }

    .trust-badges-row { justify-content: center; gap: 0.75rem; }
    .trust-badge-item { font-size: 0.7rem; }
    .trust-badge-item i { width: 28px; height: 28px; font-size: 0.85rem; }

    .sticky-top-custom { position: relative; top: 0; }

    .destination-card { min-height: 160px; height: auto; aspect-ratio: 16 / 10; }
    .destination-card-lg { min-height: 160px; height: auto; }

    .navbar-collapse {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: auto;
        width: min(340px, 92vw);
        height: 100dvh !important;
        max-height: 100dvh !important;
        margin: 0;
        padding: 0;
        background: #fff;
        border-radius: 20px 0 0 20px;
        border: none;
        border-left: 1px solid #E2E8F0;
        box-shadow: -12px 0 48px rgba(15, 23, 42, 0.16);
        z-index: 1060;
        overflow: hidden;
        display: flex !important;
        flex-direction: column;
        transform: translateX(100%);
        transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.32s;
        visibility: hidden;
        pointer-events: none;
    }

    .navbar-collapse.show,
    .navbar-collapse.collapsing {
        display: flex !important;
        transform: translateX(0);
        visibility: visible;
        pointer-events: auto;
    }

    .navbar-collapse.nav-closing {
        transform: translateX(100%);
        visibility: hidden;
        pointer-events: none;
    }

    .mobile-nav-drawer-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: calc(1rem + env(safe-area-inset-top, 0px)) 1.15rem 1rem;
        border-bottom: 1px solid #EEF2F7;
        flex-shrink: 0;
        background: linear-gradient(180deg, #F8FAFC 0%, #fff 100%);
    }

    .mobile-nav-brand {
        display: flex;
        align-items: center;
        gap: 0.65rem;
        font-size: 1rem;
        font-weight: 700;
        color: #0F172A;
        letter-spacing: -0.02em;
    }

    .mobile-nav-logo {
        height: 36px;
        width: auto;
        object-fit: contain;
    }

    .mobile-nav-close {
        width: 42px;
        height: 42px;
        border: 1px solid #E2E8F0;
        border-radius: 12px;
        background: #fff;
        color: #64748B;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.15rem;
        cursor: pointer;
        transition: background 0.2s, color 0.2s, border-color 0.2s;
        flex-shrink: 0;
    }

    .mobile-nav-close:hover {
        background: #FEE2E2;
        color: #DC2626;
        border-color: #FECACA;
    }

    .navbar-collapse .navbar-nav {
        gap: 0.35rem;
        padding: 1rem 1rem 0.5rem;
        overflow-y: auto;
        flex: 1;
        -webkit-overflow-scrolling: touch;
    }

    .navbar-collapse .nav-item {
        width: 100%;
    }

    .navbar-collapse .nav-link {
        display: flex !important;
        align-items: center;
        gap: 1rem;
        padding: 0.95rem 1rem !important;
        border-radius: 14px;
        font-size: 1rem !important;
        font-weight: 600 !important;
        color: #334155 !important;
        border: 1px solid transparent;
    }

    .navbar-collapse .nav-link i {
        width: 42px;
        height: 42px;
        border-radius: 12px;
        background: #EFF6FF;
        color: #5B9FED;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
        flex-shrink: 0;
    }

    .navbar-collapse .nav-link span {
        flex: 1;
        line-height: 1.3;
    }

    .navbar-collapse .nav-link:hover,
    .navbar-collapse .nav-link.active {
        background: #EFF6FF !important;
        color: #2563EB !important;
        border-color: #DBEAFE;
    }

    .navbar-collapse .nav-link.active i {
        background: #5B9FED;
        color: #fff;
    }

    .navbar-collapse .nav-link.active::after {
        display: none;
    }

    .mobile-nav-quick {
        padding: 0.75rem 1rem 0.5rem;
        border-top: 1px solid #EEF2F7;
        display: flex;
        flex-direction: column;
        gap: 0.6rem;
        flex-shrink: 0;
        background: #F8FAFC;
    }

    .mobile-nav-phone {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.55rem;
        padding: 0.8rem 1rem;
        background: #fff;
        border: 1px solid #E2E8F0;
        border-radius: 12px;
        color: #0F172A;
        font-weight: 600;
        font-size: 0.92rem;
        text-decoration: none;
    }

    .mobile-nav-phone i {
        color: #5B9FED;
        font-size: 0.95rem;
    }

    .mobile-nav-quick .btn-whatsapp {
        min-height: 50px;
        border-radius: 12px;
        font-weight: 600;
        font-size: 0.92rem;
        justify-content: center;
    }

    .navbar-collapse .header-actions {
        margin-top: 0;
        padding: 0.5rem 1rem calc(1rem + env(safe-area-inset-bottom, 0px));
        border-top: none;
        display: flex;
        flex-direction: column;
        gap: 0;
        align-items: stretch;
        flex-shrink: 0;
        background: #F8FAFC;
    }

    .navbar-collapse .btn-book-header {
        width: 100%;
        justify-content: center;
        min-height: 52px;
        border-radius: 14px;
        font-size: 1rem;
        font-weight: 700;
        box-shadow: 0 4px 16px rgba(37, 99, 235, 0.28);
    }

    .navbar-collapse .lang-switcher {
        display: none !important;
    }

    body.header-sticky .navbar-collapse {
        top: 0;
        max-height: 100dvh !important;
    }

    body.nav-open::before {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(15, 23, 42, 0.45);
        z-index: 1055;
        backdrop-filter: blur(3px);
        -webkit-backdrop-filter: blur(3px);
    }

    body.nav-open {
        overflow: hidden;
    }

    body.nav-open .site-header-wrap {
        z-index: 1070;
    }

    body.nav-open .mobile-bottom-nav {
        z-index: 1070;
    }
}

@media (max-width: 575.98px) {
    .top-bar-email { font-size: 0.65rem; padding: 0.2rem 0.5rem; }
    .marquee-content { gap: 1.5rem; font-size: 0.68rem; }

    .services-section-ref .services-compact-grid { grid-template-columns: repeat(2, 1fr); }

    .stat-number { font-size: 1.65rem; }
    .car-card-img { min-height: 140px; height: auto; }

    .testimonial-card { padding: 1.15rem; }
    .fleet-swiper:not(.fleet-swiper-ref) .swiper-slide { width: 85% !important; }
}

@media (min-width: 992px) {
    .booking-row .booking-field { max-width: calc(33.33% - 0.4rem); }
    .booking-row:has(.booking-field:nth-child(4)) .booking-field { max-width: calc(20% - 0.48rem); }
}

.page-home .home-unified-zone {
    background: #fff;
}

/* ══════════════════════════════════════════════
   BOOKING V2 — Reference layout
   ══════════════════════════════════════════════ */
.booking-section-wizard {
    padding: 2rem 0 3rem;
    background: #fff;
}

.booking-v2-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
    gap: 2.25rem;
    align-items: start;
    background: #fff;
    border: 1px solid #E8EDF5;
    border-radius: 24px;
    padding: 2rem 2.15rem;
    box-shadow: 0 8px 40px rgba(15, 23, 42, 0.06);
    max-width: 100%;
    min-width: 0;
}

.booking-v2-form-col {
    min-width: 0;
    max-width: 100%;
}

.booking-v2-form-card {
    background: #fff;
    border: 1px solid #E8EDF5;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08);
    max-width: 100%;
}

.booking-v2-form-head {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.15rem 1.35rem;
    background: linear-gradient(135deg, #1D4ED8 0%, #3B82F6 100%);
    color: #fff;
    min-height: 100px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.booking-v2-kicker {
    margin: 0 0 0.45rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #2563EB;
}

.booking-v2-title {
    margin: 0 0 0.6rem;
    font-size: clamp(1.5rem, 2.8vw, 1.95rem);
    font-weight: 800;
    color: #0F172A;
    line-height: 1.2;
}

.booking-v2-title span {
    color: #2563EB;
    display: inline;
}

.booking-v2-desc {
    margin: 0 0 1.25rem;
    font-size: 0.92rem;
    line-height: 1.65;
    color: #555;
    max-width: 480px;
}

.booking-v2-usp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
    margin-bottom: 1rem;
}

.booking-v2-usp-item {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    background: #F8FAFC;
    border: 1px solid #EEF2F7;
    border-radius: 12px;
    padding: 0.7rem 0.65rem;
}

.booking-v2-usp-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: #EFF6FF;
    color: #2563EB;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.85rem;
}

.booking-v2-usp-item strong {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    color: #0F172A;
    line-height: 1.25;
    margin-bottom: 0.1rem;
}

.booking-v2-usp-item span {
    font-size: 0.68rem;
    color: #64748B;
    line-height: 1.35;
}

.booking-v2-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.75rem 0.5rem;
    background: #F8FAFC;
    border-radius: 12px;
    border: 1px solid #EEF2F7;
}

.booking-v2-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.3rem;
    font-size: 0.65rem;
    font-weight: 600;
    color: #334155;
    line-height: 1.25;
}

.booking-v2-stat i {
    color: #2563EB;
    font-size: 0.9rem;
}

.booking-v2-trust-visual {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.12);
}

.booking-v2-trust-visual > img {
    width: 100%;
    height: 178px;
    object-fit: cover;
    display: block;
}

.booking-v2-trust-badge {
    position: absolute;
    left: 0.75rem;
    bottom: 0.75rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-radius: 10px;
    padding: 0.5rem 0.65rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.booking-v2-trust-stars {
    color: #F59E0B;
    font-size: 0.55rem;
    margin-bottom: 0.15rem;
}

.booking-v2-trust-badge > span {
    font-size: 0.68rem;
    font-weight: 700;
    color: #0F172A;
}

.bvf-head-main {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex: 1;
    min-width: 0;
    z-index: 2;
}

.bvf-head-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.bvf-head-main h3 {
    margin: 0 0 0.2rem;
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
}

.bvf-head-main p {
    margin: 0;
    font-size: 0.75rem;
    opacity: 0.92;
    line-height: 1.4;
    color: #fff;
}

.bvf-head-car {
    position: absolute;
    right: -0.5rem;
    top: -1.25rem;
    width: 180px;
    height: auto;
    max-height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.25));
    z-index: 3;
    pointer-events: none;
}

.booking-v2-form-body {
    padding: 1.35rem 1.5rem 1.25rem;
    min-width: 0;
}

.booking-v2-stepper {
    position: relative;
    margin-bottom: 1.65rem;
}

.booking-v2-stepper .booking-stepper-progress {
    display: none;
}

.bvs-step .step-num {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #E2E8F0;
    color: #64748B;
    font-size: 0.95rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #fff;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.08);
}

.bvs-step.active .step-num,
.bvs-step.done .step-num {
    background: #2563EB;
    color: #fff;
}

.bvs-step .step-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: #64748B;
    text-align: center;
    line-height: 1.3;
    max-width: 110px;
}

.bvs-step.active .step-label {
    color: #2563EB;
}

.bvs-steps {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.bvs-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.45rem;
    flex: 1;
    opacity: 0.5;
    transition: opacity 0.25s ease;
}

.bvs-step.active,
.bvs-step.done {
    opacity: 1;
}

.bvs-connector {
    display: none;
}

.booking-v2-form-body .booking-step-heading {
    display: none;
}

.bf-req {
    color: #EF4444;
}

.bf-opt {
    color: #94A3B8;
    font-weight: 500;
    font-size: 0.82em;
}

/* Booking form — reference large fields */
.booking-form-ref {
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.booking-form-ref .bf-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 0.85rem;
    width: 100%;
    min-width: 0;
}

.booking-form-ref .bf-field {
    min-width: 0;
    width: 100%;
}

.booking-form-ref .bf-field-full {
    grid-column: 1 / -1;
}

.booking-form-ref .bf-label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 0.4rem;
    line-height: 1.35;
}

.booking-form-ref .bf-input-box {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 0.35rem 0.6rem 0.35rem 0.35rem;
    min-height: 50px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.booking-form-ref .bf-input-box:focus-within {
    border-color: #2563EB;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
    background: #fff;
}

.booking-form-ref .bf-icon-cell {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #EEF2F7;
    color: #64748B;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.92rem;
    flex-shrink: 0;
}

.booking-form-ref .bf-input-box:focus-within .bf-icon-cell {
    background: #DBEAFE;
    color: #2563EB;
}

.booking-form-ref .bf-input-box input,
.booking-form-ref .bf-input-box select {
    border: none;
    background: transparent;
    flex: 1 1 auto;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    font-size: 0.92rem;
    font-family: inherit;
    color: #0F172A;
    padding: 0.4rem 0.3rem;
    min-height: 38px;
    outline: none;
    box-shadow: none;
}

.booking-form-ref .bf-input-box select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2364748B' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.35rem center;
    background-size: 12px 8px;
    padding-right: 1.6rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.booking-form-ref .bf-field-car {
    position: relative;
    z-index: 5;
}

.booking-form-ref .bf-field-car .car-select-wrap.is-open {
    z-index: 50;
}

.car-select-wrap {
    position: relative;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.car-select-wrap .car-select-native {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.car-select-wrap .car-select-trigger {
    cursor: pointer;
    user-select: none;
}

.car-select-wrap .car-select-value {
    flex: 1;
    min-width: 0;
    font-size: 0.92rem;
    font-weight: 500;
    color: #0F172A;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
}

.car-select-wrap .car-select-value.is-placeholder {
    color: #94A3B8;
    font-weight: 400;
}

.car-select-wrap .car-select-chevron {
    color: #64748B;
    font-size: 0.72rem;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.car-select-wrap.is-open .car-select-chevron {
    transform: rotate(180deg);
}

.car-select-wrap.is-open .car-select-trigger {
    border-color: #2563EB;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
    background: #fff;
}

.car-select-menu {
    position: fixed;
    left: auto;
    right: auto;
    top: auto;
    z-index: 1080;
    margin: 0;
    padding: 0.35rem;
    list-style: none;
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 14px;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.14);
    max-height: min(260px, 40vh);
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    width: auto;
    max-width: min(100vw - 24px, 420px);
    box-sizing: border-box;
}

.car-select-menu[hidden] {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

.car-select-option {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding: 0.7rem 0.8rem;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.15s ease;
}

.car-select-option:hover,
.car-select-option:focus {
    background: #EFF6FF;
}

.car-select-option.is-selected {
    background: #DBEAFE;
}

.car-opt-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #0F172A;
    line-height: 1.25;
    word-break: break-word;
}

.car-opt-meta {
    font-size: 0.78rem;
    font-weight: 500;
    color: #64748B;
    line-height: 1.3;
}

@media (max-width: 575.98px) {
    .car-select-menu {
        max-height: min(240px, 38vh);
        border-radius: 12px;
    }

    .car-select-option {
        padding: 0.75rem 0.7rem;
    }

    .car-opt-name {
        font-size: 0.88rem;
    }

    .car-opt-meta {
        font-size: 0.76rem;
    }

    .car-select-wrap .car-select-value {
        font-size: 0.86rem;
    }
}

.booking-form-ref .bf-input-box input.is-invalid,
.booking-form-ref .bf-input-box select.is-invalid {
    box-shadow: inset 0 0 0 1px #EF4444;
}

.booking-form-ref .bf-textarea-box textarea.is-invalid {
    box-shadow: inset 0 0 0 1px #EF4444;
}

.booking-form-ref .bf-input-box input::placeholder,
.booking-form-ref .bf-textarea-box textarea::placeholder {
    color: #94A3B8;
}

.booking-form-ref .bf-textarea-box {
    align-items: flex-start;
    min-height: 120px;
    padding-top: 0.65rem;
}

.booking-form-ref .bf-textarea-box .bf-icon-cell {
    margin-top: 0.15rem;
}

.booking-form-ref .bf-textarea-box textarea {
    border: none;
    background: transparent;
    flex: 1;
    min-width: 0;
    font-size: 1.05rem;
    font-family: inherit;
    color: #0F172A;
    padding: 0.45rem 0.35rem;
    min-height: 90px;
    outline: none;
    resize: vertical;
    box-shadow: none;
}

.booking-form-ref .booking-step-panel {
    margin-bottom: 0.25rem;
    width: 100%;
    min-width: 0;
}

.booking-v2-nav .btn-continue-booking {
    margin-left: auto;
    width: 100%;
    justify-content: center;
    background: linear-gradient(135deg, #2563EB, #3B82F6) !important;
    border: none;
    border-radius: 16px;
    font-size: 1.08rem;
    font-weight: 700;
    min-height: 60px;
    padding: 0.9rem 1.5rem !important;
}

.booking-v2-secure i {
    margin-right: 0.3rem;
    color: #64748B;
}

.booking-v2-nav {
    margin-top: 1.35rem;
    padding-top: 0;
    border-top: none;
}

.booking-v2-nav .btn-outline-step {
    display: none;
}

.booking-v2-nav:has([data-step-prev]:not([hidden])) .btn-outline-step {
    display: inline-flex;
}

.booking-v2-nav:has([data-step-prev]:not([hidden])) {
    display: flex;
    gap: 0.75rem;
}

.booking-v2-nav:has([data-step-prev]:not([hidden])) .btn-continue-booking {
    width: auto;
    flex: 1;
}

/* ══ Home sections — app style ══ */
.home-section-app {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

.home-section-head {
    margin-bottom: 1.25rem;
}

.home-section-head.text-center .home-section-kicker {
    display: block;
}

.home-section-kicker {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #2563EB;
    margin-bottom: 0.35rem;
}

.home-section-head h2 {
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    font-weight: 700;
    color: #0F172A;
    margin: 0 0 0.35rem;
}

.home-section-head p {
    font-size: 0.9rem;
    color: #64748B;
    margin: 0;
}

.why-section-home {
    background: #fff;
}

.destinations-section-home {
    background: #F8FAFC;
}

.dest-card-overlay {
    display: block;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(15, 23, 42, 0.08);
    border: none;
}

.dest-card-overlay .dest-card-ref-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.dest-card-overlay .dest-card-ref-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.dest-card-overlay:hover .dest-card-ref-img img {
    transform: scale(1.06);
}

.dest-card-ref-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1rem 1.05rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.2) 70%, transparent 100%);
    color: #fff;
}

.dest-card-ref-overlay h3 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 0.15rem;
    color: #fff;
}

.dest-card-ref-overlay p {
    font-size: 0.78rem;
    margin: 0 0 0.35rem;
    color: rgba(255, 255, 255, 0.9);
}

.dest-card-ref-overlay .dest-card-rating {
    font-size: 0.82rem;
    font-weight: 600;
    color: #FCD34D;
}

.offer-section-home {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    background: #fff;
}

.faq-section-home {
    background: #F8FAFC;
}

.faq-home-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 1.5rem;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-card-wrap {
    max-width: none;
    margin: 0;
}

.faq-support-card {
    background: #fff;
    border: 1px solid #E8EDF5;
    border-radius: 18px;
    padding: 1.5rem 1.35rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
    position: sticky;
    top: 100px;
}

.faq-support-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #EFF6FF;
    color: #2563EB;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin: 0 auto 0.85rem;
}

.faq-support-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #0F172A;
    margin: 0 0 1rem;
}

.btn-faq-support {
    width: 100%;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 0.85rem;
    min-height: 48px;
}

.faq-support-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: #2563EB;
    text-decoration: none;
}

.cta-section-home {
    background: #fff;
    padding-bottom: 3rem;
}

.dest-home-header.home-section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 1rem;
}

.offer-card-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08);
    border: 1px solid #E8EDF5;
    background: #fff;
}

.offer-card-wrap img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.faq-card-wrap {
    background: #fff;
    border: 1px solid #EEF2F7;
    border-radius: 20px;
    padding: 1.25rem 1.35rem;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.05);
}

.faq-accordion-app .accordion-item {
    border: 1px solid #EEF2F7;
    border-radius: 12px !important;
    margin-bottom: 0.55rem;
    overflow: hidden;
    background: #F8FAFC;
}

.faq-accordion-app .accordion-button {
    font-size: 0.92rem;
    font-weight: 600;
    padding: 1.05rem 1.15rem;
    background: transparent;
    color: #0F172A;
    border-radius: 12px !important;
}

.faq-accordion-app .accordion-button:not(.collapsed) {
    background: #EFF6FF;
    color: #1D4ED8;
    box-shadow: none;
    border-top: 3px solid #2563EB;
}

.faq-accordion-app .accordion-body {
    font-size: 0.9rem;
    line-height: 1.65;
    color: #555;
    padding: 0 1.15rem 1rem;
    background: #fff;
}

.btn-app-outline {
    border-radius: 12px;
    padding: 0.65rem 1.5rem;
    font-weight: 600;
}

.booking-v2-secure {
    margin: 1rem 0 0;
    text-align: center;
    font-size: 0.8rem;
    color: #94A3B8;
}

.cta-card-v2 {
    background: linear-gradient(135deg, #0D1B52 0%, #1e40af 55%, #2563EB 100%);
    border-radius: 22px;
    padding: 2rem 2.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    box-shadow: 0 12px 40px rgba(29, 78, 216, 0.25);
    position: relative;
    overflow: hidden;
}

.cta-card-v2::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 90% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.cta-card-v2-content {
    position: relative;
    z-index: 1;
    flex: 1;
    min-width: 200px;
}

.cta-card-v2-content h2 {
    color: #fff;
    font-size: clamp(1.25rem, 3vw, 1.65rem);
    font-weight: 700;
    margin: 0 0 0.4rem;
}

.cta-card-v2-content p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.55;
    max-width: 480px;
}

.cta-card-v2-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.btn-cta-app {
    border-radius: 12px;
    padding: 0.75rem 1.35rem;
    font-weight: 600;
    font-size: 0.9rem;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

/* Mobile app polish */
@media (max-width: 991.98px) {
    .booking-v2-panel,
    .booking-v2-panel.booking-wizard-wrap,
    .booking-wizard-wrap:not(.booking-ref-layout) {
        display: block !important;
        grid-template-columns: 1fr !important;
        width: 100% !important;
        max-width: 100% !important;
        border: none;
        box-shadow: none;
        padding: 0 !important;
        gap: 0;
    }

    .site-header .navbar > .container > .navbar-collapse {
        flex-basis: 100%;
        width: 100%;
    }

    .booking-v2-usp-grid {
        grid-template-columns: 1fr;
    }

    .booking-v2-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .booking-v2-trust-visual {
        display: none;
    }

    .bvf-head-car {
        width: 80px;
        max-height: 58px;
        top: 50%;
        transform: translateY(-50%);
        right: 0.65rem;
    }

    .booking-section-wizard {
        padding: 0.75rem 0 1.5rem;
    }

    .booking-v2-form-body {
        padding: 1rem 1rem 1.1rem;
        overflow-x: clip;
    }

    .booking-section-wizard > .container {
        padding-left: 10px;
        padding-right: 10px;
        max-width: 100%;
        overflow-x: clip;
    }

    .booking-v2-info {
        display: none !important;
    }

    .booking-v2-form-col {
        order: 1;
        grid-column: 1 / -1;
        width: 100% !important;
        max-width: 100% !important;
    }

    .booking-v2-form-card {
        border-radius: 16px;
        border: 1px solid #E8EDF7;
        box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
        overflow: hidden;
        min-width: 0;
        width: 100%;
    }

    .booking-v2-form-head {
        padding: 0.9rem 5.5rem 0.9rem 1rem;
        min-height: 82px;
    }

    .bvf-head-main h3 {
        font-size: 1rem;
    }

    .booking-v2-stepper {
        margin-bottom: 1.15rem;
    }

    .bvs-steps {
        gap: 0.15rem;
    }

    .bvs-step .step-num {
        width: 32px;
        height: 32px;
        font-size: 0.82rem;
        border-width: 2px;
    }

    .bvs-step .step-label {
        font-size: 0.62rem;
        max-width: 72px;
        white-space: normal;
        word-break: break-word;
        line-height: 1.2;
    }

    .booking-form-ref .bf-grid {
        grid-template-columns: 1fr;
        gap: 0.9rem;
    }

    .booking-form-ref .bf-label {
        font-size: 0.92rem;
        margin-bottom: 0.45rem;
    }

    .booking-form-ref .bf-input-box {
        min-height: 54px;
        border-radius: 14px;
        padding: 0.4rem 0.6rem 0.4rem 0.4rem;
        gap: 0.55rem;
    }

    .booking-form-ref .bf-icon-cell {
        width: 40px;
        height: 40px;
        font-size: 0.95rem;
    }

    .booking-form-ref .bf-input-box input,
    .booking-form-ref .bf-input-box select {
        font-size: 16px;
        padding: 0.45rem 0.25rem;
        min-height: 40px;
        max-width: 100%;
    }

    .booking-form-ref .bf-input-box select {
        padding-right: 1.5rem;
        font-size: 0.88rem;
    }

    .booking-v2-nav .btn-continue-booking {
        min-height: 52px;
        font-size: 0.98rem;
    }

    .booking-v2-secure {
        font-size: 0.72rem;
        text-align: center;
    }

    .site-footer {
        padding: 2rem 0 0;
        background: #F8FAFC;
    }

    .site-footer .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .footer-brand {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 0.5rem;
    }

    .footer-about {
        text-align: center;
        font-size: 0.85rem;
    }

    .footer-social {
        justify-content: center;
    }

    .site-footer .row > [class*="col-"] {
        text-align: center;
    }

    .site-footer .footer-links-col {
        flex: 0 0 50%;
        max-width: 50%;
        text-align: left;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 0.35rem;
    }

    .footer-links li {
        margin-bottom: 0;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        margin-top: 1.5rem;
        padding: 1rem 0 0.5rem;
        gap: 0.65rem;
    }

    .payment-icons {
        justify-content: center;
    }

    .newsletter-form .input-group {
        border-radius: 14px;
        overflow: hidden;
        box-shadow: 0 2px 12px rgba(15, 23, 42, 0.05);
    }

    .newsletter-form .form-control {
        min-height: 48px;
        font-size: 0.9rem;
    }

    .newsletter-form .btn {
        min-height: 48px;
        padding: 0 1.1rem;
    }

    .site-main .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .page-hero {
        padding: 1.5rem 0 1.25rem;
    }

    .page-hero h1 {
        font-size: 1.5rem;
    }

    .glass-card,
    .contact-form-card {
        border-radius: 18px;
        padding: 1.25rem;
    }

    .section {
        padding: 2rem 0;
    }

    .home-section-app {
        padding-top: 1.75rem;
        padding-bottom: 1.75rem;
    }

    .page-home .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .home-block,
    .home-block + .home-block {
        margin-top: 1rem;
    }

    .cta-card-v2 {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 1.25rem;
        border-radius: 18px;
    }

    .cta-card-v2-actions {
        width: 100%;
        flex-direction: column;
    }

    .btn-cta-app {
        width: 100%;
        justify-content: center;
    }

    .faq-card-wrap {
        padding: 1rem;
        border-radius: 16px;
    }

    .offer-card-wrap {
        border-radius: 16px;
    }

    .why-slider-wrap .why-nav-btn {
        display: none;
    }

    .dest-slider-wrap .dest-nav-prev,
    .dest-slider-wrap .dest-nav-next {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .section-header-inline {
        flex-direction: row;
        flex-wrap: nowrap;
    }

    .section-header-inline h2 {
        font-size: 1.05rem;
    }

    .view-all-link {
        font-size: 0.68rem;
    }

    .booking-v2-stats {
        grid-template-columns: 1fr 1fr;
        gap: 0.4rem;
    }

    .bvf-head-main p {
        font-size: 0.68rem;
    }

    .bvf-head-car {
        width: 80px;
        max-height: 58px;
        top: 50%;
        transform: translateY(-50%);
        right: 0.65rem;
    }

    .faq-home-layout {
        grid-template-columns: 1fr;
    }

    .faq-support-card {
        position: static;
    }

    .booking-form-ref .bf-grid {
        grid-template-columns: 1fr;
        gap: 1.15rem;
    }

    .booking-form-ref .bf-field-car .bf-input-box select {
        font-size: 0.84rem;
    }

    .booking-form-ref .bf-label {
        font-size: 0.95rem;
    }

    .booking-form-ref .bf-input-box {
        min-height: 60px;
    }
}

/* ══ Inner pages polish ══ */
.page-fleet .section,
.page-destinations .section,
.page-services .section,
.page-about .section,
.page-contact .section {
    padding: 2.25rem 0;
}

.page-about .section {
    padding: 1.35rem 0;
}

.page-hero {
    background: linear-gradient(180deg, #EFF6FF 0%, #FFFFFF 100%);
    padding-top: calc(var(--topbar-height) + var(--header-height) + 1.75rem);
    padding-bottom: 1.5rem;
}

.page-hero h1 {
    font-size: clamp(1.35rem, 4vw, 1.85rem);
    line-height: 1.25;
}

.section .glass-card,
.contact-form-card,
.contact-info-card,
.whatsapp-contact-card,
.about-content,
.service-card-lg {
    border-radius: 18px;
    border: 1px solid #EEF2F7;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
}

.service-card-lg {
    padding: 1.35rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-card-lg .service-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.destination-info {
    margin-top: 0.65rem;
    border-radius: 16px;
}

.cta-bar {
    border-radius: 18px;
    padding: 1.5rem;
    background: linear-gradient(135deg, #2563EB, #3B82F6);
    color: #fff;
}

.cta-bar h2,
.cta-bar p {
    color: #fff;
}

.page-destinations .booking-section,
.page-services .booking-section,
.page-car-detail .booking-section {
    background: #fff;
    padding: 2rem 0;
}

.page-destinations .booking-section .container,
.page-services .booking-section .container,
.page-car-detail .booking-section .container {
    max-width: 1180px;
}

.car-gallery-swiper img {
    height: auto;
    max-height: 420px;
    object-fit: contain;
    background: #F8FAFC;
}

.page-fleet .car-card,
.page-car-detail .car-card {
    height: 100%;
}

.about-content {
    padding: 1.5rem;
    line-height: 1.7;
}

.about-content h4 {
    margin-top: 1.25rem;
    margin-bottom: 0.65rem;
    font-size: 1rem;
}

.about-content ul {
    padding-left: 1.15rem;
    margin-bottom: 1rem;
}

.about-content li {
    margin-bottom: 0.35rem;
}

.about-sidebar {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.journey-timeline .timeline {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-top: 1rem;
}

.journey-timeline .timeline-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: #F8FAFC;
    border-radius: 12px;
}

.journey-timeline .timeline-item .year {
    font-weight: 700;
    color: var(--primary);
    min-width: 3.5rem;
}

.car-price-card {
    padding: 1.35rem;
    text-align: center;
}

.car-price-card .price-display {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
}

.specs-table .spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.65rem 0;
    border-bottom: 1px solid #EEF2F7;
    gap: 1rem;
}

.specs-table .spec-row:last-child {
    border-bottom: none;
}

.car-info-block {
    padding: 1.25rem;
}

.car-info-block h3,
.car-info-block h4 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.5rem;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.feature-list li i {
    color: var(--primary);
    margin-top: 0.15rem;
}

.destination-info {
    padding: 1rem;
}

.destination-info p {
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 0.85rem;
    color: var(--text-muted);
}

/* About page — visual layout */
.page-hero-about p {
    max-width: 520px;
    margin: 0.35rem auto 0;
    text-align: center;
}

.about-intro-section {
    padding-top: 1.5rem;
}

.about-hero-image {
    overflow: hidden;
    padding: 0;
    border-radius: 18px;
}

.about-hero-image img {
    width: 100%;
    height: auto;
    min-height: 260px;
    max-height: 380px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.about-intro-content {
    padding: 0.5rem 0;
}

.about-lead {
    font-size: 1rem;
    line-height: 1.7;
    color: #334155;
    margin-bottom: 1.15rem;
}

.about-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
    display: grid;
    gap: 0.55rem;
}

.about-highlights li {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #0F172A;
}

.about-highlights li i {
    color: #22C55E;
    font-size: 0.85rem;
}

.about-visual-card {
    overflow: hidden;
    padding: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.about-visual-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.about-visual-body {
    padding: 1.15rem;
    flex: 1;
}

.about-visual-body h4 {
    font-size: 0.95rem;
    margin-bottom: 0.45rem;
}

.about-visual-body p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0;
}

.about-value-compact {
    padding: 1.1rem 0.75rem;
}

.about-value-compact h5 {
    font-size: 0.82rem;
    margin: 0;
}

.about-stats-compact {
    padding-top: 1rem;
    padding-bottom: 1.5rem;
}

.page-about .page-hero-about {
    padding-bottom: 1rem;
}

.about-page-main {
    padding-top: 1.25rem;
    padding-bottom: 1.5rem;
}

.about-page-visual {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.about-side-image {
    overflow: hidden;
    padding: 0;
    border-radius: 16px;
}

.about-side-image img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
}

.about-content-full {
    padding: 1.25rem 1.35rem;
    line-height: 1.65;
    font-size: 0.9rem;
}

.about-content-full p {
    margin-bottom: 0.75rem;
}

.about-content-full .about-opening {
    font-size: 0.98rem;
    font-weight: 500;
    color: #0F172A;
    margin-bottom: 0.85rem;
}

.about-content-full h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0.85rem 0 0.5rem;
    color: #0F172A;
}

.about-focus-list {
    padding-left: 1.1rem;
    margin: 0 0 0.75rem;
}

.about-focus-list li {
    margin-bottom: 0.3rem;
    color: #475569;
    font-size: 0.88rem;
}

.about-closing {
    margin-top: 0.65rem;
    margin-bottom: 0;
    color: #0F172A;
}

.about-cards-row {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}

.page-about .about-cards-row .about-card {
    padding: 1rem 1.1rem;
}

.page-about .about-cards-row .about-card p {
    font-size: 0.82rem;
    margin-bottom: 0;
    line-height: 1.5;
}

.about-hero-image img {
    min-height: 220px;
    max-height: 300px;
}

.page-about .section {
    padding: 1.35rem 0;
}

.page-about .page-hero {
    padding-bottom: 0.85rem;
}

.about-stat-compact {
    padding: 1rem 0.5rem;
}

.about-stat-compact .stat-number {
    font-size: 1.65rem;
}

@media (max-width: 991.98px) {
    .page-fleet .section,
    .page-destinations .section,
    .page-services .section,
    .page-about .section,
    .page-contact .section {
        padding: 1.5rem 0;
    }

    .page-hero {
        padding-top: calc(var(--topbar-height) + var(--header-height) + 1.25rem);
        padding-bottom: 1.15rem;
    }

    .page-hero h1 {
        font-size: 1.3rem;
    }

    .car-card-img {
        min-height: 150px;
        padding: 0.5rem;
    }

    .car-card-img img {
        max-height: 160px;
    }

    .destination-card,
    .destination-card-lg {
        min-height: 160px;
        aspect-ratio: 16 / 10;
    }

    .car-card-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 0.65rem;
    }

    .car-actions {
        display: flex;
        gap: 0.5rem;
    }

    .car-actions .btn {
        flex: 1;
        justify-content: center;
    }

    .cta-bar {
        text-align: center;
        padding: 1.25rem;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .contact-form-card,
    .contact-info-card,
    .whatsapp-contact-card {
        padding: 1.15rem;
    }

    .map-wrapper iframe {
        height: 280px !important;
    }

    .page-destinations .booking-section .container,
    .page-services .booking-section .container,
    .page-car-detail .booking-section .container {
        max-width: 100%;
        padding-left: 10px;
        padding-right: 10px;
    }

    .page-destinations .booking-card,
    .page-services .booking-card {
        border-radius: 16px;
        width: 100%;
    }

    .footer-credit {
        padding-bottom: 0.5rem;
    }

    .page-about .about-sidebar {
        margin-top: 1rem;
    }

    .page-about .about-content,
    .page-about .about-card,
    .page-about .value-card,
    .page-about .journey-timeline {
        padding: 1.15rem;
    }

    .page-about .timeline-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }

    .page-contact .form-floating-custom input,
    .page-contact .form-floating-custom textarea {
        font-size: 16px;
    }

    .page-fleet .car-specs-grid {
        grid-template-columns: 1fr;
    }

    .page-car-detail .car-price-card {
        position: static;
        margin-bottom: 1rem;
    }

    .page-car-detail .car-gallery-swiper {
        border-radius: 16px;
        overflow: hidden;
    }

    .page-car-detail .specs-table .spec-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.15rem;
    }

    .car-detail-hero-card {
        padding: 1rem 0.95rem;
        border-radius: 16px;
    }

    .car-detail-hero-bottom {
        flex-direction: column;
        align-items: stretch;
    }

    .car-detail-book-btn {
        width: 100%;
        justify-content: center;
    }

    .car-detail-hero-bottom .price-display {
        font-size: 1.85rem;
    }

    .car-gallery-slide-inner {
        min-height: 220px;
        height: clamp(220px, 58vw, 320px);
        padding: 0.5rem;
    }

    .page-car-detail .car-gallery-swiper {
        border-radius: 16px;
    }

    .car-sidebar-card {
        position: static !important;
        margin-bottom: 1rem;
    }
}

/* ══ Fleet pages ══ */
.page-hero-fleet,
.page-hero-car-detail {
    padding-bottom: 1.25rem;
}

.fleet-hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.fleet-stat-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.85rem;
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #475569;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.fleet-stat-pill i {
    color: #5B9FED;
}

.fleet-grid-section {
    padding-top: 1.5rem;
}

.fleet-card {
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid #E8EDF5;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.fleet-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.1);
}

.fleet-card-media {
    display: block;
    text-decoration: none;
}

.fleet-card-img {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: #F1F5F9;
    line-height: 0;
}

.fleet-card-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.35s ease;
}

.fleet-card:hover .fleet-card-img img {
    transform: scale(1.03);
}

.fleet-card-body {
    padding: 1rem 1.1rem 1.1rem;
}

.fleet-card-body h3 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
}

.fleet-card-body h3 a {
    color: #0F172A;
    text-decoration: none;
}

.fleet-card-body h3 a:hover {
    color: #2563EB;
}

.fleet-spec-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin: 0.65rem 0 0.75rem;
    font-size: 0.72rem;
    color: #64748B;
}

.fleet-spec-chips span {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.2rem 0.55rem;
    background: #F8FAFC;
    border-radius: 999px;
}

.fleet-spec-chips i {
    color: #5B9FED;
    font-size: 0.68rem;
}

.fleet-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.65rem;
    padding-top: 0.75rem;
    border-top: 1px solid #F1F5F9;
}

.fleet-cta-section {
    padding-top: 0;
    padding-bottom: 2.5rem;
}

.fleet-cta-bar {
    margin-top: 0;
}

.section-title-fleet {
    font-size: 1.35rem;
    font-weight: 700;
    color: #0F172A;
}

/* Car detail page */
.page-hero-car-detail h1 {
    margin-bottom: 0;
    font-size: clamp(1.45rem, 4.5vw, 2rem);
    line-height: 1.2;
}

.car-detail-hero-card {
    background: #fff;
    border: 1px solid #E8EDF5;
    border-radius: 18px;
    padding: 1rem 1.1rem;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
    margin-top: 0.35rem;
}

.car-detail-hero-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
}

.car-detail-hero-title-wrap {
    min-width: 0;
    flex: 1;
}

.car-detail-rating-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    padding: 0.35rem 0.7rem;
    background: #FFFBEB;
    border: 1px solid #FDE68A;
    border-radius: 999px;
    color: #B45309;
    font-size: 0.82rem;
    flex-shrink: 0;
}

.car-detail-rating-pill i {
    color: #F59E0B;
    font-size: 0.75rem;
}

.car-detail-rating-pill strong {
    font-weight: 700;
    color: #92400E;
}

.car-detail-rating-pill span {
    color: #D97706;
    font-size: 0.72rem;
}

.car-detail-hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 1rem;
}

.car-detail-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.38rem 0.7rem;
    background: #F8FAFC;
    border: 1px solid #EEF2F7;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 500;
    color: #475569;
}

.car-detail-chip i {
    color: #5B9FED;
    font-size: 0.72rem;
}

.car-detail-hero-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding-top: 0.9rem;
    border-top: 1px solid #F1F5F9;
}

.car-detail-price-wrap {
    min-width: 0;
}

.car-detail-price-label {
    display: block;
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #94A3B8;
    margin-bottom: 0.1rem;
}

.car-detail-hero-bottom .price-display {
    font-size: 1.65rem;
    font-weight: 800;
    color: #2563EB;
    line-height: 1.1;
    margin: 0;
}

.car-detail-hero-bottom .price-display small {
    font-size: 0.72rem;
    font-weight: 500;
    color: #94A3B8;
}

.car-detail-book-btn {
    flex-shrink: 0;
    min-height: 46px;
    padding: 0.55rem 1rem;
    border-radius: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.car-detail-hero-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.car-detail-cat {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    color: #5B9FED;
    background: #EFF6FF;
    padding: 0.2rem 0.65rem;
    border-radius: 999px;
    margin-bottom: 0.45rem;
}

.car-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    font-size: 0.85rem;
    color: #64748B;
}

.car-detail-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.car-detail-rating {
    color: #F59E0B;
    font-weight: 600;
}

.car-detail-hero-price {
    text-align: right;
    flex-shrink: 0;
}

.car-detail-hero-price .price-display {
    font-size: 2rem;
    font-weight: 800;
    color: #2563EB;
    margin-bottom: 0.65rem;
}

.car-detail-hero-price .price-display small {
    font-size: 0.75rem;
    font-weight: 500;
    color: #94A3B8;
}

.car-detail-section {
    padding-top: 1.25rem;
}

.car-gallery-main {
    border-radius: 18px;
    overflow: hidden;
    padding: 0;
    border: 1px solid #E8EDF5;
}

.car-gallery-slide-inner {
    min-height: 240px;
    height: clamp(240px, 52vw, 380px);
    background: #F8FAFC;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
}

.car-gallery-main img,
.car-gallery-slide-inner img {
    width: 100%;
    height: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center center;
    border-radius: 12px;
}

.car-detail-spec-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
}

.spec-chip {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding: 0.75rem 0.85rem;
    background: #F8FAFC;
    border-radius: 12px;
    border: 1px solid #EEF2F7;
}

.spec-chip i {
    color: #5B9FED;
    font-size: 0.9rem;
    margin-bottom: 0.15rem;
}

.spec-chip span {
    font-size: 0.72rem;
    color: #94A3B8;
}

.spec-chip strong {
    font-size: 0.88rem;
    color: #0F172A;
}

.car-detail-desc {
    color: #475569;
    line-height: 1.7;
    margin: 0;
}

.feature-list-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.45rem 1rem;
}

.car-sidebar-card {
    padding: 1.25rem;
    border-radius: 18px;
}

.car-sidebar-preview {
    background: #F8FAFC;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 1rem;
    line-height: 0;
}

.car-sidebar-preview img {
    width: 100%;
    height: 160px;
    object-fit: contain;
    object-position: center;
    display: block;
    padding: 0.5rem;
}

.car-sidebar-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.car-sidebar-cat {
    font-size: 0.8rem;
    color: #94A3B8;
    margin-bottom: 0.75rem;
}

.car-sidebar-specs {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
    display: grid;
    gap: 0.4rem;
    font-size: 0.82rem;
    color: #475569;
}

.car-sidebar-specs li {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.car-sidebar-specs i {
    color: #5B9FED;
    width: 16px;
}

.page-car-detail .booking-section {
    padding-top: 1.5rem;
    padding-bottom: 2.5rem;
}

.page-car-detail .booking-v2-panel {
    border-radius: 20px;
}

.page-car-detail .bvf-head-car {
    width: 160px;
    max-height: 110px;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    object-fit: contain;
}

.related-cars-section {
    padding-top: 2rem;
    padding-bottom: 2.5rem;
}

/* WhatsApp sticky — home page */
.whatsapp-sticky-btn {
    position: fixed;
    right: 14px;
    bottom: calc(var(--mobile-nav-height) + var(--mobile-nav-gap) + 14px + env(safe-area-inset-bottom, 0px));
    z-index: 1045;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    min-height: 52px;
    padding: 0 1rem 0 0.85rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #25D366 0%, #1EBE5A 100%);
    color: #fff;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.42);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    animation: waStickyPulse 2.4s ease-in-out infinite;
}

.whatsapp-sticky-btn i {
    font-size: 1.55rem;
    line-height: 1;
}

.whatsapp-sticky-btn:hover {
    color: #fff;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
}

.whatsapp-sticky-label {
    white-space: nowrap;
}

@keyframes waStickyPulse {
    0%, 100% { box-shadow: 0 8px 28px rgba(37, 211, 102, 0.42); }
    50% { box-shadow: 0 8px 28px rgba(37, 211, 102, 0.42), 0 0 0 10px rgba(37, 211, 102, 0.12); }
}

@media (min-width: 992px) {
    .whatsapp-sticky-btn {
        right: 22px;
        bottom: 24px;
        min-height: 56px;
        padding: 0 1.15rem 0 0.95rem;
        font-size: 0.88rem;
    }

    .whatsapp-sticky-btn i {
        font-size: 1.7rem;
    }
}

@media (max-width: 420px) {
    .whatsapp-sticky-label {
        display: none;
    }

    .whatsapp-sticky-btn {
        width: 54px;
        height: 54px;
        min-height: 54px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }
}
