:root {
    --primary-color: #003580;
    /* Booking Dark Blue */
    --secondary-color: #0071C2;
    /* Booking Light Blue */
    --accent-color: #febb02;
    /* Booking Yellow */
    --success-color: #008234;
    /* Green */
    --text-dark: #333333;
    --text-light: #6b6b6b;
    --bg-light: #f5f5f5;
    --white: #ffffff;
    --border-radius: 4px;
    /* Best ratio between 3px and 5px */
    --border-color: #e6e6e6;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --transition: all 0.2s ease-in-out;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: clip;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: clip;
    max-width: 100vw;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 700;
    color: var(--primary-color);
}

h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
    text-align: center;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--white);
    width: 100%;
}

.btn-primary:hover {
    background-color: var(--primary-color);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.btn-outline:hover {
    background-color: rgba(0, 113, 194, 0.05);
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    color: var(--white);
    padding: 15px 0;
    background: transparent;
    transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}
.site-header.scrolled {
    background: var(--primary-color);
    box-shadow: 0 2px 12px rgba(0,0,0,0.18);
    padding: 10px 0;
}
body {
    padding-top: 60px;
}
/* Hero pages: bleed up behind the transparent fixed header */
.hero,
.city-hero {
    margin-top: -60px;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-right: 40px;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: var(--white);
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--accent-color);
}

.header-actions {
    display: flex;
    align-items: center;
}

.header-actions .btn-outline {
    color: var(--white);
    border-color: var(--white);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 4px 8px;
    z-index: 1100;
    position: relative;
}

/* Mobile nav drawer */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1050;
}

.mobile-nav-overlay.active {
    display: block;
}

.mobile-nav-drawer {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100vh;
    background: var(--primary-color);
    z-index: 1060;
    transition: left 0.3s ease;
    display: flex;
    flex-direction: column;
    padding: 0;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.3);
}

.mobile-nav-drawer.active {
    left: 0;
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.mobile-nav-header .logo {
    margin-right: 0;
    font-size: 1.2rem;
}

.mobile-nav-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
    padding: 4px 8px;
}

.mobile-nav-links {
    list-style: none;
    padding: 12px 0;
    flex: 1;
    overflow-y: auto;
}

.mobile-nav-links li a {
    display: block;
    padding: 14px 24px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.2s, color 0.2s;
}

.mobile-nav-links li a:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.mobile-nav-langs {
    display: flex;
    gap: 8px;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    flex-wrap: wrap;
}

/* ── Hero Section ─────────────────────────────────────────────── */
.hero {
    background: linear-gradient(135deg, #001d4a 0%, #003580 55%, #00499e 100%);
    color: var(--white);
    padding: 0;
    text-align: left;
    position: relative;
}

/* ambient yellow glow top-right */
.hero-glow {
    position: absolute;
    top: -120px;
    right: -120px;
    width: 640px;
    height: 640px;
    background: radial-gradient(circle, rgba(254, 187, 2, .18) 0%, transparent 68%);
    pointer-events: none;
    z-index: 0;
}

/* two-column grid */
.hero-pro-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 90px 20px 55px;
    position: relative;
    z-index: 2;
}

/* ── Eyebrow ── */
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(254, 187, 2, .14);
    border: 1px solid rgba(254, 187, 2, .45);
    color: var(--accent-color);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 18px;
}

.eyebrow-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 50%;
    flex-shrink: 0;
    animation: pulse-dot 1.6s ease-in-out infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .35;
        transform: scale(1.5);
    }
}

/* ── Left column text ── */
.hero-content h1 {
    font-size: 2.8rem;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 12px;
}

.hero-content p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, .8);
    margin-bottom: 28px;
}

/* ── Search widget ── */
.hero-search-widget {
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .22);
    padding: 18px 20px;
    border-radius: 10px;
    margin-bottom: 18px;
}

.hero-search-widget label {
    display: block;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .6px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .72);
    margin-bottom: 8px;
}

.hero-car-search {
    width: 100%;
    padding: 14px 16px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    outline: none;
    color: var(--text-dark);
    font-family: inherit;
}

.hero-autocomplete-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    list-style: none;
    padding: 0;
    margin-top: 4px;
    border-radius: 6px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, .18);
    max-height: 250px;
    overflow-y: auto;
    z-index: 9999;
}

/* ── Filter pills ── */
.hero-city-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
}

.hero-city-label {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.hero-city-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.85);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.2s;
    white-space: nowrap;
}

.hero-city-pill:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #001d4a;
}

/* ── Right column: car visual ── */
.hero-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.hero-car-wrap {
    position: relative;
    text-align: center;
    padding: 10px 20px;
}

.hero-car-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 340px;
    height: 180px;
    background: radial-gradient(ellipse, rgba(254, 187, 2, .35) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-car-icon {
    font-size: 9rem;
    color: rgba(255, 255, 255, .93);
    filter: drop-shadow(0 10px 28px rgba(254, 187, 2, .5));
    animation: float-car 3.2s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

@keyframes float-car {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.hero-price-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--accent-color);
    color: #001d4a;
    padding: 10px 14px;
    border-radius: 10px;
    font-weight: 800;
    box-shadow: 0 6px 20px rgba(254, 187, 2, .55);
    line-height: 1.25;
    text-align: center;
    z-index: 2;
}

.badge-from {
    display: block;
    font-size: .62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.badge-price {
    display: block;
    font-size: 1.2rem;
    font-weight: 900;
}

.badge-per {
    display: block;
    font-size: .62rem;
    font-weight: 700;
}

/* ── Stats row ── */
.hero-stats {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 10px;
    padding: 14px 18px;
    min-width: 78px;
}

.stat-num,
.stat-fixed {
    font-size: 1.55rem;
    font-weight: 900;
    color: var(--accent-color);
    line-height: 1;
}

.stat-suffix {
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--accent-color);
}

.stat-label {
    display: block;
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: rgba(255, 255, 255, .58);
    margin-top: 5px;
}

/* ── Price ticker ── */
.hero-ticker {
    background: rgba(0, 0, 0, .22);
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
}

.ticker-inner {
    display: inline-flex;
    align-items: center;
    gap: 40px;
    animation: ticker-scroll 32s linear infinite;
}

.ticker-item {
    font-size: .84rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .82);
}

.ticker-item i {
    color: var(--accent-color);
    margin-right: 4px;
}

.ticker-sep {
    display: inline-block;
    width: 5px;
    height: 5px;
    background: rgba(254, 187, 2, .5);
    border-radius: 50%;
    vertical-align: middle;
    flex-shrink: 0;
}

@keyframes ticker-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ── Entrance animations ── */
.hero-animate {
    opacity: 0;
    transform: translateY(28px);
    animation: hero-slide-up .75s cubic-bezier(.22, .68, 0, 1.2) forwards;
}

.hero-animate-delay {
    animation-delay: .22s;
}

@keyframes hero-slide-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── RTL: force LTR direction on infinite-scroll tracks ── */
.ticker-inner,
.brand-marquee-track {
    direction: ltr;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .hero-glow { display: none; }

    .hero-pro-inner {
        grid-template-columns: 1fr;
        padding: 84px 20px 30px;
        text-align: center;
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .hero-eyebrow {
        margin: 0 auto 16px;
        max-width: 100%;
        white-space: normal;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2rem;
        word-break: break-word;
    }

    .hero-content p {
        word-break: break-word;
    }

    .hero-city-links { justify-content: center; }

    .hero-search-widget { max-width: 100%; }

    .hero-visual { display: none; }
}

/* ── How It Works ── */
.how-steps-row {
    display: flex;
    gap: 30px;
    justify-content: space-between;
}
.how-step-item {
    flex: 1;
    min-width: 200px;
    padding: 20px;
    text-align: center;
}

/* ── Why Choose Us ── */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}
.why-item {
    text-align: center;
}

@media (max-width: 768px) {
    .how-steps-row {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        flex-wrap: nowrap;
        gap: 0;
        padding-bottom: 16px;
        margin: 0 -20px;
        padding-left: 20px;
        padding-right: 20px;
    }
    .how-step-item {
        min-width: 78vw;
        max-width: 78vw;
        flex-shrink: 0;
        scroll-snap-align: start;
        padding: 20px 16px;
        border-right: 1px solid var(--border-color);
    }
    .how-step-item:last-child { border-right: none; }

    .why-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 0;
        padding-bottom: 16px;
        margin: 0 -20px;
        padding-left: 20px;
        padding-right: 20px;
    }
    .why-item {
        min-width: 72vw;
        max-width: 72vw;
        flex-shrink: 0;
        scroll-snap-align: start;
        padding: 0 16px 0 0;
    }
    .why-item:last-child { padding-right: 0; }
}

/* Home Page Sections */
.category-section {
    padding: 40px 0;
}

.category-section:nth-child(even) {
    background-color: var(--white);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.section-title-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-title-accent {
    width: 4px;
    height: 34px;
    background: linear-gradient(180deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    border-radius: 3px;
    flex-shrink: 0;
}

.section-header h2 {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.2;
}

.cat-count-badge {
    display: inline-block;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    color: var(--text-light);
    font-size: 0.73rem;
    font-weight: 700;
    padding: 2px 9px;
    border-radius: 20px;
    margin-left: 8px;
    vertical-align: middle;
}

.view-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--secondary-color);
    font-size: 0.85rem;
    font-weight: 700;
    border: 1.5px solid var(--secondary-color);
    padding: 7px 16px;
    border-radius: 50px;
    transition: var(--transition);
    white-space: nowrap;
}

.view-all:hover {
    background: var(--secondary-color);
    color: var(--white);
}

/* ── City Hero ───────────────────────────────────────────────── */
.city-hero {
    position: relative;
    background: linear-gradient(135deg, #0a1f44 0%, #1a3a6e 100%);
    background-size: cover;
    background-position: center bottom;
    background-attachment: scroll;
    padding: 110px 0 70px;
}

.city-hero-search #hero-autocomplete-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 9999;
    margin-top: 6px;
    border-radius: 10px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.18);
}


.city-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(6,16,50,0.92) 0%,
        rgba(8,22,65,0.80) 45%,
        rgba(8,22,65,0.40) 100%
    );
}

[dir="rtl"] .city-hero-overlay {
    background: linear-gradient(
        to left,
        rgba(6,16,50,0.92) 0%,
        rgba(8,22,65,0.80) 45%,
        rgba(8,22,65,0.40) 100%
    );
}

/* Category page hero */
.cat-hero {
    background-size: cover;
    background-position: center bottom;
    background-attachment: scroll;
    background-color: #0d2250;
}

.cat-hero .city-hero-overlay {
    background: linear-gradient(
        to right,
        rgba(6,16,50,0.93) 0%,
        rgba(8,22,65,0.80) 45%,
        rgba(8,22,65,0.40) 100%
    );
}

[dir="rtl"] .cat-hero .city-hero-overlay {
    background: linear-gradient(
        to left,
        rgba(6,16,50,0.93) 0%,
        rgba(8,22,65,0.80) 45%,
        rgba(8,22,65,0.40) 100%
    );
}

.city-hero-inner {
    position: relative;
    z-index: 1;
}

.city-hero-content {
    max-width: 680px;
}

.city-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.85);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.city-hero-title {
    font-size: 2.6rem;
    font-weight: 900;
    color: #fff;
    margin: 0 0 10px;
    line-height: 1.15;
}

.city-hero-subtitle {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    margin: 0 0 28px;
}

.city-hero-search {
    position: relative;
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 12px;
    padding: 4px 4px 4px 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    margin-bottom: 28px;
    overflow: visible;
}

.city-search-icon {
    color: #aab;
    font-size: 1rem;
    flex-shrink: 0;
    margin-right: 10px;
}

[dir="rtl"] .city-search-icon {
    margin-right: 0;
    margin-left: 10px;
}

.city-search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1rem;
    background: transparent;
    padding: 10px 0;
    font-family: inherit;
    color: #223;
}

.city-hero-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.city-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.city-stat-num {
    font-size: 1.3rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.city-stat-label {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.55);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.city-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.2);
    flex-shrink: 0;
}

/* List header */
.city-list-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid #eef0f5;
}

.city-list-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 4px;
}

.city-list-count {
    font-size: 0.85rem;
    color: #889;
    margin: 0;
}

/* Filter sections */
.filter-box-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}

.filter-box-header h3 {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 7px;
}

.filter-active-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 0.7rem;
    font-weight: 700;
}

.filter-clear-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
}

.filter-section {
    padding: 14px 0;
    border-bottom: 1px solid #eef0f5;
}

.filter-section h4 {
    font-size: 0.73rem;
    font-weight: 700;
    color: #aab;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin: 0 0 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.filter-pills-group {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.filter-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 13px;
    border-radius: 50px;
    border: 1.5px solid #dde2ee;
    background: #fff;
    color: #556;
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s, color 0.15s;
    white-space: nowrap;
    font-family: inherit;
    line-height: 1.4;
}

.filter-pill:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.filter-pill.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

@media (max-width: 768px) {
    .city-hero-title { font-size: 1.8rem; }
    .city-hero { padding: 50px 0 40px; }
    .city-hero-content { max-width: 100%; }
}

/* ── Brand marquee ───────────────────────────────────────────── */
.brand-marquee-section {
    background: var(--bg-light);
    padding: 6px 0;
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

.brand-marquee-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 22px;
}

.brand-marquee-track-wrap {
    overflow: hidden;
    white-space: nowrap;
}

.brand-marquee-track {
    display: inline-flex;
    align-items: center;
    gap: 40px;
    animation: brand-scroll 38s linear infinite;
    opacity: 0.6;
    filter: grayscale(100%);
}

.brand-marquee-track:hover {
    animation-play-state: paused;
    opacity: 0.85;
    filter: grayscale(60%);
}

.brand-marquee-track span {
    font-size: 1.8rem;
    color: var(--text-dark);
    min-width: max-content;
    transition: color 0.2s, opacity 0.2s;
}

.brand-sep {
    font-size: 1.2rem !important;
    color: var(--border-color) !important;
    font-weight: 300 !important;
    font-style: normal !important;
    letter-spacing: 0 !important;
    opacity: 0.5;
}

@keyframes brand-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Card Slider */
.slider-container {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding-bottom: 15px;
    scrollbar-width: thin;
    scrollbar-color: var(--border-color) transparent;
}

.slider-container::-webkit-scrollbar {
    height: 6px;
}

.slider-container::-webkit-scrollbar-thumb {
    background-color: var(--border-color);
    border-radius: var(--border-radius);
}

.slider-wrapper:hover .slider-next-btn {
    opacity: 1;
}

.slider-next-btn {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    opacity: 0.8;
    transition: opacity 0.3s, transform 0.2s;
    font-size: 1.1rem;
    color: var(--text-color);
}

.slider-next-btn:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.05);
}

.slider-next-btn i {
    margin-left: 2px;
    /* optical alignment */
}

/* Flex Grid */
.car-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.car-grid .car-card {
    min-width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

/* ── Car Card ──────────────────────────────────────────────────── */
.car-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-top: 3px solid var(--secondary-color);
    border-radius: 10px;
    min-width: 300px;
    max-width: 300px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.car-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 53, 128, .12);
}

/* Image */
.car-image-wrap {
    position: relative;
    overflow: hidden;
}

.car-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    cursor: pointer;
    display: block;
    transition: transform 0.35s ease;
}

.car-card:hover .car-image {
    transform: scale(1.04);
}

/* Content */
.car-content {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.car-title {
    font-size: 1.15rem;
    cursor: pointer;
    color: var(--primary-color);
}

.car-subtitle {
    font-size: 0.82rem;
    color: var(--text-light);
    margin-bottom: 12px;
}

/* Spec chips */
.car-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 14px;
    font-size: 0.81rem;
}

.spec-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    padding: 3px 8px;
    border-radius: 20px;
    color: var(--text-dark);
}

.spec-item i {
    color: var(--secondary-color);
}

/* Features */
.car-features {
    list-style: none;
    margin-bottom: 14px;
    font-size: 0.83rem;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 6px 18px;
}

.car-features li {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-dark);
    white-space: nowrap;
}

.car-features li i {
    color: var(--success-color);
    font-size: 0.72rem;
    flex-shrink: 0;
}

/* Booking footer */
.car-footer {
    margin-top: auto;
    border-top: 1px solid var(--border-color);
    padding-top: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.car-booking-info {
    margin-top: auto;
    border-top: 1px solid var(--border-color);
    padding-top: 14px;
}

.scarcity-tag {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.78rem;
    font-weight: 700;
    color: #c00;
    margin-bottom: 10px;
}

.scarcity-tag i {
    font-size: 0.8rem;
}

.car-price-block {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 12px;
}

.price {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--primary-color);
}

.price-period {
    font-size: 0.8rem;
    color: var(--text-light);
}

.car-card .btn-primary {
    width: 100%;
    display: block;
    text-align: center;
    padding: 11px 20px;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 6px;
}

/* Category Page Layout */
.category-page-layout {
    display: flex;
    gap: 30px;
    padding: 40px 0;
}

.sidebar {
    width: 250px;
    flex-shrink: 0;
    position: sticky;
    top: 20px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    align-self: flex-start;
}

.filter-box {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 15px;
}

.filter-box h3 {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.filter-item {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-item input[type="checkbox"] {
    width: 16px;
    height: 16px;
    min-width: 16px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.filter-item label {
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.4;
}

.car-list-vertical {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Full width card for list view */
.car-card.list-view {
    max-width: 100%;
    flex-direction: row;
}

.car-card.list-view .car-image-wrap {
    width: 300px;
    flex-shrink: 0;
    overflow: visible;
    display: flex;
    align-items: center;
    background: transparent;
}

.car-card.list-view .car-image {
    width: 100%;
    height: 200px;
    object-fit: contain;
}

.car-card.list-view .car-content {
    flex-direction: row;
    justify-content: space-between;
}

.car-card.list-view .car-main-info {
    max-width: 60%;
}

.car-card.list-view .car-booking-info {
    text-align: right;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* Detail Page */
.detail-page {
    padding: 40px 0;
}

/* ── Detail Page ─────────────────────────────────────────── */
.detail-header {
    margin-bottom: 24px;
}

.detail-cat-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #eef3ff;
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.detail-title {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-color);
    margin: 0 0 4px;
    line-height: 1.2;
}

.detail-subtitle {
    font-size: 0.95rem;
    color: #888;
    margin: 0;
}

.detail-layout {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.detail-main {
    flex-grow: 1;
    min-width: 0;
}

.detail-image-wrap {
    border-radius: 16px;
    overflow: hidden;
    background: #f5f7fb;
    margin-bottom: 20px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.detail-image {
    width: 100%;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
}

/* Spec chips on detail page */
.detail-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.detail-spec-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f5f7fb;
    border: 1px solid #e0e5ee;
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #445;
}

.detail-spec-chip i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

/* Description */
.detail-desc {
    padding: 16px 20px;
    background: #f9fafc;
    border-left: 3px solid var(--primary-color);
    border-radius: 0 10px 10px 0;
    font-size: 0.95rem;
    line-height: 1.75;
    color: #445;
    margin-bottom: 28px;
}

[dir="rtl"] .detail-desc {
    border-left: none;
    border-right: 3px solid var(--primary-color);
    border-radius: 10px 0 0 10px;
}

/* Features box */
.detail-features-box {
    background: #fff;
    border: 1px solid #e8ecf5;
    border-radius: 14px;
    padding: 22px 24px;
}

.detail-features-title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0 0 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.detail-features-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.detail-features-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #334;
    font-weight: 500;
}

.detail-features-list li i {
    color: var(--secondary-color);
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* Sidebar */
.detail-sidebar {
    width: 340px;
    flex-shrink: 0;
}

.booking-card {
    background: var(--white);
    border: 1px solid #e0e6f0;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 8px 32px rgba(0,40,120,0.10);
    position: sticky;
    top: 20px;
}

/* Rating row */
.bk-rating-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 18px;
    border-bottom: 1px solid #eef0f5;
    margin-bottom: 20px;
}

.bk-rating-badge {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--secondary-color);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bk-rating-label {
    font-weight: 700;
    font-size: 0.95rem;
    color: #223;
}

.bk-reviews {
    font-size: 0.8rem;
    color: #889;
    margin-top: 2px;
}

/* Price block */
.bk-price-block {
    margin-bottom: 14px;
}

.bk-price-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: #889;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bk-price-value {
    font-size: 2.1rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1.1;
    margin-top: 4px;
}

/* Free cancel */
.bk-pricing-tiers {
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 14px;
}
.bk-pricing-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text3);
    background: var(--bg2);
    padding: 8px 14px;
    border-bottom: 1px solid var(--border-color);
}
.bk-pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 14px;
    font-size: 0.88rem;
    border-bottom: 1px solid var(--border-color);
}
.bk-pricing-row:last-child { border-bottom: none; }
.bk-pricing-row:nth-child(even) { background: var(--bg2); }
.bk-pricing-label { color: var(--text2); font-weight: 500; }
.bk-pricing-price { color: var(--primary); font-weight: 700; }
.bk-pricing-per { color: var(--text3); font-weight: 400; font-size: 0.78rem; }

.bk-free-cancel {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #edfbf3;
    color: #1a7a40;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.bk-free-cancel i {
    color: #22c55e;
}

/* Trust row */
.bk-trust-row {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.bk-trust-row span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #667;
    background: #f5f7fb;
    padding: 4px 10px;
    border-radius: 20px;
}

.bk-trust-row i {
    color: var(--primary-color);
}

/* CTA buttons */
.bk-book-btn {
    width: 100%;
    padding: 15px;
    font-size: 1rem;
    border-radius: 12px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.bk-wa-btn {
    width: 100%;
    padding: 14px;
    font-size: 0.95rem;
    border-radius: 12px;
    background: #25D366;
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    transition: background 0.2s;
}

.bk-wa-btn:hover {
    background: #1ebe5d;
    color: #fff;
}

.price-summary {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

/* ===========================
   Booking Modal
   =========================== */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    overflow-y: auto;
    padding: 20px;
}

.modal-content {
    background: var(--white);
    border-radius: 18px;
    padding: 28px 30px 30px;
    max-width: 520px;
    width: 100%;
    margin: 30px auto;
    position: relative;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
    animation: modalSlideIn 0.28s cubic-bezier(.4,0,.2,1);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(24px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.close-btn {
    position: absolute;
    top: 14px;
    right: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f0f3f7;
    font-size: 1.2rem;
    cursor: pointer;
    color: #778;
    line-height: 32px;
    text-align: center;
    transition: background 0.2s, color 0.2s;
}

.close-btn:hover {
    background: #e0e5ef;
    color: #223;
}

[dir="rtl"] .close-btn {
    right: auto;
    left: 20px;
}

.bk-date-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.bk-date-grid > div {
    min-width: 0;
}

.bk-date-grid input[type="date"] {
    width: 100%;
    box-sizing: border-box;
    min-width: 0;
}

@media (max-width: 400px) {
    .bk-date-grid {
        grid-template-columns: 1fr;
    }
}

/* Additional Services Form */
.services-list {
    margin: 20px 0;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.service-item:last-child {
    border-bottom: none;
}

.service-label {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* FAQ Section — Accordion */
.faq-section {
    padding: 60px 0;
    background-color: var(--white);
}

.faq-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    background: var(--white);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    font-family: inherit;
    transition: background 0.15s;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question[aria-expanded="true"] {
    color: var(--primary-color);
}

.faq-icon {
    flex-shrink: 0;
    font-size: 0.85rem;
    color: var(--primary-color);
    transition: transform 0.25s;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 22px;
}

.faq-answer.open {
    max-height: 300px;
    padding: 0 22px 18px;
}

.faq-answer p {
    margin: 0;
    color: #555;
    font-size: 0.97rem;
    line-height: 1.7;
}

/* Blog Typography */
.article-body {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444;
}

.article-body p {
    margin-bottom: 25px;
}

.article-body h3 {
    font-size: 1.6rem;
    color: var(--text-dark);
    margin: 40px 0 20px 0;
    font-weight: 800;
}

.article-body strong {
    color: var(--primary-color);
}

.blog-card:hover {
    transform: translateY(-5px);
}

/* Footer */
.site-footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 40px 0 0;
    margin-top: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-col h3 {
    color: var(--white);
    margin-bottom: 15px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #e0e0e0;
}

.footer-col ul li a:hover {
    color: var(--white);
    text-decoration: underline;
}

.footer-bottom {
    background-color: #00224f;
    padding: 15px 0;
    text-align: center;
    font-size: 0.9rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 30px;
    border-radius: var(--border-radius);
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    font-weight: bold;
    color: #aaa;
}

.close-btn:hover {
    color: #333;
}

/* Mobile Action Bar & Off-Canvas */
.mobile-action-bar {
    display: none;
    margin-bottom: 20px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 10px;
    gap: 10px;
}

.m-action-btn {
    flex: 1;
    background: none;
    border: none;
    padding: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text-dark);
}

.m-action-btn:hover {
    background: var(--bg-light);
    border-radius: 4px;
}

.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1040;
    opacity: 0;
    transition: opacity 0.3s;
}

.sidebar-overlay.active {
    display: block;
    opacity: 1;
}

.sidebar-close-btn {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    position: absolute;
    right: 15px;
    top: 15px;
    cursor: pointer;
    color: var(--text-dark);
}

/* Sticky Book Bar (mobile) */
.sticky-book-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--border-color);
    padding: 12px 16px;
    z-index: 999;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.10);
}

.sticky-book-bar .sticky-price {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-color);
    white-space: nowrap;
}

.sticky-book-bar .sticky-price small {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    color: #666;
}

.sticky-book-bar .btn {
    flex: 1;
    justify-content: center;
    padding: 12px;
    font-size: 1rem;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    [dir="rtl"] .section-header {
        align-items: flex-end;
    }

    .view-all-cat {
        display: none;
    }

    .view-all {
        font-size: 0.8rem;
        padding: 6px 14px;
    }

    .nav-links {
        display: none;
        /* simple mobile nav */
    }

    .header-actions {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .faq-columns {
        grid-template-columns: 1fr;
    }

    .category-page-layout,
    .detail-layout {
        flex-direction: column !important;
        grid-template-columns: 1fr;
    }

    /* Hide blog sidebar cars list on mobile */
    .blog-sidebar {
        display: none;
    }

    .mobile-action-bar {
        display: flex;
        /* Activate toolbar on mobile */
    }

    .sidebar {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        max-width: 350px;
        height: 100vh;
        background: var(--white);
        z-index: 1050;
        overflow-y: auto;
        transition: left 0.3s ease;
        padding-top: 50px;
        /* space for close btn */
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    }

    .sidebar.active {
        left: 0;
    }

    .sidebar-close-btn {
        display: block;
    }

    .detail-sidebar {
        width: 100%;
    }

    .detail-features-list {
        grid-template-columns: 1fr;
    }

    .detail-title {
        font-size: 1.5rem;
    }

    .bk-price-value {
        font-size: 1.7rem;
    }

    .detail-page {
        padding: 20px 16px;
    }

    .detail-header {
        padding: 0 2px;
    }

    /* Sticky book bar — mobile only */
    .sticky-book-bar {
        display: flex;
    }

    .car-card.list-view {
        flex-direction: column;
        margin: 0 16px;
    }

    .car-list-vertical {
        padding: 0;
    }

    .city-list-header {
        padding: 0 16px;
    }

    .car-card.list-view .car-image-wrap {
        width: 100%;
        height: auto;
        overflow: visible;
        aspect-ratio: 16 / 7;
    }

    .car-card.list-view .car-image {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .car-card.list-view .car-content {
        flex-direction: column;
    }

    .car-card.list-view .car-main-info {
        max-width: 100%;
    }

    .car-card.list-view .car-booking-info {
        text-align: left;
        margin-top: 15px;
    }
}

/* ===========================
   RTL Support (Arabic)
   =========================== */
[dir="rtl"] body {
    font-family: 'Cairo', 'Inter', sans-serif;
}

[dir="rtl"] .site-header .container {
    direction: ltr;
}

[dir="rtl"] .car-content {
    text-align: right;
}

[dir="rtl"] .car-booking-info {
    text-align: right;
}

[dir="rtl"] .footer-grid {
    direction: rtl;
}

[dir="rtl"] .detail-layout {
    flex-direction: row-reverse;
}

[dir="rtl"] .slider-next-btn {
    right: auto;
    left: -15px;
    transform: translateY(-50%) scaleX(-1);
}

[dir="rtl"] .section-header {
    flex-direction: row-reverse;
}

[dir="rtl"] .mobile-action-bar {
    flex-direction: row-reverse;
}

[dir="rtl"] .sidebar-close-btn {
    right: auto;
    left: 15px;
}

[dir="rtl"] .sidebar {
    left: auto;
    right: -100%;
}

[dir="rtl"] .sidebar.active {
    right: 0;
    left: auto;
}

/* Language Switcher */
.lang-switcher a:hover {
    background: rgba(255, 255, 255, 0.4) !important;
}

@media (max-width: 768px) {
    .lang-switcher {
        display: none !important;
        /* Hidden on mobile nav, accessible via menu */
    }
}

/* ═══════════════════════════════════════════════════════════
   CAR OVERVIEW TABLE
═══════════════════════════════════════════════════════════ */
.car-overview-table {
    margin: 2rem 0;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}
.car-overview-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e8e8e8;
    background: #f9f9f9;
    margin: 0;
}
.car-overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.car-ov-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1.5rem;
    border-bottom: 1px solid #f0f0f0;
    gap: 1rem;
}
.car-ov-row:last-child,
.car-ov-row:nth-last-child(2):nth-child(odd) {
    border-bottom: none;
}
.car-ov-label {
    font-size: 0.9rem;
    color: #555;
    font-weight: 500;
    flex-shrink: 0;
}
.car-ov-value {
    font-size: 0.9rem;
    color: #1a1a1a;
    font-weight: 600;
    text-align: right;
}
.car-ov-link {
    color: #e04a2f;
    text-decoration: underline;
    cursor: default;
}
@media (max-width: 600px) {
    .car-overview-grid { grid-template-columns: 1fr; }
    .car-ov-row { padding: 0.65rem 1rem; }
}

/* ═══════════════════════════════════════════════════════════
   DESCRIPTION & HIGHLIGHTS
═══════════════════════════════════════════════════════════ */
.detail-highlights {
    margin: 2rem 0;
}
.detail-highlights-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e04a2f;
    margin-bottom: 1rem;
}

/* ═══════════════════════════════════════════════════════════
   WHY HIRE SECTION
═══════════════════════════════════════════════════════════ */
.detail-why-hire {
    margin: 2rem 0;
    background: #f9f7f5;
    border-left: 4px solid #e04a2f;
    border-radius: 0 12px 12px 0;
    padding: 1.5rem;
}
.detail-why-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 0.75rem 0;
}
.detail-why-text {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.75;
}


/* ═══════════════════════════════════════════════════════════
   COLLAPSIBLE HIGHLIGHTS / WHY HIRE
═══════════════════════════════════════════════════════════ */
.detail-collapsible {
    position: relative;
    overflow: hidden;
    max-height: 100px;
    transition: max-height 0.4s ease;
}
.detail-collapsible[data-expanded="true"] {
    max-height: 2000px;
}
.detail-collapsible-inner {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.8;
}
.detail-collapsible-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(transparent, #fff);
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.detail-collapsible[data-expanded="true"] .detail-collapsible-fade {
    opacity: 0;
}
.detail-show-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    background: none;
    border: none;
    color: #e04a2f;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    transition: gap 0.2s;
}
.detail-show-more:hover { gap: 10px; }
.detail-show-more i {
    transition: transform 0.3s ease;
    font-size: 0.8rem;
}
.detail-show-more.expanded i {
    transform: rotate(180deg);
}
/* Why hire uses white bg for the fade */
.detail-why-hire .detail-collapsible-fade {
    background: linear-gradient(transparent, #f9f7f5);
}
.detail-why-hire .detail-why-text {
    /* handled by collapsible-inner now */
}
