@font-face{font-family:"Playfair Display";src:url("../fonts/playfair-700.woff2") format("woff2");font-weight:700;font-style:normal;font-display:swap}
@font-face{font-family:"Inter";src:url("../fonts/inter-400.woff2") format("woff2");font-weight:400;font-style:normal;font-display:swap}
@font-face{font-family:"Inter";src:url("../fonts/inter-600.woff2") format("woff2");font-weight:600;font-style:normal;font-display:swap}
/* ═══════════════════════════════════════════════════════════
   AYOUB LUXURY CAR — Main Stylesheet
   ═══════════════════════════════════════════════════════════ */

/* ─── Variables CSS ─────────────────────────────────────── */
:root {
    --primary: #0a0a0a;
    --secondary: #f0ece4;
    --accent: #c9a84c;
    --accent-light: #e8c96d;
    --accent-dark: #b08d3a;
    --white: #ffffff;
    --text-secondary: #9ca3af;
    --card-bg: #111111;
    --bg: #0a0a0a;
    --footer-bg: #050505;
    --success: #22c55e;
    --error: #ef4444;
    --warning: #f59e0b;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.4);
    --transition: all 0.3s ease;
}

/* ─── Reset & Base ──────────────────────────────────────── */
*,
*::before,
*::after {
    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-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--white);
    background-color: var(--bg);
    overflow-x: hidden;
}

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

a {
    color: var(--accent);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-light);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
}

/* ─── Container ─────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ─── Buttons ───────────────────────────────────────────── */
.btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: #000;
    font-family: var(--font-body);
    font-weight: 600;
    border: none;
    border-radius: var(--radius-sm);
    padding: 12px 28px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: none;
    font-size: 15px;
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--accent-light), var(--accent));
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    color: var(--white);
    font-weight: 600;
    border: 2px solid var(--white);
    border-radius: var(--radius-sm);
    padding: 12px 28px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 15px;
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-outline-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    color: var(--accent);
    font-weight: 600;
    border: 2px solid var(--accent);
    border-radius: var(--radius-sm);
    padding: 12px 28px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 15px;
}

.btn-outline-gold:hover {
    background: var(--accent);
    color: #000;
}

.btn-outline-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: transparent;
    color: var(--white);
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: var(--radius-sm);
    padding: 8px 16px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
}

.btn-outline-light:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
    border: none;
    border-radius: var(--radius-sm);
    padding: 12px 28px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 15px;
}

.btn-dark:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #25d366;
    color: #fff;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-sm);
    padding: 12px 28px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 15px;
}

.btn-whatsapp:hover {
    background: #1fb855;
    color: #fff;
    transform: translateY(-2px);
}

.btn-disabled {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #374151;
    color: #6b7280;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-sm);
    padding: 12px 28px;
    cursor: not-allowed;
    font-size: 15px;
}

.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-block { width: 100%; text-align: center; }

/* ─── Header ────────────────────────────────────────────── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
    padding: 0;
}

.site-header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
    padding: 12px 20px;
}

.header-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.header-logo .logo-img {
    height: 75px;
    width: auto;
    border-radius: 8px;
    filter: brightness(1.2) contrast(1.05) drop-shadow(0 0 8px rgba(201, 168, 76, 0.3));
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.06);
    padding: 4px;
    border: 1px solid rgba(201, 168, 76, 0.2);
}

.header-logo:hover .logo-img {
    filter: brightness(1.35) contrast(1.1) drop-shadow(0 0 12px rgba(201, 168, 76, 0.5));
    transform: scale(1.04);
    border-color: rgba(201, 168, 76, 0.4);
}

.header-nav {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav-link {
    color: rgba(255,255,255,0.85);
    font-size: 15px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent);
    background: rgba(201, 168, 76, 0.1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    font-size: 18px;
    transition: var(--transition);
}

.header-whatsapp:hover {
    background: #1fb855;
    color: #fff;
    transform: scale(1.1);
}

/* Mobile toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Cards ─────────────────────────────────────────────── */
.card {
    background: var(--card-bg);
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
    transition: var(--transition);
}

.card:hover {
    border-color: rgba(201, 168, 76, 0.2);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.card-body {
    padding: 20px;
}

/* ─── Section styles ────────────────────────────────────── */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-badge {
    display: inline-block;
    background: rgba(201, 168, 76, 0.15);
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ─── Page Hero (sous-pages) ────────────────────────────── */
.page-hero {
    position: relative;
    height: 50vh;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-hero-small {
    height: 40vh;
    min-height: 280px;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
}

.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
}

.page-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 12px;
}

.page-hero-content p {
    color: var(--text-secondary);
    font-size: 1.2rem;
}

/* ─── Light sections with gold mosaic ───────────────────── */
.section-stats,
.section-quick-booking,
.section-values {
    background-color: var(--secondary);
    position: relative;
    overflow: hidden;
}

.section-stats > .container,
.section-quick-booking > .container,
.section-values > .container {
    position: relative;
    z-index: 1;
}

.smoke-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 1;
    pointer-events: none;
}

.smoke-bg svg {
    width: 100%;
    height: 100%;
}

/* Textes sombres sur fond clair */
.section-stats .stat-number { color: var(--accent-dark); }
.section-stats .stat-label,
.section-quick-booking .section-desc,
.section-values .value-card p { color: #5a5550; }
.section-stats .section-title,
.section-quick-booking .section-title,
.section-values .section-title { color: #1a1714; }
.section-stats .section-badge,
.section-quick-booking .section-badge,
.section-values .section-badge { color: #1a1714; background: rgba(0,0,0,0.08); font-size: 14px; font-weight: 700; }
.section-stats .stat-card,
.section-values .value-card { background: rgba(255,255,255,0.65); border-color: rgba(201,168,76,0.2); }
.section-values .value-card h3 { color: #1a1714; }
.section-quick-booking .booking-tab { background: rgba(255,255,255,0.5); border-color: rgba(0,0,0,0.08); color: #5a5550; }
.section-quick-booking .booking-tab.active { background: rgba(201,168,76,0.15); border-color: var(--accent); color: var(--accent-dark); }
.section-quick-booking .booking-mode-card { background: rgba(255,255,255,0.7); border-color: rgba(201,168,76,0.12); }
.section-quick-booking .booking-mode-card h3,
.section-quick-booking .mode-desc { color: #1a1714; }
.section-quick-booking .form-group label { color: #5a5550; }
.section-quick-booking .form-group input,
.section-quick-booking .form-group select { background: rgba(255,255,255,0.8); border-color: rgba(0,0,0,0.1); color: #1a1714; }
.section-quick-booking .vehicule-option-card { background: rgba(255,255,255,0.7); border-color: rgba(0,0,0,0.06); }
.section-quick-booking .vehicule-option-info h4 { color: #1a1714; }
.section-quick-booking .vehicule-option-specs { color: #5a5550; }
.section-quick-booking .fiche-card { background: rgba(255,255,255,0.75); }
.section-quick-booking .fiche-details h3 { color: #1a1714; }
.section-quick-booking .fiche-spec { color: #5a5550; background: rgba(0,0,0,0.03); }
.section-quick-booking .res-calendar-wrapper { background: rgba(255,255,255,0.7); border-color: rgba(0,0,0,0.06); }
.section-quick-booking .res-cal-instruction { color: var(--accent-dark); }
.section-quick-booking .cal-day.available { color: #1a6b35; background: rgba(34,197,94,0.1); border-color: rgba(34,197,94,0.15); }
.section-quick-booking .cal-day.past { color: rgba(0,0,0,0.15); }
.section-quick-booking .calendar-weekdays span { color: var(--accent-dark); }
.section-quick-booking .res-cal-date-box { background: rgba(255,255,255,0.6); border-color: rgba(0,0,0,0.08); }
.section-quick-booking .res-cal-label { color: #7a7570; }
.section-quick-booking .res-cal-value { color: #1a1714; }
.section-quick-booking .booking-result-card { background: rgba(255,255,255,0.5); border-color: rgba(0,0,0,0.06); }
.section-quick-booking .booking-result-info h5 { color: #1a1714; }

/* ─── Stats Section ─────────────────────────────────────── */
.section-stats {
    padding: 80px 0;
}

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

.stat-card {
    text-align: center;
    padding: 30px 20px;
    border-top: 3px solid var(--accent);
    background: rgba(255,255,255,0.03);
    border-radius: var(--radius);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.06);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 15px;
    font-weight: 500;
}

/* ─── Why Section ───────────────────────────────────────── */
.section-why {
    padding: 100px 0;
    background: var(--primary);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.why-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--card-bg);
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
}

.why-card:hover {
    border-color: rgba(201, 168, 76, 0.3);
    transform: translateY(-5px);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: rgba(201, 168, 76, 0.12);
    color: var(--accent);
    font-size: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.why-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.why-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

/* ─── Quick Booking Section ─────────────────────────────── */
.section-quick-booking {
    padding: 100px 0;
}

.section-header.light .section-title {
    color: var(--white);
}

.quick-form {
    max-width: 900px;
    margin: 0 auto;
}

.quick-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.quick-form-grid .form-submit {
    grid-column: 1 / -1;
}

/* ─── Testimonials ──────────────────────────────────────── */
.section-testimonials {
    padding: 100px 0;
    background: var(--primary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    padding: 30px;
}

.testimonial-stars {
    color: var(--accent);
    font-size: 16px;
    margin-bottom: 16px;
    display: flex;
    gap: 3px;
}

.testimonial-text {
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 15px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    font-size: 40px;
    color: var(--accent);
    opacity: 0.6;
}

.testimonial-author strong {
    display: block;
    color: var(--white);
    font-size: 15px;
}

.testimonial-author span {
    color: var(--text-secondary);
    font-size: 13px;
}

/* ─── Coverage Section ──────────────────────────────────── */
.section-coverage {
    padding: 100px 0;
    background: linear-gradient(rgba(10, 10, 10, 0.85), rgba(10, 10, 10, 0.85)),
                url('../images/hero-coverage.webp') center/cover no-repeat fixed;
}

.coverage-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.map-svg {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.map-path {
    fill: rgba(201, 168, 76, 0.08);
    stroke: var(--accent);
    stroke-width: 1.5;
    stroke-opacity: 0.4;
}

.map-city {
    fill: rgba(255,255,255,0.5);
}

.map-city-main {
    fill: var(--accent);
    filter: drop-shadow(0 0 8px rgba(201, 168, 76, 0.6));
}

.map-city-pulse {
    fill: transparent;
    stroke: var(--accent);
    stroke-width: 2;
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
    0% { r: 10; opacity: 1; }
    100% { r: 25; opacity: 0; }
}

.map-label {
    fill: var(--text-secondary);
    font-size: 12px;
    font-family: var(--font-body);
}

.map-label-main {
    fill: var(--accent);
    font-size: 16px;
    font-weight: 700;
    font-family: var(--font-body);
}

.coverage-cities {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.coverage-cities.centered {
    justify-content: center;
}

.city-tag {
    background: rgba(255,255,255,0.05);
    color: var(--text-secondary);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    gap: 8px;
}

.city-tag.main {
    background: rgba(201, 168, 76, 0.15);
    color: var(--accent);
    border-color: rgba(201, 168, 76, 0.3);
    font-weight: 600;
}

/* ─── CTA Section ───────────────────────────────────────── */
.section-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 16px;
}

.cta-desc {
    color: rgba(0,0,0,0.7);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ─── Forms ─────────────────────────────────────────────── */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.form-group label i {
    color: var(--accent);
    margin-right: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 15px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

.form-group select option {
    background: var(--primary);
    color: var(--white);
}

.form-group select optgroup,
select optgroup {
    background: #f0ece4;
    color: var(--accent-dark);
    font-weight: 700;
    font-style: normal;
    border-top: 1px solid rgba(201, 168, 76, 0.3);
}

.form-group select optgroup option,
select optgroup option {
    background: #ffffff;
    color: #1a1a1a;
    font-weight: 400;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 20px;
}

.form-grid .full-width {
    grid-column: 1 / -1;
}

.form-message {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    margin-bottom: 16px;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(34, 197, 94, 0.15);
    color: var(--success);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.form-message.error {
    display: block;
    background: rgba(239, 68, 68, 0.15);
    color: var(--error);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.form-message.info {
    display: block;
    background: rgba(201, 168, 76, 0.15);
    color: var(--accent);
    border: 1px solid rgba(201, 168, 76, 0.3);
}

/* ─── Footer ────────────────────────────────────────────── */
.site-footer {
    background: var(--footer-bg);
}

.footer-main {
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-logo .logo-img {
    height: 75px;
    width: auto;
    margin-bottom: 12px;
    border-radius: 8px;
    filter: brightness(1.2) contrast(1.05) drop-shadow(0 0 8px rgba(201, 168, 76, 0.3));
    background: rgba(255, 255, 255, 0.06);
    padding: 4px;
    border: 1px solid rgba(201, 168, 76, 0.2);
}

.footer-slogan {
    color: var(--accent);
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 15px;
    margin-bottom: 16px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
    color: var(--text-secondary);
    border-radius: 50%;
    font-size: 16px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
}

.footer-title {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 6px;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: var(--text-secondary);
    font-size: 14px;
}

.footer-contact li i {
    color: var(--accent);
    width: 16px;
    text-align: center;
}

.footer-contact a {
    color: var(--text-secondary);
}

.footer-contact a:hover {
    color: var(--accent);
}

.footer-hours p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-hours i {
    color: var(--accent);
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 13px;
}

/* ─── Chatbox ───────────────────────────────────────────── */
.chatbox {
    position: fixed;
    bottom: 90px;
    right: 20px;
    z-index: 999;
}

.chatbox-toggle {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: #000;
    border: none;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbox-toggle:hover {
    transform: scale(1.1);
}

.chatbox-window {
    display: none;
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 340px;
    background: var(--card-bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
}

.chatbox-window.open {
    display: block;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.chatbox-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    background: var(--secondary);
}

.chatbox-header h4 {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
}

.chatbox-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 22px;
    cursor: pointer;
    line-height: 1;
}

.chatbox-body {
    padding: 16px;
    max-height: 250px;
    overflow-y: auto;
}

.chatbox-message {
    margin-bottom: 12px;
}

.chatbox-message p {
    background: rgba(255,255,255,0.06);
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 14px;
    color: var(--text-secondary);
    display: inline-block;
}

.chatbox-message.bot p {
    background: rgba(201, 168, 76, 0.1);
    color: var(--accent);
}

.chatbox-message.sent p {
    background: rgba(34, 197, 94, 0.15);
    color: var(--success);
}

.chatbox-form {
    padding: 12px;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.chatbox-form input,
.chatbox-form textarea {
    width: 100%;
    padding: 8px 12px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 13px;
}

.chatbox-form textarea {
    resize: none;
}

.chatbox-form .btn-gold {
    padding: 8px 16px;
    font-size: 13px;
}

/* ─── WhatsApp Float ────────────────────────────────────── */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 998;
    width: 56px;
    height: 56px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

/* ─── About ─────────────────────────────────────────────── */
.section-about-intro {
    padding: 100px 0;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.7;
}

.about-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 24px;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 168, 76, 0.1);
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
}

.highlight i {
    color: var(--accent);
}

.about-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

/* ─── Values ────────────────────────────────────────────── */
.section-values {
    padding: 100px 0;
}

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

.value-card {
    text-align: center;
    padding: 40px 24px;
}

.value-icon {
    width: 70px;
    height: 70px;
    background: rgba(201, 168, 76, 0.12);
    color: var(--accent);
    font-size: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.value-card p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* ─── Team ──────────────────────────────────────────────── */
.section-team {
    padding: 100px 0;
}

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

.team-card {
    text-align: center;
    padding: 30px 20px;
}

.team-photo {
    font-size: 80px;
    color: var(--accent);
    opacity: 0.5;
    margin-bottom: 16px;
}

.team-card h3 {
    font-size: 1.3rem;
    margin-bottom: 6px;
}

.team-role {
    display: block;
    color: var(--accent);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 12px;
}

.team-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

/* ─── Contact Page ──────────────────────────────────────── */
.section-contact {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-form-wrapper h2,
.contact-info-wrapper h2 {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
}

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--card-bg);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,0.05);
}

.info-icon {
    width: 46px;
    height: 46px;
    background: rgba(201, 168, 76, 0.12);
    color: var(--accent);
    font-size: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon.whatsapp {
    background: rgba(37, 211, 102, 0.15);
    color: #25d366;
}

.contact-info-card h4 {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 2px;
}

.contact-info-card a,
.contact-info-card p {
    color: var(--white);
    font-size: 15px;
}

.contact-map {
    border-radius: var(--radius);
    overflow: hidden;
}

.contact-map-full {
    margin-top: 60px;
}

.contact-map-title {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.contact-map-title i {
    color: var(--accent);
    margin-right: 8px;
}

/* ─── Client / Auth ─────────────────────────────────────── */
.section-client {
    padding: 80px 0;
}

.auth-container {
    max-width: 500px;
    margin: 0 auto;
}

.auth-tabs {
    display: flex;
    background: var(--card-bg);
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-bottom: 30px;
}

.auth-tab {
    flex: 1;
    padding: 14px;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.auth-tab.active {
    background: var(--accent);
    color: #000;
}

.auth-link {
    text-align: center;
    margin-top: 16px;
}

.auth-link a {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Dashboard */
.client-dashboard {
    max-width: 900px;
    margin: 0 auto;
}

.dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    padding: 24px;
    background: var(--card-bg);
    border-radius: var(--radius);
}

.dashboard-user {
    display: flex;
    align-items: center;
    gap: 16px;
}

.user-avatar {
    font-size: 50px;
    color: var(--accent);
    opacity: 0.6;
}

.dashboard-user h2 {
    font-size: 1.4rem;
    margin-bottom: 4px;
}

.dashboard-user p {
    color: var(--text-secondary);
    font-size: 14px;
}

.dashboard-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 30px;
}

.dash-tab {
    padding: 12px 20px;
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.dash-tab.active {
    background: rgba(201, 168, 76, 0.15);
    color: var(--accent);
    border-color: rgba(201, 168, 76, 0.3);
}

.reservation-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 16px;
    margin-bottom: 12px;
}

.res-image {
    width: 120px;
    height: 80px;
    flex-shrink: 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.res-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.res-info h4 {
    font-family: var(--font-body);
    font-size: 16px;
    margin-bottom: 6px;
}

.res-info p {
    color: var(--text-secondary);
    font-size: 13px;
    margin-bottom: 4px;
}

.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.status-badge.confirmed { background: rgba(34, 197, 94, 0.15); color: var(--success); }
.status-badge.pending { background: rgba(245, 158, 11, 0.15); color: var(--warning); }
.status-badge.cancelled { background: rgba(239, 68, 68, 0.15); color: var(--error); }

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-secondary);
}

.empty-state i {
    font-size: 48px;
    color: var(--accent);
    opacity: 0.4;
    margin-bottom: 16px;
    display: block;
}

.loading {
    text-align: center;
    padding: 40px;
    color: var(--accent);
}

/* ─── Page section fallback ─────────────────────────────── */
.page-section {
    padding: 120px 0 80px;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ─── Booking Tabs (Reservation rapide) ─────────────────── */
.booking-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 30px;
}

.booking-tab {
    padding: 14px 28px;
    background: rgba(255,255,255,0.04);
    border: 2px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.booking-tab:hover {
    border-color: rgba(201, 168, 76, 0.3);
    color: var(--white);
}

.booking-tab.active {
    background: rgba(201, 168, 76, 0.12);
    border-color: var(--accent);
    color: var(--accent);
}

.booking-mode {
    display: none;
}

.booking-mode.active {
    display: block;
}

.booking-mode-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
}

.booking-mode-card h3 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.booking-mode-card h3 i {
    color: var(--accent);
}

.booking-mode-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    align-items: end;
}

/* Booking results */
.booking-results {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.booking-results h4 {
    font-family: var(--font-body);
    font-size: 16px;
    margin-bottom: 16px;
    color: var(--success);
}

.booking-results h4 i {
    margin-right: 6px;
}

.booking-results-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.booking-result-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.booking-result-card:hover {
    border-color: rgba(201, 168, 76, 0.2);
}

.booking-result-card img {
    width: 90px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.booking-result-info {
    flex: 1;
}

.booking-result-info h5 {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

.booking-result-price {
    color: var(--accent);
    font-weight: 600;
    font-size: 14px;
}

/* ─── Availability Calendar ─────────────────────────────── */
.availability-calendar {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.calendar-header-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 16px;
}

.calendar-header-bar h4 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    min-width: 160px;
    text-align: center;
}

.calendar-nav {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--white);
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.calendar-nav:hover {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 4px;
}

.calendar-weekdays span {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    padding: 8px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.cal-day.empty {
    background: transparent;
}

.cal-day.available {
    background: rgba(34, 197, 94, 0.1);
    color: var(--success);
    cursor: pointer;
    border: 1px solid rgba(34, 197, 94, 0.15);
}

.cal-day.available:hover {
    background: rgba(34, 197, 94, 0.25);
    border-color: var(--success);
}

.cal-day.unavailable {
    background: rgba(239, 68, 68, 0.08);
    color: rgba(239, 68, 68, 0.4);
    cursor: not-allowed;
    text-decoration: line-through;
}

.cal-day.past {
    color: rgba(255,255,255,0.15);
    cursor: default;
}

.calendar-legend {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-secondary);
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.legend-dot.available {
    background: var(--success);
}

.legend-dot.unavailable {
    background: var(--error);
    opacity: 0.5;
}

.calendar-action {
    text-align: center;
    margin-top: 20px;
}

/* ─── Testimonial Source Badge ──────────────────────────── */
.testimonial-source {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.testimonial-source i {
    color: #4285f4;
    font-size: 14px;
}

/* ─── Morocco Map Luxury ───────────────────────────────── */
.coverage-luxury {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.morocco-map-luxury {
    display: flex;
    justify-content: center;
}

.map-svg-luxury {
    width: 100%;
    max-width: 420px;
}

.map-path-luxury {
    stroke: var(--accent);
    stroke-width: 1.5;
    stroke-opacity: 0.5;
    fill: url(#mapGrad);
}

.map-line {
    stroke: var(--accent);
    stroke-width: 0.8;
    stroke-opacity: 0.2;
    stroke-dasharray: 4 4;
}

.map-dot {
    fill: rgba(201, 168, 76, 0.6);
}

.map-text {
    fill: var(--white);
    font-size: 12px;
    font-family: var(--font-body);
    font-weight: 600;
}

.map-text-sub {
    fill: var(--text-secondary);
    font-size: 9px;
    font-family: var(--font-body);
}

.map-main-dot {
    fill: var(--accent);
}

.map-pulse-ring {
    fill: transparent;
    stroke: var(--accent);
    stroke-width: 2;
    animation: pulse-ring 2s ease-out infinite;
}

.map-pulse-ring-2 {
    fill: transparent;
    stroke: var(--accent);
    stroke-width: 1.5;
    animation: pulse-ring 2s ease-out 1s infinite;
}

@keyframes pulse-ring {
    0% { r: 12; opacity: 0.8; }
    100% { r: 30; opacity: 0; }
}

.map-main-text {
    fill: var(--accent);
    font-size: 16px;
    font-family: var(--font-heading);
    font-weight: 700;
}

.map-main-sub {
    fill: var(--accent-light);
    font-size: 10px;
    font-family: var(--font-body);
    font-weight: 500;
}

/* Coverage list luxury */
.coverage-list-luxury {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.coverage-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.coverage-item:hover {
    border-color: rgba(201, 168, 76, 0.2);
    background: rgba(255,255,255,0.05);
}

.coverage-item.main {
    background: rgba(201, 168, 76, 0.08);
    border-color: rgba(201, 168, 76, 0.25);
}

.coverage-icon {
    width: 42px;
    height: 42px;
    background: rgba(201, 168, 76, 0.12);
    color: var(--accent);
    font-size: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.coverage-item strong {
    display: block;
    font-size: 15px;
    color: var(--white);
    margin-bottom: 2px;
}

.coverage-item span {
    font-size: 13px;
    color: var(--text-secondary);
}

/* ─── Page 404 ──────────────────────────────────────────── */
.page-404 {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 80px;
}

.error-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.error-logo img {
    height: 100px;
    width: auto;
    margin: 0 auto 24px;
    border-radius: 12px;
    filter: brightness(1.2);
}

.error-code {
    font-family: var(--font-heading);
    font-size: 8rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 4px 30px rgba(201, 168, 76, 0.3);
}

.error-title {
    font-size: 2rem;
    margin-bottom: 16px;
    color: var(--white);
}

.error-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 32px;
}

.error-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.error-search {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.error-search p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 12px;
}

.search-bar {
    display: flex;
    max-width: 400px;
    margin: 0 auto;
    gap: 0;
}

.search-bar input {
    flex: 1;
    padding: 12px 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-right: none;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 15px;
}

.search-bar input:focus {
    outline: none;
    border-color: var(--accent);
}

.search-bar button {
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 12px 18px;
}

@media (max-width: 480px) {
    .error-code {
        font-size: 5rem;
    }
    .error-title {
        font-size: 1.5rem;
    }
    .error-actions {
        flex-direction: column;
        align-items: center;
    }
}

/* ─── Utilities ─────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
/* ═══════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 10, 0.7) 0%,
        rgba(10, 10, 10, 0.5) 40%,
        rgba(10, 10, 10, 0.85) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    margin-bottom: 40px;
}

.hero-logo {
    width: 140px;
    height: auto;
    border-radius: 12px;
    margin: 0 auto 20px;
    filter: brightness(1.3) drop-shadow(0 4px 20px rgba(201, 168, 76, 0.4));
    animation: fadeInUp 0.8s ease both;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
    margin-bottom: 16px;
    text-shadow: 0 2px 30px rgba(0,0,0,0.4);
    animation: fadeInUp 0.8s ease both;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-style: italic;
    color: var(--accent);
    margin-bottom: 8px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-tagline {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s both;
}

@keyframes fadeInUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ─── Booking Bar ───────────────────────────────────────── */
.hero-booking-bar {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 3;
    width: 90%;
    max-width: 880px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.booking-bar-form {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    background: rgba(17, 17, 17, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 20px 24px;
}

.booking-field {
    flex: 1;
}

.booking-field label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.booking-field label i {
    color: var(--accent);
    margin-right: 4px;
}

.booking-field input,
.booking-field select {
    width: 100%;
    padding: 10px 14px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 14px;
}

.booking-field input:focus,
.booking-field select:focus {
    outline: none;
    border-color: var(--accent);
}

.booking-field select option {
    background: var(--primary);
    color: var(--white);
}

.booking-field select optgroup {
    background: #f0ece4;
    color: var(--accent-dark);
    font-weight: 700;
    font-style: normal;
    padding: 4px 0;
    border-top: 1px solid rgba(201, 168, 76, 0.3);
}

.booking-field select optgroup option {
    background: #ffffff;
    color: #1a1a1a;
    font-weight: 400;
    padding-left: 12px;
}

.booking-bar-form > .btn-gold {
    flex-shrink: 0;
    padding: 10px 24px;
    height: 42px;
}
/* ═══════════════════════════════════════════════════════════
   VÉHICULES STYLES
   ═══════════════════════════════════════════════════════════ */

.section-vehicules {
    padding: 100px 0;
    background: var(--primary);
}

.vehicules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.vehicules-grid-full {
    grid-template-columns: repeat(3, 1fr);
}

/* ─── Vehicule Card ─────────────────────────────────────── */
.vehicule-card {
    display: flex;
    flex-direction: column;
}

.vehicule-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.vehicule-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.vehicule-card:hover .vehicule-image img {
    transform: scale(1.05);
}

.badge-dispo {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.badge-dispo.available {
    background: rgba(34, 197, 94, 0.9);
    color: #fff;
}

.badge-dispo.unavailable {
    background: rgba(239, 68, 68, 0.9);
    color: #fff;
}

.vehicule-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.vehicule-name {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.vehicule-year {
    color: var(--text-secondary);
    font-size: 13px;
    margin-bottom: 12px;
}

.vehicule-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 14px;
}

.vehicule-specs span {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text-secondary);
    font-size: 13px;
}

.vehicule-specs i {
    color: var(--accent);
    font-size: 12px;
}

.vehicule-options {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.option-tag {
    background: rgba(201, 168, 76, 0.1);
    color: var(--accent);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 500;
}

.vehicule-pricing {
    margin-bottom: 16px;
    margin-top: auto;
}

.vehicule-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 4px;
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent);
}

.price-period {
    color: var(--text-secondary);
    font-size: 14px;
}

.vehicule-caution {
    color: var(--text-secondary);
    font-size: 12px;
}

/* ─── Filters ───────────────────────────────────────────── */
.section-vehicules-page {
    padding: 60px 0 100px;
}

.vehicules-filters {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 16px;
    padding: 24px;
    background: var(--card-bg);
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.05);
    margin-bottom: 40px;
}

.filter-group {
    flex: 0 0 195px;
}

.filter-group-price {
    flex: 1 1 auto;
    min-width: 300px;
    max-width: 450px;
}

.filter-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.filter-group select {
    width: 100%;
    padding: 10px 14px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 14px;
}

.filter-group select option {
    background: var(--primary);
}

/* ─── Price Range Slider ────────────────────────────────── */
.filter-group-price {
    min-width: 220px;
}

.price-slider-container {
    position: relative;
    height: 36px;
    display: flex;
    align-items: center;
    flex: 1;
}

.price-slider-track {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    transform: translateY(-50%);
    pointer-events: none;
}

.price-slider-track::after {
    content: '';
    position: absolute;
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    border-radius: 4px;
    left: var(--track-left, 0%);
    right: var(--track-right, 0%);
}

.price-range {
    position: absolute;
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    pointer-events: none;
    margin: 0;
    height: 36px;
}

.price-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border: 3px solid var(--primary);
    border-radius: 50%;
    cursor: pointer;
    pointer-events: all;
    box-shadow: 0 2px 8px rgba(201, 168, 76, 0.4);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    margin-top: -9px;
}

.price-range::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 2px 14px rgba(201, 168, 76, 0.6);
}

.price-range::-moz-range-thumb {
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border: 3px solid var(--primary);
    border-radius: 50%;
    cursor: pointer;
    pointer-events: all;
    box-shadow: 0 2px 8px rgba(201, 168, 76, 0.4);
}

.price-range::-webkit-slider-runnable-track {
    height: 4px;
    background: transparent;
}

.price-range::-moz-range-track {
    height: 4px;
    background: transparent;
    border: none;
}

.price-slider-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-val {
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    background: rgba(201, 168, 76, 0.1);
    padding: 4px 8px;
    border-radius: 6px;
    border: 1px solid rgba(201, 168, 76, 0.2);
    white-space: nowrap;
    flex-shrink: 0;
}

.filter-actions {
    display: flex;
    gap: 8px;
    align-items: flex-end;
}

/* ─── Single Vehicule Detail ────────────────────────────── */
.section-vehicule-detail {
    padding: 60px 0 100px;
}

.vehicule-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.gallery-main {
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 12px;
}

.gallery-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.gallery-thumbs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
}

.gallery-thumb {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0.6;
}

.gallery-thumb.active,
.gallery-thumb:hover {
    border-color: var(--accent);
    opacity: 1;
}

.detail-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.detail-header h2 {
    font-size: 2rem;
}

.detail-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.detail-price .price-amount {
    font-size: 2rem;
}

.detail-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 24px;
}

.spec {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--card-bg);
    border-radius: var(--radius-sm);
    font-size: 14px;
}

.spec i {
    color: var(--accent);
    width: 16px;
    text-align: center;
}

.detail-options {
    margin-bottom: 24px;
}

.detail-options h4 {
    font-family: var(--font-body);
    font-size: 16px;
    margin-bottom: 12px;
}

.options-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.options-list .option-tag {
    font-size: 13px;
    padding: 6px 14px;
}

.detail-description {
    margin-bottom: 30px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.detail-description h4 {
    font-family: var(--font-body);
    font-size: 16px;
    margin-bottom: 12px;
    color: var(--white);
}

.detail-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
/* ═══════════════════════════════════════════════════════════
   RÉSERVATION STYLES
   ═══════════════════════════════════════════════════════════ */

.section-reservation {
    padding: 60px 0 100px;
}

/* ─── Progress Steps ────────────────────────────────────── */
.reservation-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.step-number {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--card-bg);
    color: var(--text-secondary);
    font-size: 16px;
    font-weight: 700;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}

.step.active .step-number,
.step.completed .step-number {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
}

.step.completed .step-number {
    background: var(--success);
    border-color: var(--success);
}

.step-label {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
    white-space: nowrap;
}

.step.active .step-label {
    color: var(--accent);
}

.step-line {
    flex: 1;
    height: 2px;
    background: rgba(255,255,255,0.1);
    margin: 0 8px;
    margin-bottom: 28px;
    min-width: 40px;
}

/* ─── Step Title ────────────────────────────────────────── */
.step-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.step-title i {
    color: var(--accent);
}

/* ─── Vehicle Selector ──────────────────────────────────── */
.vehicule-selector {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 30px;
}

.vehicule-option {
    cursor: pointer;
}

.vehicule-option input {
    display: none;
}

.vehicule-option-card {
    display: flex;
    gap: 16px;
    padding: 14px;
    background: var(--card-bg);
    border: 2px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
    transition: var(--transition);
}

.vehicule-option input:checked + .vehicule-option-card,
.vehicule-option.selected .vehicule-option-card {
    border-color: var(--accent);
    background: rgba(201, 168, 76, 0.06);
}

.vehicule-option-card:hover {
    border-color: rgba(201, 168, 76, 0.3);
}

.vehicule-option-card img {
    width: 100px;
    height: 70px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.vehicule-option-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vehicule-option-info h4 {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.vehicule-option-specs {
    color: var(--text-secondary);
    font-size: 12px;
    margin-bottom: 4px;
}

.vehicule-option-price {
    color: var(--accent);
    font-weight: 700;
    font-size: 14px;
}

/* ─── Dates Row ─────────────────────────────────────────── */
.dates-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
    align-items: end;
}

.price-calc {
    display: flex;
    flex-direction: column;
}

.price-estimate {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: var(--radius-sm);
    padding: 10px 16px;
    height: 100%;
    min-height: 44px;
}

.estimate-days {
    font-size: 12px;
    color: var(--text-secondary);
}

.estimate-total {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent);
}

/* ─── Form Actions ──────────────────────────────────────── */
.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 10px;
}

/* ─── Recap Card ────────────────────────────────────────── */
.recap-card {
    padding: 30px;
    margin-bottom: 30px;
}

.recap-card h3 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.recap-card h3 i {
    color: var(--accent);
}

.recap-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.recap-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px 16px;
    background: rgba(255,255,255,0.03);
    border-radius: var(--radius-sm);
}

.recap-label {
    font-size: 12px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.recap-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
}

.recap-item.highlight {
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.2);
}

.recap-item.highlight .recap-value {
    color: var(--accent);
    font-size: 20px;
}

/* ─── Confirm Actions ───────────────────────────────────── */
.confirm-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ─── Success Card ──────────────────────────────────────── */
.reservation-success {
    max-width: 600px;
    margin: 0 auto;
}

.success-card {
    text-align: center;
    padding: 50px 30px;
}

.success-icon {
    font-size: 64px;
    color: var(--success);
    margin-bottom: 20px;
}

.success-card h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.success-card p {
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.success-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* ─── Reservation Tabs ──────────────────────────────────── */
.reservation-tabs {
    margin-bottom: 24px;
}

.mode-desc {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 20px;
    font-style: italic;
}

.res-results-title {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--success);
    margin-bottom: 16px;
}

.res-results-title i {
    margin-right: 6px;
}

/* ─── Fiche Véhicule Détaillée ──────────────────────────── */
.vehicule-fiche {
    animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.fiche-back {
    background: none;
    border: none;
    color: var(--accent);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    padding: 8px 0;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.fiche-back:hover {
    color: var(--accent-light);
    gap: 12px;
}

.fiche-card {
    padding: 0;
    overflow: hidden;
}

.fiche-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.fiche-image {
    height: 100%;
    min-height: 320px;
}

.fiche-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fiche-details {
    padding: 28px;
    display: flex;
    flex-direction: column;
}

.fiche-details h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.fiche-prix {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.fiche-prix .price-amount {
    font-size: 1.8rem;
}

.fiche-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
}

.fiche-spec {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
    padding: 8px 12px;
    background: rgba(255,255,255,0.03);
    border-radius: 6px;
}

.fiche-spec i {
    color: var(--accent);
    width: 16px;
    text-align: center;
    font-size: 13px;
}

.fiche-options h4 {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.fiche-options-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.fiche-option-tag {
    background: rgba(201, 168, 76, 0.1);
    color: var(--accent);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.fiche-option-tag i {
    font-size: 10px;
}

/* ─── Dates + Hours Grid ─────────────────────────────────── */
.dates-hours-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 1.5fr 0.8fr auto;
    gap: 12px;
    align-items: end;
}

.res-cal-hour {
    margin-top: 6px;
    padding: 6px 8px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 6px;
    color: var(--accent);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
}

.res-cal-hour:focus {
    outline: none;
    border-color: var(--accent);
}

.res-cal-hour option {
    background: var(--primary);
    color: var(--white);
}

@media (max-width: 768px) {
    .dates-hours-grid {
        grid-template-columns: 1fr 1fr;
    }
    .dates-hours-grid .form-group:last-child {
        grid-column: 1 / -1;
    }
}

.fiche-dates-recap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.fiche-dates-recap .fiche-spec {
    font-weight: 600;
    color: var(--accent);
}

@media (max-width: 768px) {
    .fiche-grid {
        grid-template-columns: 1fr;
    }
    .fiche-image {
        min-height: 200px;
    }
    .fiche-specs {
        grid-template-columns: 1fr;
    }
}

/* ─── Reservation Calendar ──────────────────────────────── */
.res-calendar-wrapper {
    margin-top: 24px;
    padding: 24px;
    background: var(--card-bg);
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.06);
}

.res-calendar-info {
    margin-bottom: 20px;
}

.res-cal-instruction {
    color: var(--accent);
    font-size: 15px;
    font-weight: 500;
    text-align: center;
}

.res-cal-instruction i {
    margin-right: 6px;
}

.res-cal-selection {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.res-cal-date-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 14px 24px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-sm);
    flex: 1;
    min-width: 140px;
}

.res-cal-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
}

.res-cal-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
}

.res-cal-date-box.highlight .res-cal-value {
    color: var(--accent);
    font-size: 18px;
}

.res-cal-arrow {
    color: var(--accent);
    font-size: 16px;
}

.res-calendar-grid {
    max-width: 420px;
    margin: 0 auto;
}

.res-calendar-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 16px;
}

.res-calendar-nav h4 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    min-width: 160px;
    text-align: center;
}

/* Calendar day states */
.cal-day.selected-start,
.cal-day.selected-end {
    background: var(--accent) !important;
    color: #000 !important;
    font-weight: 700;
    border-color: var(--accent) !important;
}

.cal-day.in-range {
    background: rgba(201, 168, 76, 0.2) !important;
    color: var(--accent-light) !important;
    border-color: rgba(201, 168, 76, 0.15) !important;
}

.cal-day.max-blocked {
    background: rgba(255,255,255,0.02);
    color: rgba(255,255,255,0.12);
    cursor: not-allowed;
}

.legend-dot.selected {
    background: var(--accent);
}
/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — Mobile First
   ═══════════════════════════════════════════════════════════ */

/* ─── Tablet (max 1024px) ───────────────────────────────── */
@media (max-width: 1024px) {
    .stats-grid,
    .why-grid,
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vehicules-grid,
    .vehicules-grid-full {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .vehicule-detail-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .vehicule-selector {
        grid-template-columns: 1fr;
    }

    .coverage-content,
    .coverage-luxury {
        grid-template-columns: 1fr;
    }

    .booking-mode-grid {
        grid-template-columns: 1fr 1fr;
    }

    .morocco-map {
        max-width: 300px;
        margin: 0 auto;
    }
}

/* ─── Mobile (max 768px) ────────────────────────────────── */
@media (max-width: 768px) {
    /* Header */
    .header-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 999;
    }

    .header-nav.open {
        transform: translateX(0);
    }

    .nav-menu {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .nav-link {
        font-size: 20px;
        padding: 14px 24px;
    }

    .mobile-toggle {
        display: flex;
        z-index: 1000;
    }

    .header-actions .btn-outline-light,
    .header-actions .btn-gold.btn-sm {
        display: none;
    }

    .hide-mobile {
        display: none !important;
    }

    /* Hero */
    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-booking-bar {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        width: 100%;
        max-width: 100%;
        margin-top: 30px;
        padding: 0 20px;
    }

    .booking-bar-form {
        flex-direction: column;
        gap: 12px;
    }

    .booking-field {
        width: 100%;
    }

    .booking-bar-form > .btn-gold {
        width: 100%;
    }

    .booking-tabs {
        flex-direction: column;
    }

    .booking-mode-grid {
        grid-template-columns: 1fr;
    }

    .coverage-luxury {
        grid-template-columns: 1fr;
    }

    .morocco-map-luxury {
        max-width: 280px;
        margin: 0 auto;
    }

    /* Sections */
    .section-title {
        font-size: 1.8rem;
    }

    .page-hero-content h1 {
        font-size: 2.2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .vehicules-grid,
    .vehicules-grid-full {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .why-grid,
    .values-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Reservation */
    .reservation-steps {
        gap: 0;
    }

    .step-label {
        font-size: 11px;
    }

    .dates-row {
        grid-template-columns: 1fr;
    }

    .recap-grid {
        grid-template-columns: 1fr;
    }

    .confirm-actions {
        flex-direction: column;
    }

    /* Forms */
    .form-grid {
        grid-template-columns: 1fr;
    }

    .quick-form-grid {
        grid-template-columns: 1fr;
    }

    /* Filters */
    .vehicules-filters {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-group {
        min-width: 100%;
    }

    /* CTA */
    .cta-title {
        font-size: 1.8rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    /* Dashboard */
    .dashboard-header {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .dashboard-user {
        flex-direction: column;
    }

    .dashboard-tabs {
        flex-direction: column;
    }

    .reservation-item {
        flex-direction: column;
        text-align: center;
    }

    .res-image {
        width: 100%;
        height: 160px;
    }

    /* Buttons */
    .btn-lg {
        padding: 14px 28px;
        font-size: 15px;
        min-height: 48px;
    }

    .btn-gold,
    .btn-outline-white,
    .btn-outline-gold,
    .btn-whatsapp,
    .btn-dark {
        min-height: 48px;
    }

    /* Detail page */
    .detail-specs {
        grid-template-columns: 1fr;
    }

    .detail-actions {
        flex-direction: column;
    }

    .gallery-main img {
        height: 250px;
    }

    /* Chatbox */
    .chatbox-window {
        width: calc(100vw - 40px);
        right: -10px;
    }

    /* Posts */
    .posts-grid {
        grid-template-columns: 1fr;
    }
}

/* ─── Small Mobile (max 480px) ──────────────────────────── */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .stat-card {
        padding: 20px 12px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .page-hero {
        min-height: 250px;
    }

    .page-hero-content h1 {
        font-size: 1.8rem;
    }

    .container {
        padding: 0 16px;
    }

    .vehicule-option-card {
        flex-direction: column;
    }

    .vehicule-option-card img {
        width: 100%;
        height: 120px;
    }
}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
/* ═══════════════════════════════════════════════════════════
   CORRECTIONS RESPONSIVES MOBILE — v2
   Se charge après ayoub-all.min.css, utilise !important
   pour surcharger les styles minifiés.
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 768px) {

    /* ─── FIX 1 : Hero booking bar + accueil dates débordent ── */
    .hero-booking-bar {
        padding: 0 12px !important;
        box-sizing: border-box !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    .hero-booking-bar .card {
        max-width: 100% !important;
        overflow: hidden !important;
        padding: 16px !important;
    }
    .booking-bar-form {
        flex-direction: column !important;
        gap: 10px !important;
        width: 100% !important;
    }
    .booking-field {
        width: 100% !important;
        max-width: 100% !important;
    }
    .booking-field input[type="date"] {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
        font-size: 14px !important;
        padding: 10px 8px !important;
    }
    .booking-bar-form > .btn-gold {
        width: 100% !important;
    }

    /* ─── FIX 2 : Menu mobile quand on scroll ─────────────── */
    #main-nav {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        height: 100vh !important;
        height: 100dvh !important;
        background: rgba(10, 10, 10, 0.99) !important;
        z-index: 99999 !important;
        transform: translateX(100%) !important;
        transition: transform 0.3s ease !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        overflow-y: auto !important;
    }
    #main-nav.open {
        transform: translateX(0) !important;
    }
    #main-nav .nav-menu {
        flex-direction: column !important;
        gap: 8px !important;
        text-align: center !important;
        padding: 0 !important;
        margin: 0 !important;
        list-style: none !important;
    }
    #main-nav .nav-link {
        display: block !important;
        font-size: 22px !important;
        padding: 16px 30px !important;
        color: #fff !important;
    }
    .mobile-toggle {
        position: relative !important;
        z-index: 100000 !important;
    }
    /* Quand le menu est ouvert, le header doit aussi avoir un z-index élevé */
    .site-header {
        z-index: 99998 !important;
    }

    /* ─── FIX 3 : Filtres véhicules trop espacés ──────────── */
    .vehicules-filters {
        flex-direction: column !important;
        gap: 10px !important;
        padding: 16px !important;
    }
    .filter-group {
        flex: 1 1 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
    }
    .filter-group-price {
        flex: 1 1 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
    }

    /* ─── FIX 4 : Dates/heures chevauchement (réservation) ── */
    .dates-hours-grid {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }
    .dates-hours-grid .form-group {
        width: 100% !important;
    }
    .dates-hours-grid .form-group:last-child {
        grid-column: auto !important;
    }
    .dates-row {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    /* ─── FIX 5 : Accueil "Réservez en quelques clics" ─────── */
    .section-quick-booking,
    .section-quick-booking .container {
        overflow: hidden !important;
        max-width: 100vw !important;
    }
    .booking-mode {
        max-width: 100% !important;
        overflow: hidden !important;
    }
    .booking-mode-card,
    .booking-mode-card.card {
        padding: 16px !important;
        max-width: calc(100vw - 32px) !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    .booking-mode-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
        width: 100% !important;
    }
    .booking-mode-grid .form-group {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
    }
    .booking-mode-grid .form-group input[type="date"],
    .booking-mode-grid .form-group select,
    .booking-mode-card input[type="date"],
    .booking-mode-card select,
    #date_debut_mode1,
    #date_fin_mode1 {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
        -webkit-appearance: none !important;
        appearance: none !important;
        font-size: 16px !important;
        padding: 10px 12px !important;
    }

    /* ─── PERF : Désactiver les effets smoke SVG sur mobile ── */
    .smoke-bg {
        display: none !important;
    }

    /* ─── Tous les inputs date/select en pleine largeur ────── */
    input[type="date"],
    .res-date-input {
        width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
    }
}

@keyframes chatBounce{0%{transform:scale(1)}30%{transform:scale(1.25)}60%{transform:scale(0.95)}100%{transform:scale(1)}}
.chatbox-badge{box-shadow:0 0 0 2px #0a0a0a;}

.mobile-only{display:none}
@media(max-width:768px){.mobile-only{display:list-item}}
.chatbox-window.open{display:flex;flex-direction:column;max-height:70vh}
.chatbox-window .chatbox-body{flex:1;overflow-y:auto;max-height:350px}
.chatbox-message.user{text-align:right;margin-bottom:10px}
.chatbox-message.user p{background:var(--accent,#c9a84c);color:#000;display:inline-block;border-radius:12px 12px 0 12px;padding:8px 14px;max-width:80%;text-align:left}
.chatbox-message.bot{text-align:left;margin-bottom:10px}
.chatbox-message.bot p{background:rgba(255,255,255,0.08);color:#e5e7eb;display:inline-block;border-radius:12px 12px 12px 0;padding:8px 14px;max-width:80%}
@media(max-width:768px){.chatbox-window{width:calc(100vw - 40px)!important;right:20px!important}}
.chatbox{bottom:24px!important;right:90px!important}
.chatbox-window{bottom:70px!important;right:0!important;max-height:380px!important}
.chatbox-window .chatbox-body{max-height:220px!important}
.badge-dispo.rented{background:rgba(234,179,8,0.15)!important;color:#eab308!important;border-color:rgba(234,179,8,0.3)!important}
