/* ============================================================
   css/style.css — Main Stylesheet (contraste amélioré)
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
    --primary: #cda45e;
    --primary-dark: #b68f4b;
    --primary-light: #f0e0c8;
    --dark: #0a1128;
    --dark-soft: #1a2332;
    --light-bg: #f8fafc;
    --gray: #334155;        /* Plus foncé pour le contraste (4.5:1 minimum) */
    --gray-light: #e2e8f0;
    --white: #ffffff;
    --red: #ff4757;
    --green: #16a34a;
    --radius: 24px;
    --radius-sm: 12px;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.10);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Plus Jakarta Sans', sans-serif;
    --max-width: 1400px;
    --header-height: 72px;
}

/* ---------- Reset & Base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
    font-family: var(--font);
    background: var(--white);
    color: var(--dark);
    overflow-x: hidden;
    line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }
ul { list-style: none; }

/* ---------- Container ---------- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 5%; }

/* ---------- Section Titles ---------- */
.section-title { font-size: 2.5rem; font-weight: 800; text-align: center; margin-bottom: 0.5rem; line-height: 1.2; }
.section-title span { color: var(--primary); }
.section-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 2.5rem auto;
    line-height: 1.6;
}

/* ---------- Buttons ---------- */
.btn-primary {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}
.btn-primary:hover { background: var(--primary-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(205, 164, 94, 0.35); }

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}
.btn-secondary:hover { background: var(--white); color: var(--dark); }

.btn-whatsapp {
    display: inline-block;
    background: #25d366;
    color: var(--white);
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}
.btn-whatsapp:hover { background: #1da851; color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35); }

/* ---------- Header / Nav ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}
.navbar { padding: 0 5%; height: var(--header-height); display: flex; align-items: center; }
.nav-container { width: 100%; max-width: var(--max-width); margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.logo-link { flex-shrink: 0; }
.logo-img { height: 45px; width: auto; object-fit: contain; display: block; }
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}
.nav-toggle-icon {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--dark);
    border-radius: 2px;
    position: relative;
    transition: var(--transition);
}
.nav-toggle-icon::before,
.nav-toggle-icon::after {
    content: '';
    display: block;
    width: 28px;
    height: 3px;
    background: var(--dark);
    border-radius: 2px;
    position: absolute;
    transition: var(--transition);
}
.nav-toggle-icon::before { top: -8px; }
.nav-toggle-icon::after { bottom: -8px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-icon { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-icon::before { transform: rotate(45deg); top: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-icon::after { transform: rotate(-45deg); bottom: 0; }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.nav-menu li a {
    padding: 8px 14px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--dark);
    transition: var(--transition);
}
.nav-menu li a:hover,
.nav-menu li a.active {
    background: var(--primary-light);
    color: var(--primary-dark);
}
.nav-menu li a.active {
    background: var(--primary);
    color: var(--white);
}

.nav-lang-currency {
    display: flex;
    gap: 6px;
    align-items: center;
    margin-left: 10px;
}
.switcher {
    padding: 6px 10px;
    border: 1px solid var(--gray-light);
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.75rem;
    background: var(--white);
    cursor: pointer;
    color: var(--dark);
    transition: var(--transition);
}
.switcher:hover { border-color: var(--primary); }

@media (max-width: 1024px) {
    .nav-toggle { display: block; }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        max-width: 80vw;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 8px;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.08);
        transition: right 0.35s ease;
        overflow-y: auto;
        align-items: stretch;
    }
    .nav-menu.open { right: 0; }
    .nav-menu li a { display: block; padding: 12px 16px; font-size: 1rem; border-radius: 12px; }
    .nav-lang-currency { margin-left: 0; margin-top: 16px; flex-wrap: wrap; gap: 8px; }
    .nav-lang-currency .switcher { flex: 1; padding: 10px 14px; font-size: 0.9rem; }
}

/* ---------- Hero ---------- */
.hero {
    background-image: url('../images/hero.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 5% 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    position: relative;
    border-bottom-left-radius: 60px;
    border-bottom-right-radius: 60px;
    min-height: 540px;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    border-bottom-left-radius: 60px;
    border-bottom-right-radius: 60px;
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}
.hero-content h1 {
    font-size: 3.6rem;
    line-height: 1.1;
    margin-bottom: 16px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}
.hero-content h1 span { color: var(--primary); }
.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 28px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
    color: #f1f5f9;
}
.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-bottom: 30px; }
.hero-trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 32px;
    font-size: 0.9rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(6px);
    padding: 12px 28px;
    border-radius: 50px;
}
.hero-trust-badges span { display: flex; align-items: center; gap: 6px; color: #ffffff; }

/* ---------- Why Choose ---------- */
.why-choose { padding: 80px 0; background: var(--light-bg); }
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 20px;
}
.why-item {
    background: var(--white);
    padding: 32px 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}
.why-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.why-icon { font-size: 2.6rem; margin-bottom: 12px; }
.why-item h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 8px; color: var(--dark); }
.why-item p { color: var(--gray); font-size: 0.95rem; line-height: 1.6; }

/* ---------- Marrakech Section ---------- */
.marrakech-section { padding: 80px 0; background: var(--white); }
.marrakech-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.marrakech-text h2 { font-size: 2.4rem; font-weight: 800; margin-bottom: 16px; }
.marrakech-text h2 span { color: var(--primary); }
.marrakech-text p { color: var(--gray); margin-bottom: 16px; line-height: 1.7; }
.marrakech-text .btn-primary { margin-top: 8px; }
.marrakech-image img { border-radius: var(--radius); width: 100%; height: auto; box-shadow: var(--shadow); }

/* ---------- Fleet / Car Grid ---------- */
.fleet-section { padding: 80px 0; background: var(--light-bg); }
.filter-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.filter-btn {
    padding: 10px 24px;
    border-radius: 50px;
    border: 1px solid var(--gray-light);
    background: var(--white);
    cursor: pointer;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
    color: var(--dark);
}
.filter-btn:hover { border-color: var(--primary); color: var(--primary); }
.filter-btn.active { background: var(--primary); color: var(--white); border-color: var(--primary); }

.car-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
}

.car-card {
    background: var(--white);
    border: 1px solid #f1f5f9;
    border-radius: var(--radius);
    padding: 24px;
    position: relative;
    transition: var(--transition);
    box-shadow: var(--shadow);
    cursor: pointer;
}
.car-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.status-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 14px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    z-index: 2;
    background: #e8f9ef;
    color: #166534;
}
.brand-header { margin-bottom: 12px; }
.brand-logo { width: 40px; height: 40px; object-fit: contain; margin-bottom: 4px; opacity: 0.8; }
.car-category { font-size: 0.75rem; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.car-name { font-weight: 800; font-size: 1.3rem; margin-top: 2px; color: var(--dark); }
.img-container {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 16px;
    margin: 10px 0;
    background: #f1f5f9;
}
.img-container img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.car-card:hover .img-container img { transform: scale(1.04); }
.specs-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 16px 0;
    border-top: 1px solid #f1f5f9;
    margin-top: 10px;
}
.spec-item { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; font-weight: 600; color: var(--dark); }
.price-container { display: flex; justify-content: space-between; align-items: center; margin: 12px 0 16px 0; }
.price-val { font-size: 1.8rem; font-weight: 800; color: var(--dark); }
.price-val span { font-size: 0.9rem; color: var(--gray); font-weight: 400; }
.btn-reserve {
    width: 100%;
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 16px;
    border-radius: 18px;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}
.btn-reserve:hover { background: var(--primary-dark); transform: scale(1.01); }

/* ---------- Brands Carousel ---------- */
.brands-section { padding: 40px 0; background: var(--white); border-top: 1px solid #f1f5f9; overflow: hidden; }
.brands-track {
    display: flex;
    gap: 60px;
    animation: scrollBrands 35s linear infinite;
    width: max-content;
    align-items: center;
}
.brand-item { height: 50px; width: 100px; object-fit: contain; filter: grayscale(1); opacity: 0.5; transition: var(--transition); }
.brand-item:hover { filter: grayscale(0); opacity: 1; }
@keyframes scrollBrands { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ---------- Reviews ---------- */
.reviews-section { padding: 60px 0; background: var(--light-bg); overflow: hidden; }
.reviews-track {
    display: flex;
    gap: 24px;
    animation: scrollReviews 45s linear infinite;
    width: max-content;
}
.review-card {
    background: var(--white);
    padding: 24px 28px;
    border-radius: var(--radius);
    min-width: 300px;
    max-width: 340px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.review-card:hover { box-shadow: var(--shadow-hover); }
.review-card .stars { color: #fbbf24; font-size: 1.1rem; margin-bottom: 6px; letter-spacing: 2px; }
.review-card b { display: block; font-size: 1rem; margin-bottom: 4px; color: var(--dark); }
.review-card p { color: var(--gray); font-size: 0.9rem; line-height: 1.5; }
@keyframes scrollReviews { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ---------- Pricing Table ---------- */
.table-section { padding: 80px 0; background: var(--white); }
.car-list-table {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid #f1f5f9;
}
table { width: 100%; border-collapse: collapse; }
th { background: var(--dark); color: var(--white); padding: 16px 20px; text-align: left; font-weight: 700; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.5px; }
td { padding: 14px 20px; border-bottom: 1px solid #f1f5f9; vertical-align: middle; font-size: 0.95rem; color: var(--dark); }
tr:last-child td { border-bottom: none; }
tr:hover td { background: #fafbfc; }
.table-car-img { width: 80px; height: 50px; object-fit: cover; border-radius: 8px; }
.long-term-price { font-weight: 800; font-size: 1.2rem; color: var(--dark); }
.save-badge { background: #fff3cd; color: var(--dark); padding: 3px 12px; border-radius: 20px; font-size: 0.7rem; font-weight: 700; display: inline-block; margin-top: 2px; }

/* ---------- FAQ Preview ---------- */
.faq-preview { padding: 80px 0; background: var(--light-bg); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 40px; }
.faq-item {
    background: var(--white);
    padding: 24px 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow-hover); }
.faq-item h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 6px; color: var(--dark); }
.faq-item p { color: var(--gray); font-size: 0.95rem; line-height: 1.6; }
.faq-cta { text-align: center; }

/* ---------- Blog Preview ---------- */
.blog-preview { padding: 80px 0; background: var(--white); }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 30px; margin-bottom: 40px; }
.blog-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #f1f5f9;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.blog-card img { width: 100%; height: 220px; object-fit: cover; }
.blog-card-content { padding: 22px 24px 26px; }
.blog-tag { display: inline-block; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--primary); background: var(--primary-light); padding: 2px 12px; border-radius: 20px; margin-bottom: 8px; }
.blog-card-content h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: 6px; line-height: 1.3; color: var(--dark); }
.blog-card-content p { color: var(--gray); font-size: 0.9rem; line-height: 1.6; margin-bottom: 12px; }
.blog-link { font-weight: 700; font-size: 0.9rem; color: var(--primary); }
.blog-link:hover { color: var(--primary-dark); }
.blog-cta { text-align: center; }

/* ---------- CTA Final ---------- */
.cta-final { padding: 80px 0; background: var(--dark); color: var(--white); text-align: center; }
.cta-final h2 { font-size: 2.6rem; font-weight: 800; margin-bottom: 12px; }
.cta-final h2 span { color: var(--primary); }
.cta-final p { font-size: 1.1rem; color: #94a3b8; max-width: 600px; margin: 0 auto 30px auto; }
.cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--dark-soft); color: var(--white); padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 40px; }
.footer-col h4 { font-size: 1.1rem; font-weight: 800; margin-bottom: 16px; color: var(--white); }
.footer-col p, .footer-col li { color: #94a3b8; font-size: 0.9rem; line-height: 1.8; }
.footer-col ul li a { color: #94a3b8; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--primary); }
.footer-logo { height: 50px; width: auto; object-fit: contain; margin-bottom: 12px; }
.footer-social { display: flex; gap: 12px; margin-top: 12px; }
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    color: #94a3b8;
    font-size: 1.2rem;
    transition: var(--transition);
}
.footer-social a:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.06); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { color: #4b5563; font-size: 0.8rem; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 16px; }
.footer-legal li a { color: #4b5563; font-size: 0.8rem; transition: var(--transition); }
.footer-legal li a:hover { color: var(--primary); }

/* ---------- Modal ---------- */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    backdrop-filter: blur(8px);
    padding: 20px;
}
.modal.open { display: flex; }
.details-modal-content {
    background: #fdfdfd;
    width: 100%;
    max-width: 960px;
    padding: 32px 36px;
    border-radius: var(--radius);
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    color: var(--dark);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}
.modal-close {
    position: sticky;
    top: 0;
    float: right;
    background: none;
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: var(--gray);
    padding: 4px 8px;
    line-height: 1;
    transition: var(--transition);
    z-index: 10;
}
.modal-close:hover { color: var(--dark); transform: rotate(90deg); }
.details-layout { display: grid; grid-template-columns: 1.4fr 1fr; gap: 30px; }
.details-left-header { display: flex; gap: 20px; margin-bottom: 16px; }
.details-main-img { width: 220px; height: 150px; object-fit: cover; border-radius: var(--radius-sm); box-shadow: var(--shadow); flex-shrink: 0; }
.details-specs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px; }
.spec-box { font-size: 0.85rem; color: #475569; }
.spec-box b { display: block; color: #0f172a; font-size: 0.95rem; }
.section-subtitle { font-weight: 800; font-size: 1.1rem; margin: 18px 0 8px 0; color: #0f172a; }
.desc-text { font-size: 0.9rem; color: var(--gray); line-height: 1.7; }
.gallery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 12px; }
.gallery-grid img { width: 100%; height: 110px; object-fit: cover; border-radius: var(--radius-sm); }
.includes-list { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px; margin-top: 12px; font-size: 0.85rem; color: #334155; }
.includes-item { display: flex; align-items: center; gap: 6px; }
.includes-item::before { content: "✓"; color: var(--green); font-weight: 700; }

/* ---------- Booking Side ---------- */
.booking-side-card { background: var(--white); border: 1px solid var(--gray-light); border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow); align-self: start; }
.price-header-bar { background: var(--dark); color: var(--white); padding: 18px 20px; display: flex; align-items: baseline; gap: 6px; }
.price-header-bar .amount { font-size: 1.8rem; font-weight: 800; }
.price-header-bar .unit { font-size: 0.85rem; color: #9ca3af; }
.booking-side-body { padding: 20px; }
.input-group { margin-bottom: 14px; }
.input-group label { display: block; font-weight: 700; font-size: 0.8rem; margin-bottom: 4px; color: #334155; }
.input-group input, .input-group select {
    width: 100%; padding: 10px 14px; border: 1px solid #cbd5e1; border-radius: 8px; font-size: 0.9rem; outline: none; font-family: var(--font); transition: var(--transition); background: var(--white); color: var(--dark);
}
.input-group input:focus, .input-group select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(205, 164, 94, 0.15); }
.options-section { margin: 14px 0; }
.option-item { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; font-size: 0.85rem; color: #475569; cursor: pointer; }
.option-item input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--dark); cursor: pointer; flex-shrink: 0; }
.total-summary-box { background: #f1f5f9; padding: 14px 18px; border-radius: 8px; margin: 16px 0; display: flex; justify-content: space-between; align-items: center; font-weight: 800; font-size: 1rem; color: var(--dark); }
.btn-book-now { width: 100%; background: var(--dark); color: var(--white); border: none; padding: 16px; border-radius: 8px; font-weight: 800; font-size: 1rem; cursor: pointer; transition: var(--transition); }
.btn-book-now:hover { background: #1a2332; transform: scale(1.01); }
.btn-book-now:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

/* ---------- RTL Support ---------- */
[dir="rtl"] .status-badge { left: 16px; right: auto; }
[dir="rtl"] .modal-close { float: left; }
[dir="rtl"] .footer-legal { flex-direction: row-reverse; }
[dir="rtl"] .nav-lang-currency { margin-left: 0; margin-right: 10px; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .hero-content h1 { font-size: 2.8rem; }
    .details-layout { grid-template-columns: 1fr; }
    .details-left-header { flex-direction: column; align-items: center; text-align: center; }
    .details-main-img { width: 100%; max-width: 400px; height: 200px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .faq-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .hero { padding: 80px 5% 70px; border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; min-height: 420px; }
    .hero-content h1 { font-size: 2.2rem; }
    .hero-content p { font-size: 1rem; }
    .hero-trust-badges { padding: 10px 18px; gap: 12px 20px; font-size: 0.8rem; border-radius: 30px; }
    .section-title { font-size: 2rem; }
    .marrakech-grid { grid-template-columns: 1fr; gap: 30px; }
    .marrakech-text h2 { font-size: 2rem; }
    .car-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-legal { justify-content: center; }
    .details-modal-content { padding: 20px 16px; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid img { height: 90px; }
    .includes-list { grid-template-columns: 1fr; }
    .details-specs-grid { grid-template-columns: 1fr 1fr; }
    .table-section { padding: 40px 0; }
    .car-list-table { overflow-x: auto; }
    table { min-width: 700px; }
    .cta-final h2 { font-size: 2rem; }
}
@media (max-width: 480px) {
    .hero-content h1 { font-size: 1.8rem; }
    .hero-actions .btn-primary, .hero-actions .btn-secondary { width: 100%; text-align: center; }
    .hero-trust-badges { flex-direction: column; align-items: center; gap: 6px; padding: 12px 16px; border-radius: 20px; }
    .filter-container { gap: 6px; }
    .filter-btn { padding: 6px 14px; font-size: 0.75rem; }
    .price-val { font-size: 1.4rem; }
    .details-modal-content { padding: 16px 12px; }
    .details-main-img { height: 160px; }
    .gallery-grid img { height: 70px; }
    .booking-side-body { padding: 14px; }
    .price-header-bar .amount { font-size: 1.4rem; }
}