/**
 * LOCARIS - Shared Stylesheet
 * Version 1.0
 * 
 * Table of contents:
 * 1. CSS Variables
 * 2. Reset & Base
 * 3. Typography
 * 4. Buttons
 * 5. Forms
 * 6. Cards
 * 7. Header & Navigation
 * 8. Footer
 * 9. Badges
 * 10. Utilities
 * 11. Animations
 */

/* ===========================================
   1. CSS Variables
   =========================================== */
:root {
    /* Primary Colors */
    --primary: #FF6B35;
    --primary-dark: #E55A2B;
    --primary-light: #FF8F66;
    
    /* Secondary Colors */
    --secondary: #1A365D;
    --secondary-light: #2D4A6F;
    
    /* Accent Colors */
    --accent: #38B2AC;
    --accent-dark: #2C9A94;
    
    /* Neutral Colors */
    --sand: #F5E6D3;
    --sand-light: #FBF7F2;
    --dark: #1A1A2E;
    --gray-600: #4A5568;
    --gray-400: #A0AEC0;
    --gray-200: #E2E8F0;
    --gray-100: #F7FAFC;
    --white: #FFFFFF;
    
    /* Semantic Colors */
    --success: #48BB78;
    --warning: #ECC94B;
    --error: #E53E3E;
    
    /* Gradients */
    --gradient-sunset: linear-gradient(135deg, #FF6B35 0%, #F7931E 50%, #FFD23F 100%);
    --gradient-ocean: linear-gradient(135deg, #38B2AC 0%, #319795 100%);
    --gradient-deep: linear-gradient(135deg, #1A365D 0%, #2D4A6F 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(26, 54, 93, 0.06);
    --shadow-soft: 0 4px 20px rgba(26, 54, 93, 0.08);
    --shadow-medium: 0 8px 40px rgba(26, 54, 93, 0.12);
    --shadow-strong: 0 20px 60px rgba(26, 54, 93, 0.15);
    --shadow-primary: 0 4px 15px rgba(255, 107, 53, 0.3);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 50px;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.4s ease;
    
    /* Z-index */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal: 400;
    --z-tooltip: 500;
}

/* ===========================================
   2. Reset & Base
   =========================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--dark);
    background: var(--sand-light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Blazor enhanced navigation place le focus sur le premier h1 apres navigation.
   On supprime l'outline parasite sur les headings non interactifs. */
h1:focus, h2:focus, h3:focus,
h1:focus-visible, h2:focus-visible, h3:focus-visible,
[tabindex="-1"]:focus, [tabindex="-1"]:focus-visible {
    outline: none;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul, ol {
    list-style: none;
}

/* ===========================================
   3. Typography
   =========================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--secondary);
}

h1 { font-size: clamp(2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
}

.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-accent { color: var(--accent); }
.text-muted { color: var(--gray-600); }
.text-light { color: var(--gray-400); }

.text-gradient {
    background: var(--gradient-sunset);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===========================================
   4. Buttons
   =========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-family: inherit;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.2);
}

.btn-primary {
    background: var(--gradient-sunset);
    color: var(--white);
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.btn-outline-header {
    background: transparent;
    color: var(--secondary);
    border: 1.5px solid var(--secondary);
    font-weight: 600;
}

.btn-outline-header:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-1px);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--white);
}

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

.btn-accent {
    background: var(--gradient-ocean);
    color: var(--white);
}

.btn-ghost {
    background: transparent;
    color: var(--secondary);
}

.btn-ghost:hover {
    background: rgba(26, 54, 93, 0.06);
}

.btn-outline {
    background: transparent;
    border-color: var(--secondary);
    color: var(--secondary);
}

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

.btn-outline-white {
    border-color: var(--white);
    color: var(--white);
}

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

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* ===========================================
   5. Forms
   =========================================== */
.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: var(--space-lg);
}

.form-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: var(--space-sm);
}

.form-label .required {
    color: var(--primary);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    background: var(--white);
    transition: all var(--transition-base);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

.form-input::placeholder {
    color: var(--gray-400);
}

.form-input.error {
    border-color: var(--error);
}

.form-hint {
    font-size: 0.8rem;
    color: var(--gray-400);
    margin-top: var(--space-xs);
}

.form-error {
    font-size: 0.8rem;
    color: var(--error);
    margin-top: var(--space-xs);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--primary);
    cursor: pointer;
}

.form-checkbox label {
    font-size: 0.9rem;
    color: var(--gray-600);
    cursor: pointer;
}

.form-checkbox a {
    color: var(--primary);
    text-decoration: underline;
}

/* ===========================================
   6. Cards
   =========================================== */
.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: all var(--transition-base);
}

.card:hover {
    box-shadow: var(--shadow-medium);
}

.card-hover:hover {
    transform: translateY(-8px);
}

.card-body {
    padding: var(--space-lg);
}

.card-header {
    padding: var(--space-lg);
    border-bottom: 1px solid var(--gray-200);
}

.card-footer {
    padding: var(--space-lg);
    border-top: 1px solid var(--gray-200);
}

/* ===========================================
   7. Header & Navigation
   =========================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-fixed);
    padding: var(--space-md) var(--space-xl);
    transition: all var(--transition-base);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-soft);
}

.header.solid {
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-sunset);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    font-weight: 700;
    box-shadow: var(--shadow-primary);
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    color: var(--secondary);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color var(--transition-base);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition-base);
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

/* Mobile Menu */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--secondary);
    transition: all var(--transition-base);
}

@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
}

/* ===========================================
   8. Footer
   =========================================== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: var(--space-3xl) var(--space-xl) var(--space-xl);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: var(--space-md);
}

.footer-logo .logo-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
}

.footer-logo .logo-text {
    font-size: 1.5rem;
    color: var(--white);
}

.footer-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-column h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--space-lg);
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    transition: color var(--transition-base);
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-xl);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.social-links {
    display: flex;
    gap: var(--space-md);
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all var(--transition-base);
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }
}

/* ===========================================
   9. Badges
   =========================================== */
.badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 0.3rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.badge-primary {
    background: var(--primary);
    color: var(--white);
}

.badge-secondary {
    background: var(--secondary);
    color: var(--white);
}

.badge-accent {
    background: var(--accent);
    color: var(--white);
}

.badge-success {
    background: var(--success);
    color: var(--white);
}

.badge-warning {
    background: var(--warning);
    color: var(--secondary);
}

.badge-light {
    background: var(--sand);
    color: var(--secondary);
}

.badge-outline {
    background: transparent;
    border: 1px solid currentColor;
}

/* ===========================================
   10. Utilities
   =========================================== */

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.container-sm {
    max-width: 800px;
}

.container-lg {
    max-width: 1600px;
}

/* Section */
.section {
    padding: var(--space-3xl) var(--space-xl);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-2xl);
}

.section-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
}

.section-title {
    margin-bottom: var(--space-md);
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--gray-600);
}

/* Flex & Grid */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }
.gap-xl { gap: var(--space-xl); }

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

@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .grid-2,
    .grid-3,
    .grid-4 { grid-template-columns: 1fr; }
}

/* Spacing */
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

/* Text */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }

/* Display */
.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }

/* Background */
.bg-white { background: var(--white); }
.bg-sand { background: var(--sand-light); }
.bg-dark { background: var(--dark); }
.bg-primary { background: var(--primary); }
.bg-secondary { background: var(--secondary); }

/* ===========================================
   11. Animations
   =========================================== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.animate-fadeIn { animation: fadeIn 0.5s ease-out; }
.animate-fadeInUp { animation: fadeInUp 0.6s ease-out; }
.animate-fadeInDown { animation: fadeInDown 0.6s ease-out; }
.animate-slideInLeft { animation: slideInLeft 0.6s ease-out; }
.animate-slideInRight { animation: slideInRight 0.6s ease-out; }

.animate-delay-1 { animation-delay: 0.1s; animation-fill-mode: both; }
.animate-delay-2 { animation-delay: 0.2s; animation-fill-mode: both; }
.animate-delay-3 { animation-delay: 0.3s; animation-fill-mode: both; }
.animate-delay-4 { animation-delay: 0.4s; animation-fill-mode: both; }

/* Hover animations */
.hover-lift {
    transition: transform var(--transition-base);
}

.hover-lift:hover {
    transform: translateY(-4px);
}

.hover-scale {
    transition: transform var(--transition-base);
}

.hover-scale:hover {
    transform: scale(1.02);
}

/* ===========================================
   12. Print Styles
   =========================================== */
@media print {
    .header,
    .footer,
    .btn,
    .nav-toggle {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .card {
        box-shadow: none;
        border: 1px solid #ccc;
    }
}

/* ===========================================
   13. Email Verification Alert (Réservation)
   =========================================== */
.email-verification-alert,
.login-prompt-alert {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    margin-top: 1.5rem;
    background: linear-gradient(135deg, #FFF8E7, #FFF5E0);
    border-left: 4px solid var(--warning);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.email-verification-alert .alert-icon,
.login-prompt-alert .alert-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.email-verification-alert .alert-content,
.login-prompt-alert .alert-content {
    flex: 1;
}

.email-verification-alert h4,
.login-prompt-alert h4 {
    margin: 0 0 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary);
}

.email-verification-alert p,
.login-prompt-alert p {
    margin: 0 0 0.75rem;
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.5;
}

.email-verification-alert .alert-actions,
.login-prompt-alert .alert-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.email-verification-alert .verification-message {
    margin-top: 0.75rem;
    padding: 0.5rem 0.75rem;
    border-radius: var(--border-radius);
    font-size: 0.875rem;
}

.email-verification-alert .verification-message.success {
    background: #E6FFED;
    color: var(--success);
}

.email-verification-alert .verification-message.error {
    background: #FFF0F0;
    color: var(--error);
}

/* Option badge dans les extras */
.option-badge {
    font-size: 0.65rem;
    padding: 0.15rem 0.4rem;
    background: var(--gray-200);
    color: var(--gray-600);
    border-radius: 3px;
    margin-left: 0.5rem;
    vertical-align: middle;
}

.fee-option {
    border-color: var(--accent);
}

.fee-option .option-badge {
    background: var(--accent);
    color: white;
}

/* ===========================================
   14. Hero Section (Home Page)
   =========================================== */
.hero {
    position: relative;
    /* 70vh au lieu de 90vh pour laisser apparaître le carrousel « À la une » au-dessous (cf. §6.5) */
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--secondary) 0%, #2D4A6F 60%, var(--secondary-light) 100%);
    padding: 6rem var(--space-xl) var(--space-2xl);
    margin-top: -80px; /* Remonter sous le header fixe */
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.hero-content {
    color: var(--white);
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    color: var(--white);
    margin-bottom: var(--space-lg);
    line-height: 1.15;
}

.hero-title span {
    color: var(--primary);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: var(--space-2xl);
    max-width: 540px;
}

.hero-stats {
    display: flex;
    gap: var(--space-2xl);
}

.hero-stats .stat-item {
    text-align: center;
}

.hero-stats .stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.hero-stats .stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.25rem;
}

/* ===========================================
   15. Search Card (Home Page)
   =========================================== */
.search-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-strong);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.search-title {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 0.25rem;
}

.search-subtitle {
    font-size: 0.95rem;
    color: var(--gray-600);
    margin-bottom: var(--space-xl);
}

.search-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.search-form .form-group {
    margin-bottom: 0;
}

.search-form .form-group.with-label .form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 0.35rem;
}

.search-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.search-form .form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: inherit;
    background: var(--white);
    transition: all var(--transition-base);
}

.search-form .form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.btn-search {
    width: 100%;
    padding: 1rem;
    font-size: 1.05rem;
    margin-top: var(--space-sm);
}

.location-current {
    text-align: center;
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--gray-200);
    cursor: pointer;
    transition: color var(--transition-base);
}

.location-current span {
    font-size: 0.9rem;
    color: var(--gray-600);
}

.location-current:hover span {
    color: var(--primary);
}

/* ===========================================
   16. Loyalty Section (Home Page)
   =========================================== */
.loyalty-section {
    text-align: center;
    background: var(--sand-light);
    padding: var(--space-3xl) var(--space-xl);
}

.loyalty-container {
    max-width: 700px;
    margin: 0 auto;
}

.loyalty-title {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: var(--space-md);
}

.loyalty-desc {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: var(--space-xl);
    line-height: 1.7;
}

/* ===========================================
   16b. Pricing CTA Section (Home)
   =========================================== */
.pricing-cta-section {
    text-align: center;
    padding: var(--space-3xl) var(--space-xl);
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: white;
}

.pricing-cta-container {
    max-width: 700px;
    margin: 0 auto;
}

.pricing-cta-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-lg);
    background: var(--gradient-sunset);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.35);
}

.pricing-cta-title {
    font-size: 2rem;
    color: white;
    margin-bottom: var(--space-md);
    font-family: 'Playfair Display', serif;
}

.pricing-cta-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-lg);
    line-height: 1.7;
}

.pricing-cta-plans {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.plan-badge {
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.plan-badge.free {
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.plan-badge.starter {
    background: rgba(76, 175, 80, 0.2);
    color: #81c784;
    border: 1px solid rgba(76, 175, 80, 0.35);
}

.plan-badge.business {
    background: rgba(255, 107, 53, 0.2);
    color: #ff8a65;
    border: 1px solid rgba(255, 107, 53, 0.35);
}

.plan-badge.enterprise {
    background: rgba(171, 130, 255, 0.2);
    color: #b39ddb;
    border: 1px solid rgba(171, 130, 255, 0.35);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    gap: 0.5rem;
    display: inline-flex;
    align-items: center;
}

/* ===========================================
   17. Responsive - Hero & Search
   =========================================== */
@media (max-width: 1024px) {
    .hero {
        min-height: auto;
        padding: 7rem var(--space-xl) var(--space-2xl);
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

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

    .hero-subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 6rem var(--space-md) var(--space-xl);
    }

    .hero-stats {
        gap: var(--space-lg);
    }

    .hero-stats .stat-number {
        font-size: 1.5rem;
    }

    .search-card {
        padding: var(--space-lg);
    }

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

/* ===========================================
   18. Results Page
   =========================================== */

/* --- Page container --- */
.results-page {
    min-height: 100vh;
    background: var(--gray-100);
}

/* --- Search summary bar (mobile only) --- */
.search-summary-bar {
    display: none; /* Caché sur desktop */
}

/* --- Search drawer (mobile only) --- */
.search-drawer {
    display: none; /* Caché sur desktop */
}
.search-drawer-overlay {
    display: none; /* Caché sur desktop */
}

/* --- Sticky search header --- */
.search-header-sticky {
    position: sticky;
    top: 80px; /* sous le header fixe */
    z-index: 90;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    padding: 0.75rem var(--space-xl);
}

.search-bar-container {
    max-width: 1400px;
    margin: 0 auto;
}

.search-field-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.search-field {
    flex: 1;
    min-width: 0;
}

.search-field.location-field {
    flex: 1.3;
}

.search-field.return-field {
    flex: 1.3;
    position: relative;
}

.search-field.date-field {
    flex: 1.8;
}

/* Case à cocher "Restituer dans un autre lieu" version Résultats (sticky + drawer).
   Le champ retour n'est affiché que si la case est cochée (cas peu fréquent).
   Le style de base .return-toggle est défini dans hero-dv2.css et partagé. */
.return-toggle-sticky {
    flex-basis: 100%;
    margin-top: 8px;
    margin-left: 4px;
    font-size: 13px;
}

/* Uniformiser l'apparence des pickers fermés dans la barre de recherche résultats */
.search-header-sticky .location-input-container {
    height: 52px !important;
    border-radius: 12px !important;
    box-sizing: border-box !important;
    padding: 0.5rem 1rem !important;
}

.search-header-sticky .date-picker-compact {
    height: 52px !important;
    border-radius: 12px !important;
    box-sizing: border-box !important;
    padding: 0 1rem !important;
    max-width: none !important;
    border-width: 2px !important;
}

.btn-search-modify {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all var(--transition-base);
    flex-shrink: 0;
}

.btn-search-modify:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.btn-search-modify .search-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.btn-search-text {
    display: inline;
}

/* --- Main layout: sidebar + content --- */
.main-layout {
    display: flex;
    gap: var(--space-xl);
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--space-xl);
    position: relative;
}

/* --- Floating filter button (when sidebar is hidden) --- */
.btn-open-filters {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 80;
    display: none; /* Caché sur desktop, visible via media query sur mobile */
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
    transition: all var(--transition-base);
}

.btn-open-filters:hover {
    background: var(--primary-dark, #e55a28);
    transform: translateX(-50%) translateY(-2px);
}

.btn-open-filters svg {
    width: 20px;
    height: 20px;
}

/* Overlay sombre derrière le panneau filtres (mobile) */
.filters-overlay {
    display: none;
}

/* --- Filters sidebar --- */
/* ═══════════════════════════════════════════════════════════════════════════════
   FILTERS SIDEBAR — Premium Design (inspiré Rentalcars.com)
   ═══════════════════════════════════════════════════════════════════════════════ */

.filters-sidebar {
    width: 310px;
    flex-shrink: 0;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 0;
    box-shadow: 0 1px 4px rgba(26, 54, 93, 0.06), 0 4px 16px rgba(26, 54, 93, 0.04);
    height: fit-content;
    position: sticky;
    top: 160px;
    transition: all 0.3s ease;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.6);
}

/* ─── Desktop : sidebar masquée quand l'utilisateur clique "Masquer les filtres" ─── */
.filters-sidebar.hidden-desktop {
    display: none;
}

/* Bouton flottant "Afficher les filtres" (desktop uniquement, quand sidebar masquée) */
.btn-show-filters-desktop {
    display: none; /* caché par défaut, activé sur desktop via media query */
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1rem;
    background: var(--white);
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: var(--radius-md, 8px);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(26, 54, 93, 0.08);
    transition: all 0.2s ease;
    align-self: flex-start;
    height: fit-content;
    position: sticky;
    top: 160px;
    flex-shrink: 0;
    white-space: nowrap;
}

.btn-show-filters-desktop:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-1px);
}

.btn-show-filters-desktop i {
    font-size: 1rem;
}

@media (min-width: 1025px) {
    .main-layout.filters-collapsed .btn-show-filters-desktop {
        display: inline-flex;
    }
}

.filters-toggle-header {
    display: flex;
    justify-content: flex-end;
    padding: var(--space-sm) var(--space-md);
    border-bottom: 1px solid var(--gray-200);
    background: var(--sand-light);
}

.btn-toggle-sidebar {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: none;
    border: none;
    color: var(--gray-600);
    font-size: 0.8rem;
    cursor: pointer;
    padding: 0.35rem 0.5rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
}

.btn-toggle-sidebar:hover {
    color: var(--primary);
    background: rgba(255, 107, 53, 0.06);
}

.btn-toggle-sidebar svg {
    width: 16px;
    height: 16px;
}

/* --- Filters Header --- */
.filters-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) var(--space-lg);
    border-bottom: 1px solid var(--gray-200);
    background: var(--white);
}

.filters-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filters-title i {
    font-size: 0.95rem;
    color: var(--primary);
}

.filters-reset {
    font-size: 0.78rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.filters-reset:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* --- Active Filter Tags --- */
.active-filters-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: var(--space-sm) var(--space-lg);
    border-bottom: 1px solid var(--gray-200);
    background: #FEFBF8;
}

.filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    background: rgba(255, 107, 53, 0.08);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--primary);
    line-height: 1.4;
}

.filter-tag-remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary);
    font-size: 0.65rem;
    padding: 0;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    transition: all var(--transition-fast);
    line-height: 1;
}

.filter-tag-remove:hover {
    background: rgba(255, 107, 53, 0.15);
}

/* --- Filters Content Container --- */
.filters-content {
    display: flex;
    flex-direction: column;
    max-height: calc(100vh - 280px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.12) transparent;
}

.filters-content::-webkit-scrollbar {
    width: 4px;
}

.filters-content::-webkit-scrollbar-track {
    background: transparent;
}

.filters-content::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.12);
    border-radius: 2px;
}

.filters-content::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.2);
}

/* --- Filter Sections (Collapsable) --- */
.filter-section {
    border-bottom: 1px solid #F0F0F5;
}

.filter-section:last-child {
    border-bottom: none;
}

.filter-section-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px var(--space-lg);
    background: none;
    border: none;
    cursor: pointer;
    transition: background var(--transition-fast);
}

.filter-section-toggle:hover {
    background: rgba(251, 247, 242, 0.6);
}

.filter-section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: -0.01em;
}

.filter-section-chevron {
    font-size: 0.65rem;
    color: var(--gray-600);
    transition: transform 0.25s ease;
}

.filter-section-chevron.collapsed {
    transform: rotate(180deg);
}

.filter-section-body {
    display: flex;
    flex-direction: column;
    padding: 0 var(--space-lg) var(--space-md);
    animation: filterFadeIn 0.2s ease;
}

@keyframes filterFadeIn {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Filter Option (Checkbox row) --- */
.filter-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 8px;
    border-radius: 6px;
    cursor: pointer;
    transition: background var(--transition-fast);
    user-select: none;
    position: relative;
}

.filter-option:hover {
    background: rgba(251, 247, 242, 0.8);
}

.filter-option.disabled {
    opacity: 0.4;
    pointer-events: none;
}

/* Screen reader only — hide native checkbox */
.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;
}

/* Custom checkbox */
.custom-checkbox {
    width: 18px;
    height: 18px;
    border: 2px solid #CBD5E0;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s ease;
    background: var(--white);
}

.custom-checkbox i {
    font-size: 10px;
    color: var(--white);
    line-height: 1;
}

.custom-checkbox.checked {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 1px 3px rgba(255, 107, 53, 0.3);
}

.filter-option:hover .custom-checkbox:not(.checked) {
    border-color: var(--primary-light);
}

/* Filter option label */
.filter-option-label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.84rem;
    color: #4A5568;
    flex: 1;
    display: flex;
    align-items: center;
    gap: 7px;
    line-height: 1.3;
}

/* Filter option icon (equipment/service) */
.filter-option-icon {
    font-size: 0.8rem;
    color: #718096;
    width: 16px;
    text-align: center;
}

.filter-option-icon.instant {
    color: #F6AD55;
}

/* Filter option count badge */
.filter-option-count {
    font-family: 'Outfit', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    color: #A0AEC0;
    min-width: 20px;
    text-align: right;
    flex-shrink: 0;
}

/* --- Rating Stars --- */
.rating-stars {
    display: inline-flex;
    gap: 1px;
    margin-right: 2px;
}

.rating-stars i {
    font-size: 0.7rem;
    color: #F6AD55;
}

.rating-stars i.fa-regular {
    color: #E2E8F0;
}

/* ─────────────────────────────────────────────────────────────────────
   Rating dans VehicleCard (cf. /resultats) — note + étoiles
   Une voiture sans avis affiche 1★ par défaut (visuellement plus discret).
   ───────────────────────────────────────────────────────────────────── */
.vehicle-card .rating-block {
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.vehicle-card .rating-block .rating-stars i {
    font-size: 0.95rem;
    color: var(--primary, #FF6B35);
}

.vehicle-card .rating-block .rating-stars i.fa-regular {
    color: rgba(26, 26, 46, 0.18);
}

.vehicle-card .rating-info {
    flex-direction: row;
    align-items: center;
    gap: 6px;
}

.vehicle-card .rating-info .rating-score {
    display: inline;
    width: auto;
    height: auto;
    background: transparent;
    color: #1A1A2E;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 0;
    padding: 0;
}

.vehicle-card .rating-info .review-count {
    font-size: 0.72rem;
    color: rgba(26, 26, 46, 0.55);
}

.vehicle-card .rating-block-default .rating-stars i {
    color: rgba(26, 26, 46, 0.32);
}
.vehicle-card .rating-block-default .rating-stars i.fa-regular {
    color: rgba(26, 26, 46, 0.12);
}

.vehicle-card .rating-no-reviews {
    font-style: italic;
}

/* --- Show More / Less Button --- */
.filter-show-more {
    display: flex;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    padding: 6px 8px;
    margin-top: 2px;
    border-radius: 4px;
    transition: all var(--transition-fast);
}

.filter-show-more:hover {
    background: rgba(255, 107, 53, 0.06);
}

.filter-show-more i {
    font-size: 0.6rem;
}

/* --- Legacy support (filter-group, filter-chip) --- */
.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 0.25rem;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.filter-options-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.filter-chip {
    padding: 0.45rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-full);
    background: var(--white);
    color: var(--gray-600);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
}

.filter-chip:hover {
    border-color: var(--primary-light);
    color: var(--primary);
}

.filter-chip.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* --- Results content area --- */
.results-content {
    flex: 1;
    min-width: 0;
}

.results-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-lg);
    flex-wrap: wrap;
    gap: var(--space-md);
}

.results-count h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary);
    margin: 0;
}

.results-count h2 .results-count-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.results-count span:not(.results-count-number) {
    font-size: 1rem;
    color: var(--gray-600);
}

.results-dates {
    font-size: 0.85rem;
    color: var(--gray-400);
    margin-top: 0.15rem;
}

.results-sort {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sort-select {
    padding: 0.5rem 2rem 0.5rem 0.75rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-family: inherit;
    color: var(--secondary);
    background: var(--white);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%234A5568' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    transition: border-color var(--transition-base);
}

.sort-select:focus {
    outline: none;
    border-color: var(--primary);
}

.view-toggle {
    display: flex;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.view-toggle button {
    padding: 0.45rem 0.65rem;
    background: var(--white);
    border: none;
    cursor: pointer;
    color: var(--gray-400);
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
}

.view-toggle button + button {
    border-left: 1px solid var(--gray-200);
}

.view-toggle button.active {
    background: var(--secondary);
    color: var(--white);
}

.view-toggle button svg {
    width: 18px;
    height: 18px;
}

/* ===========================================
   VehicleCard - Design Booking.com (Global)
   =========================================== */

.vehicle-card {
    display: flex;
    flex-direction: row;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.2s ease;
    min-height: 200px;
    max-width: 100%;
    box-sizing: border-box;
}
.vehicle-card:hover {
    box-shadow: 0 4px 14px rgba(0,0,0,0.1);
    border-color: #ccc;
}

/* Image section (left) */
.card-image-section {
    position: relative;
    width: 240px;
    min-width: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    background: #fafbfc;
    border-right: 1px solid #f0f0f0;
}
.card-image-section img {
    max-width: 100%;
    max-height: 160px;
    object-fit: contain;
    transition: transform 0.3s ease;
}
.vehicle-card:hover .card-image-section img {
    transform: scale(1.03);
}
.image-placeholder {
    width: 100%;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f3f6;
    border-radius: 6px;
}
.image-placeholder svg {
    width: 56px;
    height: 56px;
    color: #c4cdd5;
}
/* (Ancienne pastille jaune `.featured-badge` retirée en 2026-05-23 — remplacée
   par la version "Coup de cœur" rouge dégradé déclarée plus bas dans ce fichier.) */
.photo-count {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 2px 8px;
    background: rgba(0,0,0,0.65);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 3px;
}

/* ─── Badge "Coup de cœur" (Featured boost) ──────────────────────────────
   Surchargé en haut-gauche de l'image. Cf. FEATURED_BOOST_REFERENCE.md.
   ────────────────────────────────────────────────────────────────────── */
.featured-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px 5px 8px;
    background: linear-gradient(135deg, #ff5b6c 0%, #e63946 100%);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    border-radius: 999px;
    box-shadow: 0 4px 10px rgba(230, 57, 70, 0.32),
                0 1px 2px rgba(230, 57, 70, 0.18);
    z-index: 3;
    text-transform: none;
    white-space: nowrap;
    line-height: 1;
}

.featured-badge svg {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

/* Mode compact (vue liste) — badge un peu plus petit pour ne pas dominer */
.vehicle-card.compact .featured-badge {
    top: 8px;
    left: 8px;
    padding: 3px 8px 3px 6px;
    font-size: 0.66rem;
}

.vehicle-card.compact .featured-badge svg {
    width: 10px;
    height: 10px;
}

.unavailable-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 6px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    text-align: center;
}

/* Details section (center) */
.card-details-section {
    flex: 1;
    min-width: 0;
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.card-title-row {
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
    flex-wrap: wrap;
}
.vehicle-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.3;
}
.vehicle-year {
    font-weight: 400;
    color: #6b7280;
    font-size: 0.95rem;
}
.category-tag {
    display: inline-block;
    padding: 2px 8px;
    background: #e8f4fd;
    color: #0071c2;
    font-size: 0.72rem;
    font-weight: 600;
    border-radius: 3px;
    white-space: nowrap;
}

/* Specs grid (2 columns) - scoped to vehicle card */
.vehicle-card .specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.35rem 1.25rem;
}
.vehicle-card .spec-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.82rem;
    color: #333;
    line-height: 1.4;
    background: none;
    padding: 0;
    border-radius: 0;
}
.vehicle-card .spec-item svg {
    width: 15px;
    height: 15px;
    color: #6b7280;
    flex-shrink: 0;
}

/* Desktop/mobile visibility toggle for specs */
.card-specs-desktop {
    display: block; /* Visible sur desktop */
}
.card-specs-mobile {
    display: none; /* Caché sur desktop */
}

/* Equipment badges */
.equipment-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
}
.equip-badge {
    display: inline-flex;
    align-items: center;
    padding: 2px 7px;
    background: #f3f4f6;
    color: #4b5563;
    font-size: 0.7rem;
    font-weight: 500;
    border-radius: 3px;
    white-space: nowrap;
}

/* Bottom row (agency + services) */
.card-bottom-row {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-top: auto;
}
.agency-info {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.82rem;
}
.agency-info svg {
    width: 14px;
    height: 14px;
    color: #0071c2;
    flex-shrink: 0;
}
.agency-name {
    color: #0071c2;
    font-weight: 600;
}
.agency-detail {
    color: #6b7280;
}
.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
}
.service-tag {
    display: inline-flex;
    align-items: center;
    padding: 2px 7px;
    background: #ecfdf5;
    color: #047857;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 3px;
    white-space: nowrap;
}
.service-tag.instant {
    background: #fef3c7;
    color: #b45309;
}

/* Price section (right) */
.card-price-section {
    width: 230px;
    min-width: 230px;
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 0.35rem;
    border-left: 1px solid #f0f0f0;
    background: #fafbfc;
    text-align: right;
}
.rating-block {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}
.rating-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.rating-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: #1a1a1a;
}
.review-count {
    font-size: 0.7rem;
    color: #6b7280;
}
.rating-score {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #003580;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 6px 6px 6px 0;
    flex-shrink: 0;
}
.price-block {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.price-label {
    font-size: 0.75rem;
    color: #6b7280;
    margin-bottom: 0.1rem;
}
.price-main {
    display: flex;
    align-items: baseline;
    gap: 3px;
}
.price-amount {
    font-size: 1.6rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1;
}
.price-currency {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
}
.price-secondary {
    font-size: 0.72rem;
    color: #6b7280;
}
.free-cancel {
    font-size: 0.75rem;
    font-weight: 600;
    color: #0a8a0a;
    margin: 0.15rem 0;
}
/* Badge disponibilité groupe */
.available-count-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    background: #ECFDF5;
    border: 1px solid #A7F3D0;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #065F46;
    white-space: nowrap;
}
.available-count-badge i {
    font-size: 0.7rem;
    color: #059669;
}
.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    width: 100%;
    padding: 0.6rem 1rem;
    background: #0071c2;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s ease;
    white-space: nowrap;
}
.btn-cta:hover {
    background: #00487a;
}
.btn-cta.btn-unavailable {
    background: #9ca3af;
}
.btn-cta.btn-unavailable:hover {
    background: #6b7280;
}
/* ── Dates de location sur la carte ── */
.rental-dates-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #EFF6FF;
    border: 1px solid #BFDBFE;
    border-radius: 6px;
    padding: 6px 10px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #1E40AF;
    margin-bottom: 2px;
}
.rental-dates-badge svg { color: #3B82F6; flex-shrink: 0; }
.rental-days-count {
    background: #3B82F6;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 1px 6px;
    border-radius: 10px;
    margin-left: auto;
}

/* ── Double bouton : Fiche + Réserver ── */
.card-actions {
    display: flex;
    gap: 6px;
    width: 100%;
    flex-wrap: nowrap;
}
.btn-outline-card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 0.55rem 0.5rem;
    background: #fff;
    color: #0071c2;
    border: 1.5px solid #0071c2;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s ease;
    white-space: nowrap;
}
.btn-outline-card:hover {
    background: #EFF6FF;
    border-color: #00487a;
    color: #00487a;
}
.card-actions .btn-cta {
    flex: 1;
    width: auto;
    background: #F97316;
}
.card-actions .btn-cta:hover {
    background: #EA580C;
}

.popularity-hint {
    font-size: 0.7rem;
    color: #dc2626;
    font-weight: 600;
}

/* ── Date warning banner ── */
.date-warning-banner {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: #FEF3C7;
    border: 1px solid #F59E0B;
    border-radius: 8px;
    color: #92400E;
    font-size: 0.88rem;
    font-weight: 500;
    margin-bottom: 1rem;
    animation: fadeInSlide 0.3s ease;
}
.date-warning-banner i { color: #D97706; font-size: 1.1rem; flex-shrink: 0; }
.date-warning-banner span { flex: 1; }
.date-warning-close { background: none; border: none; font-size: 1.2rem; color: #92400E; cursor: pointer; padding: 0 0.25rem; line-height: 1; }
@keyframes fadeInSlide {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 768px) {
    .date-warning-banner {
        position: fixed;
        bottom: 80px;
        left: 12px;
        right: 12px;
        z-index: 250;
        margin-bottom: 0;
        box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    }
}

/* Unavailable state */
.vehicle-card.unavailable {
    opacity: 0.65;
}
.vehicle-card.unavailable:hover {
    opacity: 0.85;
}

/* VehicleCard responsive */
@media (max-width: 1024px) {
    .card-image-section {
        width: 200px;
        min-width: 200px;
        padding: 1rem;
    }
    .card-price-section {
        width: 180px;
        min-width: 180px;
        overflow: hidden;
    }
    .card-price-section .card-actions {
        flex-direction: column;
        gap: 4px;
    }
    .card-price-section .card-actions .btn-cta,
    .card-price-section .card-actions .btn-outline-card {
        width: 100%;
        flex: none;
        font-size: 0.78rem;
        padding: 0.5rem 0.5rem;
    }
    .equipment-badges,
    .btn-outline-card {
        display: none;
    }

    .card-actions .btn-cta {
        width: 100%;
    }
}
@media (max-width: 768px) {
    .vehicle-card {
        flex-direction: column;
        min-height: auto;
    }
    .card-image-section {
        width: 100%;
        min-width: unset;
        min-height: 160px;
        max-height: 200px;
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
        padding: 0.75rem;
        order: 0;
    }
    .card-image-section img {
        max-height: 140px;
    }
    .card-details-section {
        padding: 0.75rem;
        gap: 0.4rem;
    }
    .vehicle-name {
        font-size: 1.05rem;
    }
    /* Cacher la version desktop, montrer la version mobile */
    .card-specs-desktop {
        display: none;
    }
    .card-specs-mobile {
        display: block;
    }

    /* Accordéon détails + équipements */
    .card-details-accordion {
        margin-top: 0.25rem;
    }
    .card-details-accordion-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0.45rem 0.6rem;
        font-size: 0.78rem;
        font-weight: 600;
        color: var(--primary);
        cursor: pointer;
        list-style: none;
        background: #FFF7ED;
        border-radius: 6px;
        border: 1px solid #FED7AA;
    }
    .card-details-accordion-toggle::-webkit-details-marker {
        display: none;
    }
    .card-details-accordion-toggle .accordion-chevron {
        width: 14px;
        height: 14px;
        color: var(--primary);
        transition: transform 0.2s ease;
    }
    .card-details-accordion[open] .accordion-chevron {
        transform: rotate(180deg);
    }
    .card-details-accordion-content {
        padding: 0.35rem 0 0;
        display: flex;
        flex-direction: column;
        gap: 0.4rem;
    }
    .card-details-accordion-content .vehicle-card .specs-grid,
    .card-details-accordion-content .specs-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.25rem 0.75rem;
    }
    .card-details-accordion-content .vehicle-card .spec-item,
    .card-details-accordion-content .spec-item {
        font-size: 0.78rem;
        background: none;
        padding: 0;
    }
    .card-details-accordion-content .spec-item svg {
        width: 13px;
        height: 13px;
    }
    .card-details-accordion-content .equipment-badges {
        display: flex;
        flex-wrap: wrap;
        gap: 0.3rem;
    }
    .equip-badge {
        font-size: 0.65rem;
        padding: 2px 5px;
    }
    .card-bottom-row {
        gap: 0.25rem;
    }
    .agency-info {
        font-size: 0.78rem;
    }
    .service-tags .service-tag {
        font-size: 0.65rem;
        padding: 1px 5px;
    }
    .card-price-section {
        width: 100%;
        min-width: unset;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: space-between;
        border-left: none;
        border-bottom: 1px solid #f0f0f0;
        border-top: none;
        text-align: left;
        gap: 0.5rem;
        padding: 0.6rem 0.75rem;
        order: -1;
    }
    .price-block {
        align-items: flex-start;
        flex-shrink: 0;
    }
    .price-amount {
        font-size: 1.4rem;
    }
    .rating-block {
        margin-bottom: 0;
    }
    .card-actions {
        width: auto;
        flex: 0 0 auto;
        flex-direction: column;
        gap: 4px;
    }
    .card-actions .btn-cta {
        padding: 0.5rem 1rem;
        font-size: 0.78rem;
        order: -1; /* Réserver en haut */
    }
    .btn-outline-card {
        padding: 0.4rem 1rem;
        font-size: 0.72rem;
    }
    .free-cancel,
    .popularity-hint,
    .rental-dates-badge,
    .available-count-badge,
    .rating-block,
    .price-secondary,
    .btn-outline-card {
        display: none;
    }

    .card-actions .btn-cta {
        width: 100%;
    }
}

/* --- Results grid --- */
.results-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-md, 1rem);
}

.results-grid.list-view {
    /* Already single-column with flex-direction: column */
}

/* --- Skeleton loading cards --- */
.vehicle-card-skeleton {
    display: flex;
    flex-direction: row;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.skeleton-image {
    width: 220px;
    min-height: 180px;
    flex-shrink: 0;
    background: linear-gradient(90deg, var(--gray-100) 25%, var(--gray-200) 50%, var(--gray-100) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s ease-in-out infinite;
}

.skeleton-content {
    flex: 1;
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.skeleton-line {
    height: 14px;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--gray-100) 25%, var(--gray-200) 50%, var(--gray-100) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s ease-in-out infinite;
}

.skeleton-line.w-75 { width: 75%; }
.skeleton-line.w-50 { width: 50%; }
.skeleton-line.w-100 { width: 100%; }

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* --- Pagination --- */
.pagination-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.35rem;
    margin-top: var(--space-2xl);
    padding: var(--space-lg) 0;
}

.page-btn {
    min-width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.75rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--secondary);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
}

.page-btn:hover:not(:disabled) {
    border-color: var(--primary);
    color: var(--primary);
}

.page-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.page-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* --- No results state --- */
.no-results-state {
    text-align: center;
    padding: var(--space-3xl) var(--space-xl);
    color: var(--gray-400);
}

.no-results-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-lg);
    color: var(--gray-400);
}

.no-results-state h3 {
    font-size: 1.3rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.no-results-state p {
    font-size: 1rem;
    color: var(--gray-600);
}

/* ===========================================
   19. Responsive - Results Page
   =========================================== */
@media (max-width: 1024px) {
    .search-header-sticky {
        padding: 0.5rem var(--space-md);
    }

    .search-field-group {
        flex-wrap: wrap;
    }

    .search-field.location-field,
    .search-field.return-field,
    .search-field.date-field {
        flex: 1 1 100%;
    }

    .btn-search-modify {
        width: 100%;
        justify-content: center;
    }

    .main-layout {
        flex-direction: column;
        padding: var(--space-md);
        max-width: 100%;
        box-sizing: border-box;
    }

    .results-grid {
        max-width: 100%;
        overflow: hidden;
    }

    .vehicle-card {
        max-width: 100%;
    }

    .filters-sidebar {
        width: 85%;
        max-width: 380px;
        position: fixed;
        top: 0;
        left: -100%;
        bottom: 0;
        z-index: 310;
        border-radius: 0;
        overflow-y: auto;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-strong);
        max-height: 100vh;
    }

    .filters-sidebar.open {
        left: 0;
    }

    .filters-content {
        max-height: calc(100vh - 120px);
        overflow-y: auto;
    }

    .filters-toggle-header {
        position: sticky;
        top: 0;
        z-index: 10;
        background: var(--white);
        padding: var(--space-md) var(--space-lg);
        border-bottom: 1px solid var(--sand);
    }

    .btn-open-filters {
        display: inline-flex;
    }

    .filters-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 305;
    }

    .results-grid {
        gap: var(--space-md);
    }
}

@media (max-width: 768px) {
    .filters-sidebar {
        width: 100%;
        max-width: none;
    }

    /* ── Masquer le header sticky desktop, afficher la barre résumé ── */
    .search-header-sticky {
        display: none;
    }

    .results-page {
        padding-top: 16px;
    }


    .search-summary-bar {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        position: fixed;
        top: 78px;
        left: 0;
        right: 0;
        z-index: 90;
        background: var(--white);
        border-bottom: 1px solid var(--gray-200);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
        padding: 0.5rem 0.75rem;
        cursor: pointer;
        transition: background 0.15s ease;
    }

    .results-page .main-layout {
        padding-top: 56px;
    }

    .search-summary-bar:active {
        background: var(--gray-100);
    }

    .search-summary-info {
        flex: 1;
        min-width: 0;
        display: flex;
        flex-direction: column;
        gap: 0.15rem;
    }

    .search-summary-row {
        display: flex;
        align-items: center;
        gap: 0.4rem;
    }

    .search-summary-icon {
        width: 14px;
        height: 14px;
        color: var(--primary);
        flex-shrink: 0;
    }

    .search-summary-location {
        font-size: 0.85rem;
        font-weight: 600;
        color: var(--secondary);
    }

    .search-summary-dates {
        font-size: 0.8rem;
        font-weight: 500;
        color: var(--gray-600);
    }

    .search-summary-actions {
        display: flex;
        align-items: center;
        gap: 0.4rem;
        flex-shrink: 0;
    }

    .search-summary-action {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 34px;
        height: 34px;
        background: var(--secondary);
        border-radius: 50%;
        cursor: pointer;
    }

    .search-summary-action-primary {
        background: var(--primary);
    }

    .search-summary-edit-icon {
        width: 15px;
        height: 15px;
        color: var(--white);
    }

    /* Masquer le select de tri desktop sur mobile */
    .results-sort {
        display: none;
    }

    /* Dropdown tri mobile */
    .sort-dropdown-overlay {
        position: fixed;
        inset: 0;
        z-index: 95;
        background: rgba(0,0,0,0.3);
    }

    .sort-dropdown-mobile {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 96;
        background: var(--white);
        border-radius: 16px 16px 0 0;
        box-shadow: 0 -4px 20px rgba(0,0,0,0.12);
        padding: 0.5rem 0;
        animation: slideUp 0.2s ease;
    }

    @keyframes slideUp {
        from { transform: translateY(100%); }
        to { transform: translateY(0); }
    }

    .sort-dropdown-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0.5rem 1rem 0.75rem;
        border-bottom: 1px solid var(--gray-200);
    }

    .sort-dropdown-header span {
        font-size: 1rem;
        font-weight: 700;
        color: var(--secondary);
    }

    .sort-dropdown-header button {
        background: var(--gray-100);
        border: none;
        border-radius: 50%;
        width: 28px;
        height: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        color: var(--gray-600);
    }

    .sort-option {
        display: block;
        width: 100%;
        text-align: left;
        padding: 0.75rem 1rem;
        border: none;
        background: none;
        font-size: 0.9rem;
        color: var(--gray-600);
        cursor: pointer;
        transition: background 0.1s;
    }

    .sort-option:active {
        background: var(--gray-100);
    }

    .sort-option.active {
        color: var(--primary);
        font-weight: 700;
        background: rgba(255, 107, 53, 0.06);
    }

    /* ── Drawer de recherche mobile ── */
    .search-drawer {
        display: block;
        position: fixed;
        top: -100%;
        left: 0;
        right: 0;
        z-index: 310;
        background: var(--white);
        border-radius: 0 0 16px 16px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        transition: top 0.3s ease;
        max-height: none;
        overflow: visible;
    }

    .search-drawer.open {
        top: 0;
    }

    .search-drawer-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 305;
        animation: fadeIn 0.2s ease;
    }

    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    .search-drawer-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1rem 1rem 0.5rem;
        border-bottom: 1px solid var(--gray-200);
    }

    .search-drawer-header h3 {
        margin: 0;
        font-size: 1.05rem;
        font-weight: 700;
        color: var(--secondary);
    }

    .search-drawer-close {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        background: var(--gray-100);
        border: none;
        border-radius: 50%;
        cursor: pointer;
        transition: background 0.15s ease;
    }

    .search-drawer-close:hover {
        background: var(--gray-200);
    }

    .search-drawer-close svg {
        width: 16px;
        height: 16px;
        color: var(--gray-600);
    }

    .search-drawer-content {
        padding: 1rem;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .search-drawer-field {
        display: flex;
        flex-direction: column;
        gap: 0.35rem;
    }

    .search-drawer-label {
        font-size: 0.78rem;
        font-weight: 600;
        color: var(--gray-500);
        text-transform: uppercase;
        letter-spacing: 0.03em;
    }

    .search-drawer-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        width: 100%;
        padding: 0.85rem;
        background: var(--primary);
        color: var(--white);
        border: none;
        border-radius: var(--radius-sm);
        font-size: 1rem;
        font-weight: 700;
        cursor: pointer;
        transition: background 0.15s ease;
        margin-top: 0.25rem;
    }

    .search-drawer-btn:hover {
        background: var(--primary-dark);
    }

    /* ── Résultats ── */
    .results-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .results-sort {
        width: 100%;
        justify-content: space-between;
    }

    /* Bouton Filtres flottant */
    .btn-open-filters {
        bottom: 1.2rem;
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
        z-index: 80;
    }

    /* Padding en bas pour que le bouton flottant ne cache pas le contenu */
    .results-content {
        padding-bottom: 4rem;
    }

    .main-layout {
        padding: var(--space-sm);
        margin-top: 0.25rem;
    }

    .pagination-nav {
        flex-wrap: wrap;
    }

    /* Fix calendrier dans le drawer de recherche mobile */
    .search-drawer .date-picker-calendar {
        position: fixed !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        z-index: 99999 !important;
        border-radius: 16px 16px 0 0 !important;
    }

    .search-drawer .date-picker-backdrop {
        z-index: 99990 !important;
    }
}

/* ===========================================
   20. Legal Pages (CGV, Confidentialite, Mentions)
   =========================================== */
.legal-page {
    background: var(--gray-100);
    padding: var(--space-3xl) var(--space-xl);
    min-height: 100vh;
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-3xl);
    box-shadow: var(--shadow-sm);
}

.legal-container h1 {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.legal-container .last-updated {
    font-size: 0.85rem;
    color: var(--gray-400);
    margin-bottom: var(--space-xl);
}

.legal-container .important-notice {
    background: rgba(255, 107, 53, 0.06);
    border-left: 4px solid var(--primary);
    padding: 1rem 1.25rem;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin-bottom: var(--space-xl);
}

.legal-container .important-notice p {
    margin: 0;
    color: var(--gray-600);
    line-height: 1.7;
}

.legal-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: var(--space-2xl);
    padding: var(--space-md) 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.legal-nav a {
    padding: 0.4rem 0.85rem;
    background: var(--sand-light);
    color: var(--secondary);
    text-decoration: none;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    transition: all var(--transition-base);
}

.legal-nav a:hover {
    background: var(--primary);
    color: var(--white);
}

.legal-section {
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid var(--gray-200);
}

.legal-section:last-of-type {
    border-bottom: none;
}

.legal-section h2 {
    font-size: 1.3rem;
    color: var(--secondary);
    margin-bottom: var(--space-md);
}

.legal-section h3 {
    font-size: 1.05rem;
    color: var(--secondary);
    margin: var(--space-lg) 0 var(--space-sm);
}

.legal-section p {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: var(--space-sm);
}

.legal-section ul {
    color: var(--gray-600);
    line-height: 1.8;
    padding-left: 1.5rem;
    margin-bottom: var(--space-md);
}

.legal-section ul li {
    margin-bottom: 0.4rem;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--space-md) 0;
}

.legal-table th,
.legal-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border: 1px solid var(--gray-200);
    font-size: 0.9rem;
}

.legal-table th {
    background: var(--secondary);
    color: var(--white);
    font-weight: 600;
}

.legal-table td {
    color: var(--gray-600);
}

.legal-table tr:nth-child(even) td {
    background: var(--gray-100);
}

.acceptance-notice {
    background: var(--sand-light);
    padding: 1.25rem;
    border-radius: var(--radius-sm);
    margin-top: var(--space-xl);
}

.acceptance-notice p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--gray-600);
    font-style: italic;
}

@media (max-width: 768px) {
    .legal-page {
        padding: var(--space-xl) var(--space-md);
    }

    .legal-container {
        padding: var(--space-xl);
    }

    .legal-nav {
        gap: 0.35rem;
    }

    .legal-nav a {
        font-size: 0.8rem;
        padding: 0.35rem 0.65rem;
    }
}

/* ===========================================
   21. Error Pages (404, 500)
   =========================================== */
.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--sand-light) 0%, var(--white) 100%);
    padding: var(--space-xl);
}

.error-content {
    text-align: center;
    max-width: 520px;
}

.error-illustration {
    margin-bottom: var(--space-xl);
}

.error-code {
    font-family: 'Playfair Display', serif;
    font-size: 8rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    opacity: 0.15;
}

.error-500 .error-code {
    color: var(--error);
}

.error-content h1 {
    font-size: 1.75rem;
    color: var(--secondary);
    margin-bottom: var(--space-md);
}

.error-content > p {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}

.error-actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    margin-bottom: var(--space-2xl);
}

.error-suggestions {
    text-align: left;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-sm);
}

.error-suggestions h3 {
    font-size: 1rem;
    color: var(--secondary);
    margin-bottom: var(--space-md);
}

.error-suggestions ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.error-suggestions li {
    margin-bottom: 0.5rem;
}

.error-suggestions a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-base);
}

.error-suggestions a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .error-code {
        font-size: 5rem;
    }

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

/* ===========================================
   22. About Page (A Propos)
   =========================================== */
.about-page {
    background: var(--white);
}

.about-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--space-3xl) var(--space-xl);
}

.about-hero .hero-content h1 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--secondary);
    margin-bottom: var(--space-lg);
    line-height: 1.2;
}

.about-hero .hero-content p {
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.about-hero .hero-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-strong);
}

.stats-section {
    background: var(--secondary);
    padding: var(--space-2xl) var(--space-xl);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.stats-grid .stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.stats-grid .stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.35rem;
}

.mission-section {
    padding: var(--space-3xl) var(--space-xl);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.mission-content {
    margin-bottom: var(--space-2xl);
}

.mission-content h2 {
    font-size: 2rem;
    color: var(--secondary);
    margin: var(--space-md) 0 var(--space-lg);
}

.mission-content p {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.mission-values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.value-card {
    background: var(--sand-light);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary);
}

.value-card h4 {
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.value-card p {
    font-size: 0.95rem;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.6;
}

.story-section {
    background: var(--gray-100);
    padding: var(--space-3xl) var(--space-xl);
}

.story-section h2 {
    font-size: 2rem;
    color: var(--secondary);
    margin: var(--space-md) 0 var(--space-2xl);
}

.timeline {
    position: relative;
    padding-left: 3rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gray-200);
}

.timeline-item {
    position: relative;
    padding-bottom: var(--space-2xl);
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -3rem;
    top: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-item.current .timeline-marker {
    border-color: var(--primary);
    background: var(--primary);
}

.timeline-year {
    font-size: 0;
}

.timeline-content {
    background: var(--white);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.timeline-content h4 {
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

.team-section {
    padding: var(--space-3xl) var(--space-xl);
}

.team-section h2 {
    font-size: 2rem;
    color: var(--secondary);
    margin: var(--space-md) 0;
}

.section-intro {
    font-size: 1.05rem;
    color: var(--gray-600);
    margin-bottom: var(--space-2xl);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.team-card {
    text-align: center;
}

.team-photo {
    margin-bottom: var(--space-md);
}

.photo-placeholder {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.team-card h4 {
    font-size: 1.05rem;
    color: var(--secondary);
    margin-bottom: 0.25rem;
}

.team-role {
    font-size: 0.85rem;
    color: var(--gray-400);
}

.contact-cta {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    padding: var(--space-3xl) var(--space-xl);
    text-align: center;
}

.contact-cta .cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-cta h2 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: var(--space-md);
}

.contact-cta p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-xl);
}

.cta-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
}

@media (max-width: 1024px) {
    .about-hero { grid-template-columns: 1fr; }
    .mission-values { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .team-grid { grid-template-columns: 1fr 1fr; }
    .cta-buttons { flex-direction: column; align-items: center; }
}

/* ===========================================
   23. Contact Page
   =========================================== */
.contact-page {
    background: var(--gray-100);
}

.contact-hero {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    padding: 8rem var(--space-xl) var(--space-3xl);
    margin-top: -80px;
    text-align: center;
}

.contact-hero .hero-content h1 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: var(--space-md);
}

.contact-hero .hero-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-options {
    max-width: 1200px;
    margin: -3rem auto 0;
    padding: 0 var(--space-xl);
    position: relative;
    z-index: 10;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.option-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    box-shadow: var(--shadow-strong);
    transition: transform var(--transition-base);
}

.option-card:hover {
    transform: translateY(-4px);
}

.option-card h3 {
    font-size: 1.2rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.option-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: var(--space-md);
}

.option-status {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.option-status.available {
    color: var(--success);
}

.option-hours,
.option-email {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-bottom: var(--space-md);
}

.contact-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-3xl) var(--space-xl);
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-2xl);
}

.contact-form-section {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-sm);
}

.contact-form-section h2 {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 0.35rem;
}

.contact-form-section .form-subtitle {
    font-size: 0.95rem;
    color: var(--gray-600);
    margin-bottom: var(--space-xl);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.contact-form .form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary);
}

.contact-form .form-input,
.contact-form .form-select,
.contact-form .form-textarea {
    padding: 0.75rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color var(--transition-base);
}

.contact-form .form-input:focus,
.contact-form .form-select:focus,
.contact-form .form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.contact-form .form-textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--gray-600);
}

.contact-form .form-checkbox input {
    margin-top: 0.2rem;
    accent-color: var(--primary);
}

.contact-form .form-checkbox a {
    color: var(--primary);
}

.contact-form .btn-block {
    width: 100%;
}

.success-message {
    background: rgba(72, 187, 120, 0.1);
    border-left: 4px solid var(--success);
    padding: 1rem 1.25rem;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin-top: var(--space-md);
}

.success-message h4 {
    font-size: 1rem;
    color: var(--success);
    margin-bottom: 0.25rem;
}

.success-message p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin: 0;
}

.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.contact-sidebar .sidebar-card,
.faq-sidebar .sidebar-card,
.article-sidebar .sidebar-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-sm);
}

.sidebar-card h3 {
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: var(--space-md);
}

.faq-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: var(--space-lg);
}

.faq-link {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color var(--transition-base);
}

.faq-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.office-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.office-item h4 {
    font-size: 0.95rem;
    color: var(--secondary);
    margin-bottom: 0.25rem;
}

.office-item p {
    font-size: 0.85rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

.office-hours {
    font-size: 0.8rem;
    color: var(--gray-400);
    margin-top: 0.25rem;
    display: block;
}

@media (max-width: 1024px) {
    .options-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .contact-hero { padding: 6rem var(--space-md) var(--space-xl); }
    .contact-form .form-row { grid-template-columns: 1fr; }
}

/* ===========================================
   24. FAQ Page
   =========================================== */
.faq-page {
    background: var(--gray-100);
}

.faq-hero {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    padding: 8rem var(--space-xl) var(--space-3xl);
    margin-top: -80px;
    text-align: center;
}

.faq-hero .hero-content h1 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: var(--space-md);
}

.faq-hero .hero-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-xl);
}

.search-box {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 0.9rem 1.25rem;
    padding-right: 3rem;
    border: none;
    border-radius: var(--radius-full);
    font-size: 1rem;
    font-family: inherit;
    box-shadow: var(--shadow-strong);
}

.search-box input:focus {
    outline: none;
    box-shadow: var(--shadow-strong), 0 0 0 3px rgba(255, 107, 53, 0.2);
}

.search-box .clear-btn {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: var(--gray-200);
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 0.85rem;
    color: var(--gray-600);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.search-box .clear-btn:hover {
    background: var(--primary);
    color: var(--white);
}

.faq-categories {
    max-width: 1200px;
    margin: -2rem auto 0;
    padding: 0 var(--space-xl);
    position: relative;
    z-index: 10;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-md);
}

.category-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.category-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.category-card.active {
    border-color: var(--primary);
    background: rgba(255, 107, 53, 0.04);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.category-icon {
    font-size: 1.5rem;
}

.category-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary);
}

.category-count {
    font-size: 0.75rem;
    color: var(--gray-400);
}

.faq-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-2xl) var(--space-xl);
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-2xl);
}

.questions-section .section-title {
    font-size: 1.3rem;
    color: var(--secondary);
    margin-bottom: var(--space-lg);
}

.questions-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.question-item {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition-base);
}

.question-item.expanded {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.question-header {
    width: 100%;
    padding: 1rem 1.25rem;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: background var(--transition-base);
}

.question-header:hover {
    background: var(--sand-light);
}

.question-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--secondary);
    flex: 1;
}

.toggle-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gray-100);
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 700;
    flex-shrink: 0;
}

.question-answer {
    padding: 0 1.25rem 1.25rem;
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.7;
    animation: fadeIn 0.3s ease;
}

.question-answer p {
    margin: 0;
}

.faq-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.popular-questions {
    list-style: none;
    padding: 0;
    margin: 0;
}

.popular-questions li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.popular-questions li:last-child {
    border-bottom: none;
}

.popular-questions a {
    color: var(--secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-base);
}

.popular-questions a:hover {
    color: var(--primary);
}

.sidebar-card.highlight {
    background: var(--sand-light);
    border: 2px solid var(--sand);
}

.contact-prompt h4 {
    font-size: 1rem;
    color: var(--secondary);
    margin-bottom: 0.25rem;
}

.contact-prompt p {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-bottom: var(--space-md);
}

.no-results {
    text-align: center;
    padding: var(--space-3xl) var(--space-xl);
}

.no-results h3 {
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.no-results p {
    color: var(--gray-600);
}

@media (max-width: 1024px) {
    .categories-grid { grid-template-columns: repeat(3, 1fr); }
    .content-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .faq-hero { padding: 6rem var(--space-md) var(--space-xl); }
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===========================================
   25. Blog Pages
   =========================================== */
.blog-page {
    background: var(--gray-100);
}

.blog-hero {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    padding: 8rem var(--space-xl) var(--space-3xl);
    margin-top: -80px;
    text-align: center;
}

.blog-hero .hero-content h1 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: var(--space-md);
}

.blog-hero .hero-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
}

.blog-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-3xl) var(--space-xl);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-strong);
}

.blog-card .card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.blog-card .card-category {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.3rem 0.75rem;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.blog-card .card-content {
    padding: var(--space-lg);
}

.blog-card .card-date {
    font-size: 0.8rem;
    color: var(--gray-400);
}

.blog-card .card-title {
    font-size: 1.1rem;
    color: var(--secondary);
    margin: 0.5rem 0;
    line-height: 1.3;
}

.blog-card .card-excerpt {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.blog-card .card-read-more {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 600;
}

/* --- Article Page --- */
.article-page {
    background: var(--gray-100);
}

.article-hero {
    min-height: 400px;
    background-size: cover;
    background-position: center;
    margin-top: -80px;
}

.article-hero .hero-overlay {
    min-height: 400px;
    background: linear-gradient(to top, rgba(26, 26, 46, 0.9), rgba(26, 26, 46, 0.3));
    display: flex;
    align-items: flex-end;
    padding: var(--space-3xl) var(--space-xl);
}

.article-hero .hero-content {
    max-width: 800px;
}

.article-hero .breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: var(--space-md);
    font-size: 0.85rem;
}

.article-hero .breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.article-hero .breadcrumb a:hover {
    color: var(--white);
}

.article-hero .breadcrumb span {
    color: rgba(255, 255, 255, 0.5);
}

.article-category {
    display: inline-block;
    padding: 0.3rem 0.75rem;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: var(--space-md);
}

.article-hero h1 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: var(--white);
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

.article-meta {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    gap: 0.5rem;
}

.article-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-3xl) var(--space-xl);
}

.article-content .content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-2xl);
}

.article-body {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-sm);
}

.article-intro {
    font-size: 1.15rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--gray-200);
}

.article-body h2 {
    font-size: 1.4rem;
    color: var(--secondary);
    margin: var(--space-xl) 0 var(--space-md);
}

.article-body p {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.article-body ul {
    color: var(--gray-600);
    padding-left: 1.5rem;
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.related-articles {
    list-style: none;
    padding: 0;
    margin: 0;
}

.related-articles li {
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.related-articles li:last-child {
    border-bottom: none;
}

.related-articles a {
    color: var(--secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-base);
}

.related-articles a:hover {
    color: var(--primary);
}

.sidebar-card.cta {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    color: var(--white);
}

.sidebar-card.cta h3 {
    color: var(--white);
}

.sidebar-card.cta p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: var(--space-md);
}

@media (max-width: 1024px) {
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .article-content .content-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .blog-hero { padding: 6rem var(--space-md) var(--space-xl); }
    .blog-grid { grid-template-columns: 1fr; }
}

/* ===========================================
   26. Destination Page
   =========================================== */
.destination-page {
    background: var(--gray-100);
}

.destination-hero {
    min-height: 450px;
    background-size: cover;
    background-position: center;
    margin-top: -80px;
}

.destination-hero .hero-overlay {
    min-height: 450px;
    background: linear-gradient(to top, rgba(26, 26, 46, 0.85), rgba(26, 26, 46, 0.2));
    display: flex;
    align-items: flex-end;
    padding: var(--space-3xl) var(--space-xl);
}

.destination-hero .hero-content {
    max-width: 800px;
}

.destination-hero .breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: var(--space-md);
    font-size: 0.85rem;
}

.destination-hero .breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.destination-hero .breadcrumb span {
    color: rgba(255, 255, 255, 0.5);
}

.destination-hero h1 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: var(--white);
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

.destination-hero p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-xl);
}

.destination-info {
    padding: var(--space-3xl) var(--space-xl);
}

.info-container {
    max-width: 1200px;
    margin: 0 auto;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.info-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-sm);
}

.info-card h3 {
    font-size: 1.2rem;
    color: var(--secondary);
    margin-bottom: var(--space-md);
}

.info-card p {
    color: var(--gray-600);
    line-height: 1.7;
}

.info-card ul {
    color: var(--gray-600);
    padding-left: 1.5rem;
    line-height: 1.8;
}

.info-card li {
    margin-bottom: 0.4rem;
}

.destination-cta {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    padding: var(--space-3xl) var(--space-xl);
    text-align: center;
}

.destination-cta .cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.destination-cta h2 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: var(--space-md);
}

.destination-cta p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-xl);
}

@media (max-width: 768px) {
    .info-grid { grid-template-columns: 1fr; }
}

/* ===========================================
   27. Partners Page (B2B)
   =========================================== */
.hero-b2b {
    background: linear-gradient(135deg, var(--secondary) 0%, #2D4A6F 60%, var(--secondary-light) 100%);
    padding: 10rem var(--space-xl) var(--space-3xl);
    margin-top: -80px;
}

.hero-b2b .hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.hero-b2b .hero-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: var(--white);
    margin-bottom: var(--space-lg);
    line-height: 1.15;
}

.hero-b2b .hero-title span {
    color: var(--primary);
}

.hero-b2b .hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}

.hero-cta {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.btn-outline-white {
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: var(--white);
    background: transparent;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

.btn-large {
    padding: 0.85rem 2rem;
    font-size: 1.05rem;
}

.hero-b2b .hero-stats {
    display: flex;
    gap: var(--space-2xl);
}

.hero-b2b .stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.hero-b2b .stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.25rem;
}

/* Commission Card */
.commission-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}

.commission-header {
    background: var(--secondary);
    padding: var(--space-lg);
    text-align: center;
}

.commission-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
}

.commission-subtitle {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.25rem;
}

.commission-grid {
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.commission-option {
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    position: relative;
}

.commission-option.featured {
    border-color: var(--primary);
    background: rgba(255, 107, 53, 0.03);
}

.commission-option .option-badge {
    position: absolute;
    top: -10px;
    right: 1rem;
    padding: 0.25rem 0.75rem;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

.option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.option-type {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary);
}

.option-rate {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.option-desc {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-bottom: var(--space-md);
    line-height: 1.5;
}

.option-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.feature-tag {
    padding: 0.3rem 0.65rem;
    background: var(--sand-light);
    color: var(--secondary);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.option-actions {
    margin-top: var(--space-lg);
    display: flex;
    gap: var(--space-sm);
    align-items: center;
}

.option-actions .btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-base);
    display: inline-block;
    text-align: center;
}

.option-actions .btn-outline {
    border: 2px solid var(--secondary);
    color: var(--secondary);
    background: transparent;
}

.option-actions .btn-outline:hover {
    background: var(--secondary);
    color: var(--white);
}

/* Sections communes B2B */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.pillar-card {
    text-align: center;
    padding: var(--space-xl);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-base);
}

.pillar-card:hover {
    transform: translateY(-4px);
}

.pillar-icon {
    font-size: 2rem;
    margin-bottom: var(--space-md);
}

.pillar-title {
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.pillar-desc {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.process-step {
    text-align: center;
    padding: var(--space-xl);
    position: relative;
}

.step-number {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: var(--space-md);
}

.step-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
}

.step-duration {
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 600;
    margin-top: 0.35rem;
}

.step-title {
    font-size: 1rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.step-desc {
    font-size: 0.85rem;
    color: var(--gray-600);
    line-height: 1.5;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-sm);
}

.testimonial-text {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.author-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--secondary);
}

.author-company {
    font-size: 0.8rem;
    color: var(--gray-400);
}

/* FAQ Partners */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    padding: 1rem 1.25rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--secondary);
    text-align: left;
    transition: background var(--transition-base);
}

.faq-question:hover {
    background: var(--sand-light);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 1.25rem 1.25rem;
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
}

/* Form Section */
.form-section {
    background: var(--sand-light);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-sm);
}

.form-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.form-header h2 {
    font-size: 1.75rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.form-header p {
    font-size: 0.95rem;
    color: var(--gray-600);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.form-grid .form-group.full-width {
    grid-column: span 2;
}

.form-grid .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.form-grid .form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary);
}

.form-grid .form-label span {
    color: var(--primary);
}

.form-grid .form-input,
.form-grid .form-select,
.form-grid .form-textarea {
    padding: 0.75rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color var(--transition-base);
}

.form-grid .form-input:focus,
.form-grid .form-select:focus,
.form-grid .form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

@media (max-width: 1024px) {
    .hero-b2b .hero-container { grid-template-columns: 1fr; }
    .pillars-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .hero-b2b { padding: 7rem var(--space-md) var(--space-xl); }
    .hero-cta { flex-direction: column; }
    .hero-b2b .hero-stats { flex-direction: column; gap: var(--space-md); }
    .pillars-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .form-grid .form-group.full-width { grid-column: span 1; }
}

/* ===========================================
   28. Profile Page (custom - no Bootstrap)
   =========================================== */
.profile-page {
    background: var(--gray-100);
    min-height: 100vh;
    padding: var(--space-xl);
}

.profile-page .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Btn outline */
.btn-outline {
    background: transparent;
    border: 2px solid var(--gray-200);
    color: var(--secondary);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-base);
}

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

/* Btn ghost */
.btn-ghost {
    background: transparent;
    border: none;
    color: var(--secondary);
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: color var(--transition-base);
}

.btn-ghost:hover {
    color: var(--primary);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--secondary-light);
}

/* Btn lg */
.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1.05rem;
}

.btn-block {
    width: 100%;
    text-align: center;
    justify-content: center;
}

/* ===========================================
   29. Bootstrap-Compat (Profile, Search pages)
   Minimal BS classes for pages not yet migrated
   =========================================== */

/* Grid */
.row { display: flex; flex-wrap: wrap; margin: 0 -0.75rem; }
.row > * { padding: 0 0.75rem; box-sizing: border-box; }
.col { flex: 1 0 0%; }
.col-12 { flex: 0 0 auto; width: 100%; }
.col-md-3 { flex: 0 0 auto; width: 25%; }
.col-md-4 { flex: 0 0 auto; width: 33.333%; }
.col-md-6 { flex: 0 0 auto; width: 50%; }
.col-md-8 { flex: 0 0 auto; width: 66.666%; }
.col-md-9 { flex: 0 0 auto; width: 75%; }
.col-lg-4 { flex: 0 0 auto; width: 33.333%; }
.col-lg-5 { flex: 0 0 auto; width: 41.666%; }
.col-lg-8 { flex: 0 0 auto; width: 66.666%; }
.col-lg-10 { flex: 0 0 auto; width: 83.333%; }
@media (max-width: 768px) {
    [class*="col-md-"], [class*="col-lg-"] { width: 100%; }
}
.g-3 { gap: 1rem; }
.g-4 { gap: 1.5rem; }

/* Cards */
.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    overflow: hidden;
}
.card-body { padding: 1.5rem; }
.card-header { padding: 1rem 1.5rem; background: var(--white); border-bottom: 1px solid var(--gray-200); }
.card-title { font-size: 1.1rem; font-weight: 700; color: var(--secondary); margin-bottom: 0.5rem; }
.card-img-top { width: 100%; height: 200px; object-fit: cover; }
.h-100 { height: 100%; }
.shadow-sm { box-shadow: var(--shadow-sm) !important; }
.shadow-lg { box-shadow: var(--shadow-strong) !important; }
.border-0 { border: none !important; }
.bg-white { background: var(--white) !important; }
.bg-light { background: var(--gray-100) !important; }

/* Forms */
.form-control, .form-select {
    width: 100%;
    padding: 0.65rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: inherit;
    background: var(--white);
    transition: border-color var(--transition-base);
    box-sizing: border-box;
}
.form-control:focus, .form-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}
.form-control-lg { padding: 0.75rem 1.25rem; font-size: 1.05rem; }
.form-select-lg { padding: 0.75rem 1.25rem; font-size: 1.05rem; }
.form-label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--secondary); margin-bottom: 0.35rem; }

/* Alerts */
.alert {
    padding: 1rem 1.25rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.alert-success { background: rgba(72, 187, 120, 0.1); color: #276749; border-left: 4px solid var(--success); }
.alert-danger { background: rgba(229, 62, 62, 0.1); color: #9b2c2c; border-left: 4px solid var(--error); }
.alert-info { background: rgba(56, 178, 172, 0.1); color: #234e52; border-left: 4px solid var(--accent); }
.alert-warning { background: rgba(236, 201, 75, 0.1); color: #744210; border-left: 4px solid var(--warning); }
.alert-dismissible { position: relative; padding-right: 3rem; }
.btn-close {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0.5;
    padding: 0.25rem;
    line-height: 1;
}
.btn-close::after { content: "\00d7"; }
.btn-close:hover { opacity: 1; }

/* List Group */
.list-group { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; }
.list-group-flush { border-radius: 0; }
.list-group-item {
    padding: 0.85rem 1.25rem;
    border: none;
    border-bottom: 1px solid var(--gray-200);
    background: var(--white);
    color: var(--secondary);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    width: 100%;
    font-family: inherit;
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.list-group-item:last-child { border-bottom: none; }
.list-group-item:hover { background: var(--sand-light); color: var(--primary); }
.list-group-item.active { background: var(--primary); color: var(--white); border-color: var(--primary); }

/* Spinner */
.spinner-border {
    display: inline-block;
    width: 1.5rem;
    height: 1.5rem;
    border: 3px solid rgba(255, 107, 53, 0.2);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.75s linear infinite;
}
.spinner-border-sm { width: 1rem; height: 1rem; border-width: 2px; }
.text-primary { color: var(--primary) !important; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Utility classes */
.justify-content-center { display: flex; justify-content: center; }
.justify-content-between { display: flex; justify-content: space-between; }
.align-items-center { align-items: center; }
.d-flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.gap-3 { gap: 1rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.25rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.me-1 { margin-right: 0.25rem !important; }
.me-2 { margin-right: 0.5rem !important; }
.p-0 { padding: 0 !important; }
.p-3 { padding: 1rem !important; }
.p-4 { padding: 1.5rem !important; }
.p-5 { padding: 3rem !important; }
.py-3 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
.py-4 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
.py-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
.px-5 { padding-left: 3rem !important; padding-right: 3rem !important; }
.text-center { text-align: center !important; }
.text-end { text-align: right !important; }
.text-muted { color: var(--gray-600) !important; }
.text-danger { color: var(--error) !important; }
.text-success { color: var(--success) !important; }
.small { font-size: 0.85rem !important; }
.fw-bold { font-weight: 700 !important; }
.fw-semibold { font-weight: 600 !important; }
.text-decoration-none { text-decoration: none !important; }
.w-100 { width: 100% !important; }
.min-vh-100 { min-height: 100vh !important; }
.rounded { border-radius: var(--radius-sm) !important; }
.visually-hidden { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; }
.btn-outline-secondary { background: transparent; border: 2px solid var(--gray-200); color: var(--gray-600); }
.btn-outline-secondary:hover { border-color: var(--secondary); color: var(--secondary); }
.btn-warning { background: var(--warning); color: var(--secondary); border: none; }
.btn-warning:hover { background: #d4a932; }
.btn-success { background: var(--success); color: var(--white); border: none; }
.btn-success:hover { background: #38a169; }
.h3 { font-size: 1.5rem; font-weight: 700; }
.h4 { font-size: 1.25rem; font-weight: 700; }
hr { border: none; border-top: 1px solid var(--gray-200); margin: 1.5rem 0; }
.my-4 { margin-top: 1.5rem; margin-bottom: 1.5rem; }
.lead { font-size: 1.15rem; color: var(--gray-600); }
.display-4 { font-size: 2.5rem; font-weight: 700; }

/* ===========================================
   VEHICLE DETAIL PAGE
   =========================================== */
.vehicle-detail-page { padding: var(--space-xl) 0; min-height: 60vh; }
.detail-container { max-width: 1200px; margin: 0 auto; padding: 0 var(--space-lg); }

/* Breadcrumb */
.breadcrumb { display: flex; align-items: center; gap: var(--space-sm); margin-bottom: var(--space-xl); font-size: 0.875rem; color: var(--gray-400); }
.breadcrumb a { color: var(--gray-600); text-decoration: none; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .separator { color: var(--gray-200); }
.breadcrumb .current { color: var(--secondary); font-weight: 500; }

/* Layout 2 colonnes */
.detail-layout { display: grid; grid-template-columns: 1fr 380px; gap: var(--space-2xl); align-items: start; }

/* Photo Gallery */
.photo-gallery { margin-bottom: var(--space-2xl); }
.gallery-main { position: relative; border-radius: var(--radius-md); overflow: hidden; background: var(--gray-100); aspect-ratio: 16/10; }
.gallery-main .main-photo { width: 100%; height: 100%; object-fit: cover; }
.gallery-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.9); border: none; border-radius: 50%; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: var(--shadow-sm); transition: var(--transition-fast); }
.gallery-nav:hover { background: var(--white); box-shadow: var(--shadow-soft); }
.gallery-nav.prev { left: var(--space-md); }
.gallery-nav.next { right: var(--space-md); }
.gallery-nav svg { width: 20px; height: 20px; }
.photo-counter { position: absolute; bottom: var(--space-md); right: var(--space-md); background: rgba(0,0,0,0.6); color: var(--white); padding: 4px 12px; border-radius: var(--radius-full); font-size: 0.8rem; }
.gallery-thumbs { display: flex; gap: var(--space-sm); margin-top: var(--space-sm); overflow-x: auto; }
.gallery-thumbs .thumb { width: 80px; height: 60px; border-radius: var(--radius-sm); overflow: hidden; border: 2px solid transparent; cursor: pointer; padding: 0; flex-shrink: 0; }
.gallery-thumbs .thumb.active { border-color: var(--primary); }
.gallery-thumbs .thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-placeholder { display: flex; flex-direction: column; align-items: center; justify-content: center; background: var(--gray-100); border-radius: var(--radius-md); padding: var(--space-3xl); color: var(--gray-400); }
.gallery-placeholder p { margin-top: var(--space-md); }

/* Specs Section */
.specs-section, .equipment-section, .protections-section, .extras-section { margin-bottom: var(--space-2xl); }
.specs-section h2, .equipment-section h2, .protections-section h2, .extras-section h2 { font-size: 1.25rem; font-weight: 700; color: var(--secondary); margin-bottom: var(--space-lg); }
.specs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: var(--space-md); }
.spec-item { background: var(--gray-100); padding: var(--space-md); border-radius: var(--radius-sm); }
.spec-label { display: block; font-size: 0.8rem; color: var(--gray-400); margin-bottom: 4px; }
.spec-value { font-weight: 600; color: var(--secondary); }

/* Equipment */
.equipment-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: var(--space-sm); }
.equipment-item { display: flex; align-items: center; gap: var(--space-sm); padding: var(--space-sm) var(--space-md); background: var(--gray-100); border-radius: var(--radius-sm); font-size: 0.9rem; }
.eq-icon { font-size: 1.1rem; }
.bags-info { display: flex; gap: var(--space-lg); margin-top: var(--space-md); color: var(--gray-600); font-size: 0.875rem; }

/* Protections & Extras */
.protections-list, .extras-list { display: flex; flex-direction: column; gap: var(--space-sm); }
.protection-card, .extra-card { display: flex; justify-content: space-between; align-items: center; padding: var(--space-md) var(--space-lg); background: var(--gray-100); border-radius: var(--radius-sm); }
.protection-info h4, .extra-info h4 { font-size: 0.95rem; font-weight: 600; color: var(--secondary); margin: 0; }
.protection-detail { font-size: 0.8rem; color: var(--gray-400); }
.protection-price .price-amount, .extra-price .price-amount { font-weight: 700; color: var(--primary); font-size: 1.1rem; }
.protection-price .price-period, .extra-price .price-period { font-size: 0.8rem; color: var(--gray-400); }

/* Pricing Card (Sidebar) */
.pricing-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-md); padding: var(--space-xl); box-shadow: var(--shadow-soft); }
.pricing-card.sticky { position: sticky; top: 100px; }
.pricing-header h2 { font-size: 1.3rem; font-weight: 700; color: var(--secondary); margin: 0 0 var(--space-xs); }
.pricing-header .agency-name { display: flex; align-items: center; gap: 6px; color: var(--gray-600); font-size: 0.875rem; margin: 0; }
.pricing-rates { margin: var(--space-lg) 0; padding: var(--space-lg) 0; border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); }
.rate-main { display: flex; align-items: baseline; gap: 4px; }
.rate-amount { font-size: 2rem; font-weight: 800; color: var(--primary); }
.rate-period { font-size: 0.9rem; color: var(--gray-400); }
.rate-secondary { margin-top: var(--space-xs); font-size: 0.875rem; color: var(--gray-600); }
.pricing-features { display: flex; flex-wrap: wrap; gap: var(--space-sm); margin: var(--space-lg) 0; }
.feature-badge { background: var(--gray-100); color: var(--gray-600); padding: 4px 12px; border-radius: var(--radius-full); font-size: 0.8rem; }
.feature-badge.instant { background: rgba(72, 187, 120, 0.1); color: var(--success); }
.btn-reserve { margin-top: var(--space-md); padding: var(--space-md) var(--space-xl); font-size: 1.05rem; font-weight: 700; }
.pricing-note { margin-top: var(--space-md); font-size: 0.8rem; color: var(--gray-400); text-align: center; }

/* Not found state */
.not-found-state { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: var(--space-3xl); color: var(--gray-400); text-align: center; }
.not-found-state h2 { color: var(--secondary); margin: var(--space-lg) 0 var(--space-sm); }
.not-found-state .btn { margin-top: var(--space-lg); }

/* Skeleton */
.detail-skeleton { display: grid; grid-template-columns: 1fr 380px; gap: var(--space-2xl); }
.skeleton-gallery, .skeleton-image-main { background: var(--gray-100); border-radius: var(--radius-md); aspect-ratio: 16/10; animation: skeleton-pulse 1.5s infinite; }
.skeleton-info { display: flex; flex-direction: column; gap: var(--space-md); padding: var(--space-xl); }
.skeleton-line { height: 20px; background: var(--gray-100); border-radius: var(--radius-sm); animation: skeleton-pulse 1.5s infinite; }
.skeleton-line.w-75 { width: 75%; }
.skeleton-line.w-50 { width: 50%; }
.skeleton-line.w-60 { width: 60%; }
.skeleton-line.w-100 { width: 100%; }
@keyframes skeleton-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

/* ===========================================
   VehicleDetail Page - Design professionnel
   =========================================== */

.vd-page { min-height: 100vh; background: #f5f6f8; padding-bottom: 3rem; }
.vd-container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* Breadcrumb */
.vd-breadcrumb { display: flex; align-items: center; gap: 0.4rem; font-size: 0.82rem; color: #6b7280; padding: 1rem 0; }
.vd-breadcrumb a { color: #0071c2; text-decoration: none; }
.vd-breadcrumb a:hover { text-decoration: underline; }
.vd-breadcrumb .current { color: #1a1a1a; font-weight: 500; }

/* Not found */
.vd-not-found { text-align: center; padding: 4rem 1rem; color: #6b7280; }
.vd-not-found svg { color: #dc2626; margin-bottom: 1rem; }
.vd-not-found h2 { color: #1a1a1a; margin-bottom: 0.5rem; }

/* Skeleton */
.vd-skeleton { display: grid; grid-template-columns: 2fr 1fr; gap: 2rem; padding: 2rem 0; }
.vd-skeleton-gallery { height: 400px; background: #e5e7eb; border-radius: 8px; animation: skeleton-pulse 1.5s infinite; }
.vd-skeleton-info { display: flex; flex-direction: column; gap: 1rem; }

/* ── Hero ── */
.vd-hero { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; padding: 0.5rem 0 1rem; flex-wrap: wrap; }
.vd-hero-title h1 { font-size: 1.75rem; font-weight: 800; color: #1a1a1a; margin: 0 0 0.4rem; }
.vd-hero-badges { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.vd-badge { display: inline-flex; align-items: center; padding: 4px 10px; font-size: 0.72rem; font-weight: 600; border-radius: 3px; background: #f3f4f6; color: #4b5563; }
.vd-badge.featured { background: #febb02; color: #1a1a1a; }
.vd-badge.instant { background: #fef3c7; color: #b45309; }

.vd-hero-rating { display: flex; align-items: center; gap: 0.5rem; }
.vd-rating-text { display: flex; flex-direction: column; align-items: flex-end; }
.vd-rating-label { font-size: 0.85rem; font-weight: 700; color: #1a1a1a; }
.vd-rating-reviews { font-size: 0.72rem; color: #6b7280; }
.vd-rating-score { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: #003580; color: #fff; font-size: 1rem; font-weight: 800; border-radius: 8px 8px 8px 0; }

/* ── Layout 2 colonnes ── */
.vd-layout { display: grid; grid-template-columns: 1fr 340px; gap: 1.5rem; align-items: start; }
.vd-main { display: flex; flex-direction: column; gap: 1.5rem; }

/* ── Galerie ── */
.vd-gallery { background: #fff; border: 1px solid #e0e0e0; border-radius: 8px; overflow: hidden; }
.vd-gallery-main { position: relative; background: #fafbfc; display: flex; align-items: center; justify-content: center; min-height: 380px; }
.vd-main-photo { max-width: 100%; max-height: 420px; object-fit: contain; padding: 1.5rem; }
.vd-gallery-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.9); border: 1px solid #ddd; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.15s; }
.vd-gallery-nav:hover { background: #fff; box-shadow: 0 2px 8px rgba(0,0,0,0.15); }
.vd-gallery-nav svg { width: 18px; height: 18px; color: #1a1a1a; }
.vd-gallery-nav.prev { left: 12px; }
.vd-gallery-nav.next { right: 12px; }
.vd-photo-counter { position: absolute; bottom: 12px; right: 12px; background: rgba(0,0,0,0.6); color: #fff; padding: 3px 10px; border-radius: 3px; font-size: 0.75rem; font-weight: 600; }
.vd-gallery-thumbs { display: flex; gap: 0.5rem; padding: 0.75rem; border-top: 1px solid #f0f0f0; overflow-x: auto; }
.vd-thumb { width: 72px; height: 52px; border-radius: 4px; overflow: hidden; border: 2px solid transparent; cursor: pointer; padding: 0; background: #fafbfc; flex-shrink: 0; }
.vd-thumb.active { border-color: #0071c2; }
.vd-thumb img { width: 100%; height: 100%; object-fit: cover; }
.vd-gallery-empty { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 300px; color: #9ca3af; gap: 0.5rem; }

/* ── Quick specs bar ── */
.vd-quick-specs { display: flex; align-items: center; justify-content: space-between; background: #fff; border: 1px solid #e0e0e0; border-radius: 8px; padding: 1rem 1.5rem; }
.vd-qs-item { display: flex; align-items: center; gap: 0.5rem; }
.vd-qs-item svg { width: 22px; height: 22px; color: #0071c2; flex-shrink: 0; }
.vd-qs-item div { display: flex; flex-direction: column; }
.vd-qs-item strong { font-size: 0.9rem; color: #1a1a1a; line-height: 1.2; }
.vd-qs-item span { font-size: 0.7rem; color: #6b7280; }
.vd-qs-sep { width: 1px; height: 32px; background: #e0e0e0; flex-shrink: 0; }

/* ── Sections ── */
.vd-section { background: #fff; border: 1px solid #e0e0e0; border-radius: 8px; padding: 1.5rem; }
.vd-section-title { font-size: 1.1rem; font-weight: 700; color: #1a1a1a; margin: 0 0 1rem; padding-bottom: 0.75rem; border-bottom: 1px solid #f0f0f0; }

/* Specs detail grid */
.vd-specs-detail-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0.6rem 2rem; }
.vd-spec-detail { display: flex; justify-content: space-between; padding: 0.45rem 0; border-bottom: 1px solid #f7f7f7; }
.vd-spec-label { font-size: 0.85rem; color: #6b7280; }
.vd-spec-val { font-size: 0.85rem; color: #1a1a1a; font-weight: 600; }

/* Equipment grid */
.vd-equip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.6rem; }
.vd-equip-item { display: flex; align-items: center; gap: 0.5rem; padding: 0.6rem 0.75rem; background: #f0fdf4; border-radius: 6px; font-size: 0.85rem; color: #166534; font-weight: 500; }
.vd-equip-icon { font-size: 1.1rem; flex-shrink: 0; }

/* Protection cards */
.vd-protection-list { display: flex; flex-direction: column; gap: 0.6rem; }
.vd-protection-card { display: flex; align-items: center; gap: 1rem; padding: 1rem; border: 1px solid #e8f4fd; border-radius: 8px; background: #fafcff; }
.vd-protection-icon { font-size: 1.5rem; flex-shrink: 0; }
.vd-protection-info { flex: 1; }
.vd-protection-info h4 { margin: 0; font-size: 0.95rem; color: #1a1a1a; }
.vd-protection-details { display: flex; gap: 1rem; margin-top: 0.2rem; font-size: 0.78rem; color: #6b7280; }
.vd-protection-price { text-align: right; white-space: nowrap; }
.vd-protection-price strong { font-size: 1.1rem; color: #1a1a1a; }
.vd-protection-price span { display: block; font-size: 0.72rem; color: #6b7280; }

/* Extras grid */
.vd-extras-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; }
.vd-extra-card { display: flex; justify-content: space-between; align-items: center; padding: 0.75rem 1rem; border: 1px solid #e0e0e0; border-radius: 6px; background: #fafbfc; }
.vd-extra-info h4 { margin: 0; font-size: 0.9rem; color: #1a1a1a; }
.vd-extra-price { text-align: right; white-space: nowrap; }
.vd-extra-price strong { font-size: 0.95rem; color: #1a1a1a; }
.vd-extra-price span { font-size: 0.72rem; color: #6b7280; margin-left: 0.2rem; }

/* Agency card */
.vd-agency-card { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.vd-agency-main { display: flex; align-items: flex-start; gap: 0.75rem; flex: 1; }
.vd-agency-icon { width: 36px; height: 36px; color: #0071c2; flex-shrink: 0; margin-top: 2px; }
.vd-agency-details h3 { margin: 0; font-size: 1.05rem; color: #1a1a1a; }
.vd-agency-loc { margin: 0.15rem 0 0; font-size: 0.85rem; color: #0071c2; font-weight: 600; }
.vd-agency-addr { margin: 0.1rem 0 0; font-size: 0.82rem; color: #6b7280; }
.vd-agency-note { display: flex; align-items: flex-start; gap: 0.5rem; margin-top: 0.75rem; padding: 0.75rem 1rem; background: #f0f7ff; border-radius: 6px; border: 1px solid #dbeafe; font-size: 0.8rem; color: #1e40af; line-height: 1.4; }

/* ── Sidebar ── */
.vd-sidebar { position: sticky; top: 100px; }
.vd-pricing-card { background: #fff; border: 1px solid #e0e0e0; border-radius: 8px; padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }

.vd-pc-header h2 { margin: 0; font-size: 1.15rem; font-weight: 700; color: #1a1a1a; }
.vd-pc-agency { display: flex; align-items: center; gap: 0.3rem; margin: 0.3rem 0 0; font-size: 0.82rem; color: #0071c2; font-weight: 600; }
.vd-pc-agency span { color: #6b7280; font-weight: 400; }

/* ── Bloc dates sidebar fiche véhicule ── */
.vd-dates-select {
    margin-bottom: 1rem;
}

.vd-dates-select-label {
    font-size: 0.9rem;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.vd-dates-block {
    background: #EFF6FF;
    border: 1px solid #BFDBFE;
    border-radius: 8px;
    padding: 14px 16px;
}
.vd-dates-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}
.vd-date-item { display: flex; flex-direction: column; gap: 2px; }
.vd-date-label {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    color: #3B82F6;
}
.vd-date-value {
    font-size: 0.85rem;
    font-weight: 700;
    color: #1E293B;
}
.vd-date-time {
    font-size: 0.8rem;
    font-weight: 600;
    color: #1E40AF;
}
.vd-date-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    color: #3B82F6;
    flex-shrink: 0;
}
.vd-date-duration {
    font-size: 0.72rem;
    font-weight: 700;
    background: #3B82F6;
    color: #fff;
    padding: 1px 8px;
    border-radius: 10px;
}

.vd-pc-prices { border-top: 1px solid #f0f0f0; border-bottom: 1px solid #f0f0f0; padding: 1rem 0; }
.vd-pc-price-main { display: flex; align-items: baseline; gap: 0.3rem; margin-bottom: 0.3rem; }
.vd-pc-amount { font-size: 1.8rem; font-weight: 800; color: #1a1a1a; }
.vd-pc-period { font-size: 0.9rem; color: #6b7280; }
.vd-pc-price-alt { font-size: 0.82rem; color: #6b7280; }
.vd-pc-price-alt span { font-weight: 400; }
.vd-pc-extra-km { font-size: 0.75rem; color: #9ca3af; margin-top: 0.35rem; }

.vd-pc-features { display: flex; flex-direction: column; gap: 0.35rem; }
.vd-pc-feature { display: flex; align-items: center; gap: 0.35rem; font-size: 0.82rem; color: #4b5563; font-weight: 500; }
.vd-pc-feature.green { color: #0a8a0a; font-weight: 600; }
.vd-pc-feature.orange { color: #b45309; font-weight: 600; }

.vd-btn-reserve { width: 100%; padding: 0.85rem; background: #0071c2; color: #fff; border: none; border-radius: 6px; font-size: 1rem; font-weight: 700; cursor: pointer; transition: background 0.15s; }
.vd-btn-reserve:hover { background: #00487a; }

.vd-pc-note { font-size: 0.72rem; color: #9ca3af; text-align: center; margin: 0; }
.vd-pc-popularity { font-size: 0.78rem; color: #dc2626; font-weight: 600; text-align: center; padding-top: 0.5rem; border-top: 1px solid #f0f0f0; }

/* ── VehicleDetail Responsive ── */
@media (max-width: 900px) {
    .vd-layout { grid-template-columns: 1fr; }
    .vd-sidebar { position: static; }
    .vd-skeleton { grid-template-columns: 1fr; }
    .vd-specs-detail-grid { grid-template-columns: 1fr 1fr; }
    .vd-equip-grid { grid-template-columns: 1fr 1fr; }
    .vd-extras-grid { grid-template-columns: 1fr; }
    .vd-quick-specs { flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
    .vd-qs-sep { display: none; }
}
@media (max-width: 600px) {
    .vd-hero-title h1 { font-size: 1.3rem; }
    .vd-specs-detail-grid { grid-template-columns: 1fr; }
    .vd-equip-grid { grid-template-columns: 1fr; }
    .vd-agency-card { flex-direction: column; align-items: flex-start; }
}


/* ===========================================
   Become Partner (BP) Page - Refonte Pro
   =========================================== */

/* ── Shared ── */
.bp-container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.bp-section { padding: 4rem 0; }
.bp-section-title { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--secondary); text-align: center; margin: 0 0 0.5rem; }
.bp-section-subtitle { text-align: center; color: #6b7280; font-size: 1rem; margin: 0 0 2.5rem; }

.bp-badge { display: inline-block; padding: 6px 16px; font-size: 0.72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; background: rgba(255,107,53,0.15); color: var(--primary); border-radius: 30px; margin-bottom: 1rem; }
.bp-badge-light { display: inline-block; padding: 6px 16px; font-size: 0.72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; background: rgba(255,255,255,0.15); color: #fff; border-radius: 30px; margin-bottom: 1rem; }

/* ── Buttons ── */
.bp-btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.65rem 1.5rem; font-size: 0.92rem; font-weight: 600; border-radius: 8px; text-decoration: none; cursor: pointer; transition: all 0.2s; border: 2px solid transparent; line-height: 1.4; }
.bp-btn-primary { background: var(--primary); color: #fff; border-color: var(--primary); }
.bp-btn-primary:hover { background: #e55a2b; border-color: #e55a2b; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(255,107,53,0.3); }
.bp-btn-outline { background: transparent; color: var(--secondary); border-color: var(--secondary); }
.bp-btn-outline:hover { background: var(--secondary); color: #fff; }
.bp-btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.bp-btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: #fff; }
.bp-btn-sm { padding: 0.45rem 1rem; font-size: 0.82rem; }
.bp-btn-lg { padding: 0.85rem 2rem; font-size: 1rem; }
.bp-btn-block { width: 100%; justify-content: center; }

/* ══════════ HERO ══════════ */
.bp-hero { background: var(--gradient-deep, linear-gradient(135deg, #1A365D 0%, #0f2341 100%)); color: #fff; padding: 7rem 2rem 4rem; }
.bp-hero-container { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem; align-items: center; }
.bp-hero-title { font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 700; line-height: 1.15; margin: 0 0 1.25rem; color: #fff; }
.bp-hero-title span { color: var(--primary); }
.bp-hero-subtitle { font-size: 1.05rem; color: rgba(255,255,255,0.75); line-height: 1.7; margin: 0 0 2rem; max-width: 540px; }
.bp-hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.bp-hero-stats { display: flex; gap: 2.5rem; }
.bp-stat { text-align: center; }
.bp-stat-number { font-size: 1.8rem; font-weight: 800; color: var(--primary); }
.bp-stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.6); margin-top: 0.15rem; }

/* ── Commission Card ── */
.bp-commission-card { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.2); }
.bp-cc-header { background: var(--secondary); padding: 1.25rem 1.5rem; text-align: center; }
.bp-cc-header h2 { margin: 0; font-size: 1.15rem; font-weight: 700; color: #fff; }
.bp-cc-header p { margin: 0.25rem 0 0; font-size: 0.78rem; color: rgba(255,255,255,0.7); }
.bp-cc-options { display: grid; grid-template-columns: 1fr 1fr; }
.bp-cc-option { padding: 1.5rem; border-bottom: 1px solid #f0f0f0; position: relative; }
.bp-cc-option.featured { background: #fffbf5; border-right: 1px solid #f0f0f0; }
.bp-cc-badge { position: absolute; top: 10px; right: 10px; background: var(--primary); color: #fff; font-size: 0.65rem; font-weight: 700; padding: 3px 8px; border-radius: 3px; text-transform: uppercase; letter-spacing: 0.5px; }
.bp-cc-rate { font-size: 3rem; font-weight: 800; color: var(--secondary); line-height: 1; }
.bp-cc-rate span { font-size: 1.5rem; }
.bp-cc-type { font-size: 0.9rem; font-weight: 700; color: var(--secondary); margin: 0.35rem 0 0.5rem; }
.bp-cc-desc { font-size: 0.82rem; color: #6b7280; line-height: 1.5; margin: 0 0 0.75rem; }
.bp-cc-tags { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-bottom: 0.75rem; }
.bp-cc-tags span { display: inline-block; padding: 3px 8px; background: #f3f4f6; color: #4b5563; font-size: 0.7rem; font-weight: 600; border-radius: 3px; }
.bp-cc-savings { display: flex; align-items: center; gap: 0.5rem; padding: 1rem 1.5rem; background: #f0fdf4; color: #166534; font-size: 0.85rem; }
.bp-cc-savings i { color: #15803d; }
.bp-cc-savings strong { font-weight: 700; }

/* ══════════ PILIERS ══════════ */
.bp-pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.bp-pillar { background: #fff; border: 1px solid #e8e8e8; border-radius: 12px; padding: 2rem 1.5rem; text-align: center; transition: all 0.25s; }
.bp-pillar:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); border-color: var(--primary); }
.bp-pillar-icon { width: 56px; height: 56px; margin: 0 auto 1rem; background: linear-gradient(135deg, rgba(255,107,53,0.1), rgba(255,107,53,0.05)); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: var(--primary); }
.bp-pillar h3 { font-size: 1.05rem; font-weight: 700; color: var(--secondary); margin: 0 0 0.5rem; }
.bp-pillar p { font-size: 0.85rem; color: #6b7280; line-height: 1.55; margin: 0; }

/* ══════════ SHOWCASE MAUI ══════════ */
.bp-showcase { background: var(--gradient-deep, linear-gradient(135deg, #1A365D 0%, #0f2341 100%)); color: #fff; padding: 5rem 2rem; }
.bp-showcase-container { max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 4rem; align-items: center; }
.bp-showcase-title { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; margin: 0 0 1rem; }
.bp-showcase-subtitle { font-size: 1.05rem; color: rgba(255,255,255,0.7); line-height: 1.7; margin: 0 0 2rem; }
.bp-features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 2rem; }
.bp-feature { display: flex; gap: 0.75rem; align-items: flex-start; }
.bp-feature-icon { width: 40px; height: 40px; flex-shrink: 0; background: rgba(255,255,255,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1rem; color: var(--primary); }
.bp-feature h4 { margin: 0; font-size: 0.92rem; font-weight: 600; color: #fff; }
.bp-feature p { margin: 0.15rem 0 0; font-size: 0.78rem; color: rgba(255,255,255,0.6); line-height: 1.4; }
.bp-showcase-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── Phone Mockup ── */
.bp-showcase-visual { display: flex; justify-content: center; }
.bp-device { width: 280px; background: #111827; border-radius: 32px; padding: 12px; box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(255,107,53,0.15); position: relative; }
.bp-device-notch { width: 100px; height: 20px; background: #111827; border-radius: 0 0 12px 12px; margin: 0 auto; position: relative; z-index: 2; }
.bp-device-screen { background: #1e293b; border-radius: 22px; overflow: hidden; min-height: 420px; }
.bp-screen-header { display: flex; align-items: center; gap: 0.5rem; padding: 1rem; background: rgba(255,107,53,0.15); }
.bp-screen-logo { width: 28px; height: 28px; background: var(--primary); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; color: #fff; font-weight: 700; }
.bp-screen-header span { font-size: 0.85rem; font-weight: 600; color: #fff; }
.bp-screen-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; padding: 0.75rem; }
.bp-screen-stat { text-align: center; background: rgba(255,255,255,0.05); border-radius: 8px; padding: 0.6rem 0.25rem; }
.bp-screen-stat-val { font-size: 1.2rem; font-weight: 800; color: var(--primary); }
.bp-screen-stat-lbl { font-size: 0.6rem; color: rgba(255,255,255,0.5); margin-top: 0.1rem; }
.bp-screen-list { padding: 0.5rem 0.75rem; display: flex; flex-direction: column; gap: 0.4rem; }
.bp-screen-item { display: flex; align-items: center; gap: 0.5rem; padding: 0.6rem 0.75rem; background: rgba(255,255,255,0.05); border-radius: 8px; font-size: 0.75rem; color: rgba(255,255,255,0.8); }
.bp-screen-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.bp-screen-dot.green { background: #22c55e; }
.bp-screen-dot.orange { background: #f59e0b; }
.bp-screen-dot.red { background: #ef4444; }

/* ══════════ CALCULATEUR D'ÉCONOMIES ══════════ */
.bp-savings-section { background: var(--sand-light, #faf8f5); }
.bp-savings-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 2rem; }
.bp-savings-card { background: #fff; border: 1px solid #e8e8e8; border-radius: 12px; padding: 2rem 1.5rem; text-align: center; position: relative; transition: all 0.25s; }
.bp-savings-card.highlighted { border-color: var(--primary); box-shadow: 0 8px 24px rgba(255,107,53,0.12); }
.bp-savings-popular { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--primary); color: #fff; font-size: 0.68rem; font-weight: 700; padding: 4px 12px; border-radius: 20px; white-space: nowrap; text-transform: uppercase; letter-spacing: 0.5px; }
.bp-savings-scenario { font-size: 1.05rem; font-weight: 700; color: var(--secondary); }
.bp-savings-detail { font-size: 0.82rem; color: #6b7280; margin: 0.25rem 0 1rem; }
.bp-savings-amount { font-size: 2.2rem; font-weight: 800; color: var(--primary); line-height: 1.1; }
.bp-savings-amount span { font-size: 0.9rem; font-weight: 500; color: #6b7280; }
.bp-savings-year { font-size: 0.82rem; color: #15803d; font-weight: 600; margin-top: 0.35rem; }
.bp-savings-cta { text-align: center; }

/* ══════════ PROCESSUS ══════════ */
.bp-process-section { background: #fff; }
.bp-process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.bp-step { text-align: center; position: relative; }
.bp-step::after { content: ''; position: absolute; top: 32px; right: -0.75rem; width: calc(100% - 64px); height: 2px; background: #e8e8e8; z-index: 0; }
.bp-step:last-child::after { display: none; }
.bp-step-number { width: 64px; height: 64px; margin: 0 auto 1rem; background: var(--secondary); border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; color: #fff; position: relative; z-index: 1; }
.bp-step-num { font-size: 1.2rem; font-weight: 800; line-height: 1; }
.bp-step-duration { font-size: 0.55rem; font-weight: 600; opacity: 0.7; text-transform: uppercase; }
.bp-step h4 { font-size: 1rem; font-weight: 700; color: var(--secondary); margin: 0 0 0.35rem; }
.bp-step p { font-size: 0.82rem; color: #6b7280; line-height: 1.5; margin: 0; }

/* ══════════ PLANS PREVIEW ══════════ */
.bp-plans-section { background: var(--sand-light, #faf8f5); }
.bp-plans-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-bottom: 1.5rem; }
.bp-plan-card { background: #fff; border: 1px solid #e8e8e8; border-radius: 12px; padding: 1.75rem 1.25rem; text-align: center; position: relative; transition: all 0.25s; }
.bp-plan-card.popular { border-color: var(--primary); box-shadow: 0 8px 24px rgba(255,107,53,0.12); transform: scale(1.03); }
.bp-plan-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--primary); color: #fff; font-size: 0.68rem; font-weight: 700; padding: 4px 14px; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.5px; }
.bp-plan-name { font-size: 1.1rem; font-weight: 700; color: var(--secondary); margin: 0 0 0.75rem; }
.bp-plan-price { margin-bottom: 1rem; }
.bp-plan-amount { font-size: 2.2rem; font-weight: 800; color: var(--secondary); }
.bp-plan-currency { font-size: 0.82rem; color: #6b7280; margin-left: 0.2rem; }
.bp-plan-custom { font-size: 1.1rem; font-weight: 700; color: var(--secondary); }
.bp-plan-features { list-style: none; padding: 0; margin: 0 0 1.25rem; text-align: left; }
.bp-plan-features li { display: flex; align-items: center; gap: 0.4rem; padding: 0.35rem 0; font-size: 0.82rem; color: #4b5563; }
.bp-plan-features li i { color: #22c55e; font-size: 0.75rem; flex-shrink: 0; }
.bp-plans-more { text-align: center; }
.bp-plans-more a { color: var(--primary); font-weight: 600; font-size: 0.92rem; text-decoration: none; }
.bp-plans-more a:hover { text-decoration: underline; }

/* Plans — toggle, description, taxe */
.bp-billing-toggle { display: flex; align-items: center; justify-content: center; gap: 0.75rem; margin-bottom: 2rem; font-size: 0.92rem; color: #6b7280; }
.bp-billing-toggle .active { color: var(--secondary); font-weight: 600; }
.bp-toggle-switch { position: relative; display: inline-block; width: 48px; height: 26px; cursor: pointer; }
.bp-toggle-switch input { opacity: 0; width: 0; height: 0; }
.bp-toggle-slider { position: absolute; inset: 0; background: #d1d5db; border-radius: 26px; transition: 0.3s; }
.bp-toggle-slider::before { content: ''; position: absolute; width: 20px; height: 20px; left: 3px; bottom: 3px; background: #fff; border-radius: 50%; transition: 0.3s; }
.bp-toggle-switch input:checked + .bp-toggle-slider { background: var(--primary); }
.bp-toggle-switch input:checked + .bp-toggle-slider::before { transform: translateX(22px); }
.bp-discount-badge { background: #dcfce7; color: #16a34a; font-size: 0.72rem; font-weight: 700; padding: 2px 8px; border-radius: 10px; margin-left: 0.25rem; }
.bp-plan-desc { font-size: 0.82rem; color: #6b7280; margin: 0 0 0.75rem; min-height: 2.4em; }
.bp-plan-tax { font-size: 0.72rem; color: #9ca3af; margin: -0.5rem 0 0.75rem; }
.bp-plan-yearly-total { font-size: 0.75rem; color: #6b7280; margin-top: 0.25rem; }

/* ══════════ TÉMOIGNAGES ══════════ */
.bp-testimonials-section { background: #fff; }
.bp-testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.bp-testimonial { background: var(--sand-light, #faf8f5); border-radius: 12px; padding: 2rem 1.5rem; }
.bp-testimonial-stars { color: #f59e0b; font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 0.75rem; }
.bp-testimonial-text { font-size: 0.92rem; color: #374151; line-height: 1.65; font-style: italic; margin: 0 0 1.25rem; }
.bp-testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.bp-testimonial-avatar { width: 40px; height: 40px; background: var(--primary); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; font-weight: 700; flex-shrink: 0; }
.bp-testimonial-name { font-size: 0.88rem; font-weight: 700; color: var(--secondary); }
.bp-testimonial-company { font-size: 0.75rem; color: #6b7280; }

/* ══════════ FAQ ══════════ */
.bp-faq-section { background: var(--sand-light, #faf8f5); }
.bp-faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.6rem; }
.bp-faq-item { background: #fff; border: 1px solid #e8e8e8; border-radius: 8px; overflow: hidden; transition: border-color 0.2s; }
.bp-faq-item.active { border-color: var(--primary); }
.bp-faq-question { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 1rem 1.25rem; background: none; border: none; cursor: pointer; font-size: 0.95rem; font-weight: 600; color: var(--secondary); text-align: left; }
.bp-faq-question i { color: var(--primary); font-size: 0.82rem; flex-shrink: 0; margin-left: 1rem; }
.bp-faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.bp-faq-item.active .bp-faq-answer { max-height: 300px; }
.bp-faq-answer p { padding: 0 1.25rem 1rem; margin: 0; font-size: 0.88rem; color: #6b7280; line-height: 1.65; }

/* ══════════ CTA FINAL ══════════ */
.bp-final-cta { background: var(--gradient-deep, linear-gradient(135deg, #1A365D 0%, #0f2341 100%)); color: #fff; padding: 4rem 2rem; text-align: center; }
.bp-final-cta h2 { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; margin: 0 0 0.75rem; }
.bp-final-cta p { font-size: 1rem; color: rgba(255,255,255,0.7); margin: 0 0 2rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.bp-final-cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ══════════ BP PAIN (4 douleurs metier) ══════════ */
.bp-pain-section { background: var(--sand-light, #faf8f5); }
.bp-pain-intro { max-width: 760px; margin: 0 auto 2.5rem; text-align: center; }
.bp-pain-intro p { font-size: 1.05rem; color: #4b5563; line-height: 1.65; margin: 0; font-style: italic; }
.bp-pain-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.bp-pain-card { background: #fff; border: 1px solid #e8e8e8; border-radius: 12px; padding: 1.5rem 1.25rem; position: relative; transition: all 0.25s; display: flex; flex-direction: column; }
.bp-pain-card:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(0,0,0,0.08); border-color: #ef4444; }
.bp-pain-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: #ef4444; line-height: 1; margin-bottom: 0.5rem; opacity: 0.85; }
.bp-pain-card h3 { font-size: 1rem; font-weight: 700; color: var(--secondary); margin: 0 0 0.5rem; line-height: 1.3; }
.bp-pain-card p { font-size: 0.85rem; color: #6b7280; line-height: 1.55; margin: 0 0 1rem; flex-grow: 1; }
.bp-pain-tag { display: inline-block; padding: 4px 10px; background: #fef2f2; color: #b91c1c; font-size: 0.72rem; font-weight: 700; border-radius: 6px; align-self: flex-start; }

/* ══════════ BP UNIQUENESS (matrice comparative) ══════════ */
.bp-uniqueness-section { background: #fff; }
.bp-uniqueness-wrap { overflow-x: auto; margin-bottom: 1.5rem; border-radius: 12px; border: 1px solid #e8e8e8; }
.bp-uniqueness-table { width: 100%; border-collapse: collapse; font-size: 0.85rem; min-width: 720px; background: #fff; }
.bp-uniqueness-table thead th { background: var(--secondary); color: #fff; padding: 0.85rem 0.75rem; text-align: center; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; white-space: nowrap; }
.bp-uniqueness-table thead th:first-child { text-align: left; }
.bp-uniqueness-table thead th.locaris-col { background: var(--primary); }
.bp-uniqueness-table tbody td { padding: 0.75rem; border-top: 1px solid #f3f4f6; text-align: center; color: #6b7280; vertical-align: middle; }
.bp-uniqueness-table tbody td:first-child { text-align: left; font-weight: 600; color: var(--secondary); }
.bp-uniqueness-table tbody tr:hover { background: #fafafa; }
.bp-uniqueness-mark { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 50%; font-size: 0.85rem; font-weight: 700; }
.bp-uniqueness-mark.full { background: #dcfce7; color: #15803d; }
.bp-uniqueness-mark.partial { background: #fef3c7; color: #a16207; }
.bp-uniqueness-mark.absent { color: #d1d5db; font-size: 1.2rem; font-weight: 400; background: transparent; }
.bp-uniqueness-table td.locaris-cell { background: #fff7ed; }
.bp-uniqueness-recap { display: flex; gap: 1.5rem; align-items: center; justify-content: center; padding: 1.5rem 1rem; background: var(--sand-light, #faf8f5); border-radius: 12px; margin-bottom: 1rem; flex-wrap: wrap; }
.bp-uniqueness-bignum { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 700; color: var(--primary); line-height: 1; }
.bp-uniqueness-recap-label { font-size: 0.95rem; color: var(--secondary); font-weight: 500; max-width: 360px; }
.bp-uniqueness-legend { display: flex; gap: 1.5rem; flex-wrap: wrap; justify-content: center; font-size: 0.8rem; color: #6b7280; }
.bp-uniqueness-legend > div { display: flex; align-items: center; gap: 0.4rem; }
.bp-uniqueness-footer { text-align: center; margin-top: 1rem; font-size: 0.78rem; color: #9ca3af; font-style: italic; }

/* ══════════ BP FLOW (timeline portail -> device) ══════════ */
.bp-flow-section { background: var(--gradient-deep, linear-gradient(135deg, #1A365D 0%, #0f2341 100%)); color: #fff; padding: 4.5rem 0; }
.bp-flow-section .bp-section-title { color: #fff; }
.bp-flow-section .bp-section-subtitle { color: rgba(255,255,255,0.75); max-width: 760px; margin-left: auto; margin-right: auto; }
.bp-flow-timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; margin: 3rem 0 2.5rem; }
.bp-flow-timeline::before { content: ''; position: absolute; top: 28px; left: 12.5%; right: 12.5%; height: 2px; background: linear-gradient(to right, rgba(255,107,53,0.3), var(--primary), rgba(255,107,53,0.3)); z-index: 0; }
.bp-flow-step { text-align: center; padding: 0 1rem; position: relative; z-index: 1; }
.bp-flow-dot { width: 56px; height: 56px; margin: 0 auto 1rem; background: var(--primary); border: 4px solid #0f2341; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 1.05rem; font-family: 'Playfair Display', serif; }
.bp-flow-step.step-final .bp-flow-dot { background: #22c55e; }
.bp-flow-time { font-family: 'Consolas', 'Monaco', monospace; font-size: 0.72rem; color: var(--primary); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.5rem; }
.bp-flow-step.step-final .bp-flow-time { color: #22c55e; }
.bp-flow-step h4 { font-size: 1rem; font-weight: 700; color: #fff; margin: 0 0 0.5rem; }
.bp-flow-step p { font-size: 0.82rem; color: rgba(255,255,255,0.65); line-height: 1.5; margin: 0; }
.bp-flow-callouts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; max-width: 1100px; margin: 0 auto; }
.bp-flow-callout { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; padding: 1.1rem 1.25rem; font-size: 0.85rem; color: rgba(255,255,255,0.85); line-height: 1.55; }
.bp-flow-callout strong { color: var(--primary); font-weight: 700; }

/* ══════════ BP ROI (recettes + temps) ══════════ */
.bp-roi-section { background: var(--sand-light, #faf8f5); }
.bp-roi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; margin-bottom: 2rem; }
.bp-roi-col h3 { font-size: 1.1rem; font-weight: 700; color: var(--secondary); margin: 0 0 1.25rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--primary); }
.bp-roi-revenues { display: flex; flex-direction: column; gap: 1rem; }
.bp-roi-revenue { background: #fff; border: 1px solid #e8e8e8; border-radius: 10px; padding: 1rem 1.25rem; display: flex; gap: 1rem; align-items: flex-start; transition: all 0.2s; }
.bp-roi-revenue:hover { border-color: #22c55e; transform: translateX(3px); }
.bp-roi-revenue-icon { width: 36px; height: 36px; flex-shrink: 0; background: #dcfce7; color: #15803d; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 0.95rem; }
.bp-roi-revenue h4 { font-size: 0.95rem; font-weight: 700; color: var(--secondary); margin: 0 0 0.25rem; }
.bp-roi-revenue p { font-size: 0.82rem; color: #6b7280; line-height: 1.5; margin: 0; }
.bp-roi-times { display: flex; flex-direction: column; gap: 1rem; }
.bp-roi-time { background: #fff; border: 1px solid #e8e8e8; border-radius: 10px; padding: 1.1rem 1.25rem; display: flex; gap: 1rem; align-items: center; }
.bp-roi-time-value { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; color: var(--primary); line-height: 1; min-width: 90px; text-align: center; }
.bp-roi-time-body h4 { font-size: 0.9rem; font-weight: 700; color: var(--secondary); margin: 0 0 0.2rem; }
.bp-roi-time-body p { font-size: 0.8rem; color: #6b7280; line-height: 1.5; margin: 0; }
.bp-roi-footer { background: #fff; border: 1px solid #e8e8e8; border-left: 4px solid var(--primary); border-radius: 10px; padding: 1.25rem 1.5rem; font-size: 0.9rem; color: #4b5563; line-height: 1.65; }
.bp-roi-footer strong { color: var(--secondary); }

/* ══════════ BP RESPONSIVE ══════════ */
@media (max-width: 1024px) {
    .bp-hero-container { grid-template-columns: 1fr; text-align: center; }
    .bp-hero-subtitle { margin-left: auto; margin-right: auto; }
    .bp-hero-cta { justify-content: center; }
    .bp-hero-stats { justify-content: center; }
    .bp-commission-card { max-width: 520px; margin: 0 auto; }
    .bp-pillars { grid-template-columns: 1fr 1fr; }
    .bp-showcase-container { grid-template-columns: 1fr; text-align: center; }
    .bp-showcase-subtitle { margin-left: auto; margin-right: auto; }
    .bp-showcase-cta { justify-content: center; }
    .bp-features-grid { max-width: 500px; margin-left: auto; margin-right: auto; margin-bottom: 2rem; }
    .bp-process { grid-template-columns: 1fr 1fr; }
    .bp-step::after { display: none; }
    .bp-plans-grid { grid-template-columns: 1fr 1fr; }
    .bp-testimonials { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
    .bp-pain-grid { grid-template-columns: 1fr 1fr; }
    .bp-flow-timeline { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .bp-flow-timeline::before { display: none; }
    .bp-flow-callouts { grid-template-columns: 1fr; }
    .bp-roi-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
    .bp-hero { padding: 6rem 1.5rem 3rem; }
    .bp-hero-title { font-size: 2rem; }
    .bp-hero-stats { flex-direction: column; gap: 1rem; }
    .bp-cc-options { grid-template-columns: 1fr; }
    .bp-cc-option.featured { border-right: none; border-bottom: 1px solid #f0f0f0; }
    .bp-pillars { grid-template-columns: 1fr; }
    .bp-showcase { padding: 3rem 1.5rem; }
    .bp-showcase-title { font-size: 1.6rem; }
    .bp-features-grid { grid-template-columns: 1fr; }
    .bp-feature { text-align: left; }
    .bp-device { width: 240px; }
    .bp-savings-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto 2rem; }
    .bp-process { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .bp-plans-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto 1.5rem; }
    .bp-plan-card.popular { transform: none; }
    .bp-section-title { font-size: 1.5rem; }
    .bp-final-cta h2 { font-size: 1.5rem; }
    .bp-pain-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .bp-flow-timeline { grid-template-columns: 1fr; gap: 1.5rem; max-width: 420px; margin: 2rem auto; }
    .bp-flow-section { padding: 3rem 1.5rem; }
    .bp-roi-time-value { font-size: 1.7rem; min-width: 70px; }
    .bp-uniqueness-recap { flex-direction: column; gap: 0.5rem; text-align: center; }
}
