/* ProLocation - Styles principaux */

/* Reset et base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  background-color: var(--bg);
  color: var(--text-100);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
}

/* Variables CSS */
:root {
  /* Colors */
  --primary: #227BFF;
  --primary-foreground: #FFFFFF;
  --accent: #FF6A00;
  
  /* Backgrounds */
  --bg: #FFFFFF;
  --bg-soft: #F5F5F7;
  --bg-soft-orange: #fce2cc;
  --bg-hero: #121416;
  --bg-dark: #000000;
  --bg-orange: #ff6a00;
  --card-bg: #FFFFFF;
  --card-ring: #E5E7EB;
  
  /* Text colors */
  --text-50: #F8FAFC;
  --text-100: #1F2937;
  --text-300: #6B7280;
  --text-500: #9CA3AF;
  --text-700: #374151;
  --text-900: #111827;
  
  /* Status colors */
  --success: #22C55E;
  --warning: #F59E0B;
  --error: #EF4444;
  
  /* Spacing */
  --container-padding: 1rem;
  --container-max-width: 1200px;
  
  /* Border radius */
  --radius-sm: 0.375rem;
  --radius: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 0.875rem;
  --radius-2xl: 1rem;
  --radius-pill: 9999px;
  
  /* Shadows */
  --shadow-card: 0 6px 24px rgba(0,0,0,.25);
  --shadow-header: 0 8px 24px rgba(0,0,0,.35);
  --shadow-ring: 0 0 0 1px rgba(255,255,255,.06) inset;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 600;
  line-height: 1.25;
  color: var(--text-100);
  letter-spacing: -0.025em;
}

h1 { 
  font-size: 2.25rem; 
  font-weight: 700;
  letter-spacing: -0.05em;
}
h2 { 
  font-size: 1.875rem; 
  font-weight: 600;
}
h3 { 
  font-size: 1.5rem; 
  font-weight: 600;
}
h4 { 
  font-size: 1.25rem; 
  font-weight: 500;
}
h5 { 
  font-size: 1.125rem; 
  font-weight: 500;
}
h6 { 
  font-size: 1rem; 
  font-weight: 500;
}

@media (min-width: 768px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.25rem; }
  h3 { font-size: 1.75rem; }
}

p {
  color: var(--text-300);
  margin-bottom: 1rem;
  line-height: 1.6;
  font-size: 1rem;
}

/* Classes utilitaires de typographie */
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }

.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.leading-tight { line-height: 1.25; }
.leading-snug { line-height: 1.375; }
.leading-normal { line-height: 1.5; }
.leading-relaxed { line-height: 1.625; }

.tracking-tight { letter-spacing: -0.025em; }
.tracking-normal { letter-spacing: 0; }
.tracking-wide { letter-spacing: 0.025em; }

/* Links */
a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease;
}

a:hover {
  opacity: 0.8;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-pill);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0.025em;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
  gap: 0.5rem;
}

.btn i {
  font-size: 0.875rem;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-100);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
}

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

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

/* Cards */
.card {
  background-color: var(--card);
  border-radius: var(--radius-2xl);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--card-ring);
  overflow: hidden;
  transition: all 0.3s ease;
}

.date-input, .time-select {
  font-weight:bold;
  font-family: arial;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card-body {
  padding: 1.5rem;
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 500;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--text-100);
  backdrop-filter: blur(8px);
}

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

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

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

/* ===== BARRE D'INFORMATIONS ===== */

.info-bar {
  background: var(--bg-dark);
  color: white;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  display:none;
}

.info-bar-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.info-item i {
  color: var(--primary);
  font-size: 0.875rem;
}

.info-item a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-item a:hover {
  color: var(--primary);
}

.info-item span {
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
  .info-bar-content {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
  
  .info-bar {
    padding: 0.75rem 0;
  }
  
  /* Logo responsive */
  .logo {
    gap: 0.5rem;
  }
  
  .logo img {
    height: 2.5rem;
  }
  
  .location-primary {
    font-size: 0.875rem;
  }
  
  .location-secondary {
    font-size: 0.75rem;
  }
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border-bottom: 25px solid var(--accent);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--text-100);
  text-decoration: none;
}

.logo:hover {
  text-decoration: none;
  color: var(--text-100);
}

.logo img {
  height: 3.5rem;
  width: auto;
}

.logo-location {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.location-primary {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-100);
  margin-top: 5px;
}

.location-secondary {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-300);
}

.nav {
  display: none;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .nav {
    display: flex;
  }
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-pill);
  color: var(--text-100);
  transition: all 0.2s ease;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.025em;
  line-height: 1;
}

.nav-link:hover {
  background-color: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.nav-link.active {
  background-color: var(--primary);
  color: white;
  box-shadow: 0 4px 12px rgba(34, 123, 255, 0.3);
}

.nav-link i {
  font-size: 1rem;
  width: 16px;
  text-align: center;
}

/* Navigation Dropdown */
.nav-dropdown {
  position: relative;
}

.dropdown-arrow {
  font-size: 0.75rem !important;
  width: auto !important;
  margin-left: 0.25rem;
  transition: transform 0.2s ease;
}

.nav-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  min-width: 800px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  margin-top: 0.5rem;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-content {
  padding: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.dropdown-section h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-700);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.dropdown-items {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 12px;
  transition: all 0.2s ease;
  text-decoration: none;
  color: inherit;
}

.dropdown-item:hover {
  background: rgba(34, 123, 255, 0.08);
  transform: translateY(-1px);
}

.dropdown-item img {
  width: 60px;
  height: 40px;
  object-fit: contain;
  border-radius: 8px;
  background: #f8f9fa;
}

/* Menu Idée voyage spécifique */
.travel-ideas-menu {
  min-width: 1000px;
  max-width: 1200px;
  padding: 1.5rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.travel-sections {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  width: 100%;
}

.travel-sections .dropdown-section {
  position: relative;
}

.travel-sections .dropdown-section h4 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  color: var(--text-100);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--bg-soft);
}

.travel-sections .dropdown-section h4 i {
  font-size: 1.1rem;
}

/* Icônes spécifiques par section */
.travel-sections .dropdown-section:nth-child(1) h4 i {
  color: #f59e0b; /* Orange pour parcs */
}

.travel-sections .dropdown-section:nth-child(2) h4 i {
  color: #ec4899; /* Rose pour romantique */
}

.travel-sections .dropdown-section:nth-child(3) h4 i {
  color: #3b82f6; /* Bleu pour catégories */
}

.destination-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

/* Icônes colorées par section */
.dropdown-section:nth-child(1) .destination-icon {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.dropdown-section:nth-child(2) .destination-icon {
  background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
}

.dropdown-section:nth-child(3) .destination-icon {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.destination-icon i {
  color: white;
  font-size: 1.2rem;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-bottom: 0.5rem;
  border: 1px solid transparent;
}

.dropdown-item:hover {
  background: var(--bg-soft);
  transform: translateX(5px);
  border-color: rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.dropdown-item:hover .destination-icon {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.item-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}

.item-name {
  font-weight: 600;
  color: var(--text-100);
  font-size: 0.95rem;
  line-height: 1.3;
}

.item-price {
  font-size: 0.8rem;
  color: var(--text-400);
  font-weight: 500;
}

.item-price-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.promo-badge {
  background: #ef4444;
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.4rem;
  border-radius: 6px;
  line-height: 1;
  white-space: nowrap;
}

.category-item .item-price {
  font-size: 0.75rem;
  opacity: 0.9;
  line-height: 1.4;
}

/* Footer de la popup */
.travel-ideas-menu .dropdown-footer {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--bg-soft);
  text-align: center;
}

.travel-ideas-menu .view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, #1e40af 100%);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.travel-ideas-menu .view-all-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}

/* Mobile dropdown sections */
.mobile-dropdown-section {
  margin-bottom: 1rem;
}

.mobile-section-title {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-300);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
  padding: 0 1rem;
}

@media (max-width: 1024px) {
  .travel-ideas-menu {
    min-width: 800px;
    max-width: 900px;
    padding: 1.25rem;
  }
  
  .travel-sections {
    gap: 1.25rem;
  }
}

@media (max-width: 768px) {
  .travel-ideas-menu {
    min-width: auto;
    max-width: 95vw;
    padding: 1rem;
    border-radius: 16px;
  }
  
  .travel-sections {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .travel-sections .dropdown-section h4 {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
  }
  
  .dropdown-item {
    padding: 0.75rem;
    gap: 0.75rem;
  }
  
  .destination-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }
  
  .destination-icon i {
    font-size: 1rem;
  }
  
  .item-name {
    font-size: 0.9rem;
  }
  
  .item-price {
    font-size: 0.75rem;
  }
  
  .travel-ideas-menu .dropdown-footer {
    margin-top: 1.5rem;
    padding-top: 1rem;
  }
  
  .travel-ideas-menu .view-all-btn {
    padding: 0.6rem 1.25rem;
    font-size: 0.85rem;
    border-radius: 20px;
  }
}



.dropdown-footer {
  grid-column: 1 / -1;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  margin-top: 1rem;
}

.view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--primary);
  color: white;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}

.view-all-btn:hover {
  background: #1e6fd8;
  transform: translateY(-1px);
}

.view-all-btn i {
  font-size: 0.75rem;
}

/* Responsive pour le dropdown */
@media (max-width: 1024px) {
  .dropdown-menu {
    min-width: 600px;
  }
  
  .dropdown-content {
    grid-template-columns: repeat(2, 1fr);
    padding: 1.5rem;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .nav-dropdown {
    display: none; /* Cache le dropdown sur mobile, utilise le menu mobile à la place */
  }
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--bg-hero) 0%, #0F172A 100%);
  background-attachment: scroll;
  padding: 1rem 0;
  text-align: left;
  position: relative;
  overflow: visible;
  color: #FFFFFF;
  transform: none;
  will-change: auto;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(34, 123, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.02"><circle cx="30" cy="30" r="1"/></g></svg>');
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-badge:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.hero-badge .flex {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.customer-avatars {
  margin-left: 1rem;
}

.avatar-group {
  display: flex;
  align-items: center;
}

.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
  margin-left: -8px;
  position: relative;
  transition: all 0.2s ease;
  overflow: hidden;
}

.avatar:first-child {
  margin-left: 0;
}

.avatar:hover {
  transform: translateY(-2px);
  z-index: 10;
}

.avatar i {
  color: white;
  font-size: 0.75rem;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.2s ease;
}

.avatar:hover img {
  transform: scale(1.1);
}

/* Styles de background supprimés car nous utilisons maintenant de vraies images */

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: #FFFFFF;
  line-height: 1.1;
  letter-spacing: -0.02em;
  animation: fadeInUp 0.8s ease 0.4s both;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin-bottom: 3rem;
  line-height: 1.6;
  font-weight: 400;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  animation: fadeInUp 0.8s ease 0.8s both;
}

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
    gap: 1.5rem;
  }
}

.hero-actions .btn {
  font-weight: 600;
  font-size: 1rem;
  padding: 1rem 2rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.hero-actions .btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.hero-actions .btn:hover::before {
  left: 100%;
}

.hero-actions .btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #1e40af 100%);
  box-shadow: 0 8px 25px rgba(34, 123, 255, 0.3);
}

.hero-actions .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(34, 123, 255, 0.4);
}

.hero-actions .btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
}

.hero-actions .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

/* Vehicle Grid */
.vehicle-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .vehicle-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

@media (min-width: 1280px) {
  .vehicle-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Grille spécifique pour les véhicules similaires - toujours 3 colonnes max */
.similar-vehicles-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .similar-vehicles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .similar-vehicles-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Vehicle Grid Modern */
.vehicle-grid-modern {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .vehicle-grid-modern {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .vehicle-grid-modern {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1280px) {
  .vehicle-grid-modern {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Vehicle Card Modern */
.vehicle-card-modern {
  background: #f8f9fa;
  border-radius: var(--radius-2xl);
  padding: 1.5rem;
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
  position: relative;
  overflow: hidden;
}

.vehicle-card-modern:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.vehicle-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.vehicle-category {
  font-size: 1rem;
  font-weight: 600;
  color: #2c3e50;
  text-transform: capitalize;
}

.vehicle-location {
  background: var(--primary);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 500;
}

.vehicle-price-header {
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.price-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #6c757d;
}

.price-amount {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0.25rem;
  color: var(--primary);
}

.price-unit {
  font-size: 0.875rem;
  font-weight: 500;
  color: #6c757d;
}

.vehicle-image-modern {
  margin: 1.5rem 0;
  text-align: center;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vehicle-image-modern img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

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

.vehicle-specs-modern {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #495057;
}

.spec-item i {
  color: var(--primary);
  width: 16px;
  text-align: center;
  font-size: 1rem;
}

.vehicle-action {
  margin-top: auto;
}

.btn-reserve {
  display: block;
  width: 100%;
  background: var(--primary);
  color: white;
  padding: 0.875rem 1.5rem;
  border-radius: var(--radius-pill);
  text-align: center;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}

.btn-reserve:hover {
  background: #1e6fd8;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(34, 123, 255, 0.3);
}

.btn-reserve.btn-disabled {
  background: #6c757d;
  cursor: not-allowed;
  opacity: 0.6;
}

.btn-reserve.btn-disabled:hover {
  transform: none;
  box-shadow: none;
}

#contact-cta {
  border-top: solid 1px #d7d7d7;
}

.vehicle-card {
  position: relative;
}

.vehicle-image {
  position: relative;
  height: 14rem;
  overflow: hidden;
  border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
}

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

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

.vehicle-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-weight:bold;
  color: white;
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
}

.vehicle-info {
  padding: 1rem;
}

.vehicles-selection .vehicle-info {
  padding: 0px;
}

.vehicle-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-100);
  margin-bottom: 0.25rem;
}

.vehicle-specs {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--text-500);
  margin-bottom: 1rem;
}

.vehicle-pricing {
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.vehicle-price {
  color: var(--text-100);
  font-size: 1.25rem;
  font-weight: 700;
}

.vehicle-price-unit {
  font-size: 0.875rem;
  font-weight: 500;
}

.vehicle-km {
  font-size: 0.75rem;
  color: var(--text-500);
}

/* USP Section */
.usp-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .usp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.usp-card {
  text-align: center;
  padding: 1.5rem;
}

.usp-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.usp-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-100);
  margin-bottom: 0.25rem;
}

.usp-description {
  font-size: 0.875rem;
  color: var(--text-500);
}

/* Reviews */
.reviews-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card {
  padding: 1.5rem;
  text-align: center;
}

.review-stars {
  color: var(--warning);
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.review-text {
  font-style: italic;
  color: var(--text-300);
  margin-bottom: 1rem;
}

.review-author {
  font-weight: 600;
  color: var(--text-100);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #0a0a0a 100%);
  padding: 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(34, 123, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 106, 0, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.footer-main {
  padding: 4rem 0 3rem;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 3rem;
  }
}

/* Footer Brand */
.footer-brand {
  max-width: 350px;
}

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-logo img {
  height: 3.5rem;
  filter: brightness(1.1);
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

.footer-brand-payment {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer-brand-payment i {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.25rem;
  transition: all 0.2s ease;
}

.footer-brand-payment i:hover {
  color: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.2rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(34, 123, 255, 0.3);
}

/* Footer Sections */
.footer-section {
  
}

.footer-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
  font-family: 'Inter', sans-serif;
}

.footer-title-icon {
  color: var(--accent);
  font-size: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  line-height: 1.5;
  transition: all 0.2s ease;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  padding: 0.25rem 0;
  border-radius: 4px;
}

.footer-links a:hover {
  color: white;
}

/* Footer Contact */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 106, 0, 0.1);
  border-radius: 8px;
  color: var(--accent);
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'Inter', sans-serif;
}

.contact-value {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.4;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

.contact-value a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-value a:hover {
  color: white;
}

/* Newsletter */
.footer-newsletter {
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.5rem 0;
  position: relative;
  z-index: 1;
}

.newsletter-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-direction: column;
}

@media (min-width: 768px) {
  .newsletter-content {
    flex-direction: row;
  }
}

.newsletter-text {
  flex: 1;
  text-align: center;
}

@media (min-width: 768px) {
  .newsletter-text {
    text-align: left;
  }
}

.newsletter-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
  font-family: 'Inter', sans-serif;
}

.newsletter-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  margin: 0;
}

.newsletter-form {
  flex: 1;
  max-width: 400px;
  width: 100%;
}

.newsletter-input-group {
  display: flex;
  gap: 0.75rem;
  flex-direction: column;
}

@media (min-width: 480px) {
  .newsletter-input-group {
    flex-direction: row;
  }
}

.newsletter-input {
  flex: 1;
  padding: 0.875rem 1.25rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: white;
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(34, 123, 255, 0.1);
}

.newsletter-btn {
  background: linear-gradient(135deg, var(--primary) 0%, #1e40af 100%);
  color: white;
  border: none;
  padding: 0.875rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
}

.newsletter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(34, 123, 255, 0.3);
}


/* Footer Bottom */
.footer-bottom {
  padding: 2rem 0;
  position: relative;
  z-index: 1;
}

.footer-bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-direction: column;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom-content {
    flex-direction: row;
    text-align: left;
  }
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

.footer-credits {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.footer-credits i {
  color: #e74c3c;
  font-size: 0.75rem;
}

/* Responsive pour le footer */
@media (max-width: 768px) {
  .footer-brand-payment i {
    font-size: 1.1rem;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
}

/* Forms */
.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  font-weight: 500;
  color: var(--text-100);
  margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: var(--bg-soft);
  border: 1px solid var(--card-ring);
  border-radius: var(--radius-xl);
  color: var(--text-100);
  font-size: 0.875rem;
  transition: all 0.2s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-500);
}

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

.form-textarea {
  resize: vertical;
  min-height: 6rem;
}

/* Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }

.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }

.hidden { display: none; }

@media (min-width: 768px) {
  .md\\:block { display: block; }
  .md\\:flex { display: flex; }
  .md\\:hidden { display: none; }
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* ===== SKELETON LOADING ===== */

@keyframes skeleton-pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

@keyframes skeleton-wave {
  0% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-wave 2s infinite;
  border-radius: 4px;
}

.skeleton-pulse {
  background: #f0f0f0;
  animation: skeleton-pulse 2s ease-in-out infinite;
  border-radius: 4px;
}

/* Vehicle Card Skeleton */
.vehicle-card-skeleton {
  background: white;
  border-radius: 12px;
  padding: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.vehicle-card-skeleton .skeleton-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-wave 2s infinite;
}

.vehicle-card-skeleton .skeleton-content {
  padding: 1.5rem;
}

.vehicle-card-skeleton .skeleton-title {
  height: 24px;
  width: 70%;
  margin-bottom: 0.5rem;
}

.vehicle-card-skeleton .skeleton-subtitle {
  height: 16px;
  width: 50%;
  margin-bottom: 1rem;
}

.vehicle-card-skeleton .skeleton-features {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.vehicle-card-skeleton .skeleton-feature {
  height: 20px;
  width: 60px;
  border-radius: 12px;
}

.vehicle-card-skeleton .skeleton-price {
  height: 28px;
  width: 120px;
  margin-bottom: 1rem;
}

.vehicle-card-skeleton .skeleton-button {
  height: 44px;
  width: 100%;
  border-radius: 8px;
}

/* Vehicle Result Card Skeleton (for reservation page) */
.vehicle-result-skeleton {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.vehicle-result-skeleton .skeleton-image-small {
  width: 120px;
  height: 80px;
  border-radius: 8px;
  flex-shrink: 0;
}

.vehicle-result-skeleton .skeleton-info {
  flex: 1;
}

.vehicle-result-skeleton .skeleton-name {
  height: 20px;
  width: 60%;
  margin-bottom: 0.5rem;
}

.vehicle-result-skeleton .skeleton-specs {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.vehicle-result-skeleton .skeleton-spec {
  height: 16px;
  width: 80px;
}

.vehicle-result-skeleton .skeleton-price-section {
  text-align: right;
  flex-shrink: 0;
}

.vehicle-result-skeleton .skeleton-price-large {
  height: 24px;
  width: 100px;
  margin-bottom: 0.5rem;
}

.vehicle-result-skeleton .skeleton-price-small {
  height: 16px;
  width: 80px;
  margin-bottom: 1rem;
}

.vehicle-result-skeleton .skeleton-select-btn {
  height: 40px;
  width: 120px;
  border-radius: 6px;
}

/* Loading container */
.vehicles-loading {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.vehicles-results-loading {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}

/* Hide real content while loading */
.loading .vehicles-grid,
.loading .vehicles-results {
  display: none;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .vehicle-result-skeleton {
    flex-direction: column;
    text-align: center;
  }
  
  .vehicle-result-skeleton .skeleton-image-small {
    width: 100%;
    height: 120px;
  }
  
  .vehicle-result-skeleton .skeleton-price-section {
    text-align: center;
    width: 100%;
  }
}

/* ===== NEW FILTERS SYSTEM ===== */

/* Desktop Filters */
.filters-desktop {
  margin-bottom: 2rem;
}

.filters-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.filter-dropdown {
  position: relative;
}

.filter-dropdown .filter-select {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.875rem;
  color: #374151;
  min-width: 200px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-dropdown .filter-select:hover {
  border-color: var(--primary);
}

.filter-dropdown .filter-select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Mobile Filters Trigger */
.filters-mobile-trigger {
  display: none;
  margin-bottom: 1.5rem;
}

.mobile-filters-btn {
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  justify-content: center;
  transition: all 0.2s ease;
}

.mobile-filters-btn:hover {
  background: var(--primary-dark);
}

/* Mobile Filters Popup */
.mobile-filters-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-filters-popup.active {
  opacity: 1;
  visibility: visible;
}

.mobile-filters-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: white;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.mobile-filters-popup.active .mobile-filters-content {
  transform: translateX(0);
}

.mobile-filters-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid #e5e7eb;
  background: white;
}

.mobile-filters-back {
  background: none;
  border: none;
  font-size: 1.25rem;
  color: #374151;
  cursor: pointer;
  padding: 0.5rem;
  margin-left: -0.5rem;
}

.mobile-filters-header h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  margin: 0;
}

.mobile-filters-clear {
  background: none;
  border: none;
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-filters-body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
}

.mobile-filter-section {
  margin-bottom: 2rem;
}

.mobile-filter-section h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  margin: 0 0 1rem 0;
}

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

.mobile-filter-option {
  display: flex;
  align-items: center;
  padding: 1rem;
  background: #f9fafb;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.mobile-filter-option.active {
  background: #eff6ff;
  border: 1px solid var(--primary);
}

.mobile-filter-option input[type="radio"] {
  display: none;
}

.mobile-filter-option span {
  font-size: 0.875rem;
  color: #374151;
  font-weight: 500;
}

.mobile-filter-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.mobile-filter-grid.four-cols {
  grid-template-columns: repeat(4, 1fr);
}

.mobile-filter-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  min-height: 80px;
}

.mobile-filter-card.active {
  background: #eff6ff;
  border-color: var(--primary);
}

.mobile-filter-card input[type="radio"] {
  display: none;
}

.filter-card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.filter-card-content i {
  font-size: 1.25rem;
  color: #6b7280;
}

.mobile-filter-card.active .filter-card-content i {
  color: var(--primary);
}

.filter-card-content span {
  font-size: 0.875rem;
  color: #374151;
  font-weight: 500;
  text-align: center;
}

.mobile-filters-footer {
  padding: 1rem;
  border-top: 1px solid #e5e7eb;
  background: white;
}

.mobile-filters-apply {
  background: #ea580c;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: all 0.2s ease;
}

.mobile-filters-apply:hover {
  background: #dc2626;
}

/* Responsive */
@media (max-width: 768px) {
  .filters-desktop {
    display: none;
  }
  
  .filters-mobile-trigger {
    display: block;
  }
  
  .vehicles-content {
    margin-top: 0;
  }
}

@media (min-width: 769px) {
  .filters-mobile-trigger {
    display: none;
  }
}

/* ===== BREADCRUMB ===== */

.breadcrumb-section {
  background-color: var(--bg);
  border-bottom: 1px solid var(--card-ring);
  padding: 1rem 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.breadcrumb a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.breadcrumb-separator {
  color: var(--text-300);
  font-weight: 400;
}

.breadcrumb-current {
  color: var(--text-200);
  font-weight: 500;
}

/* ===== NEW VEHICLE CARDS DESIGN ===== */

.vehicles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.vehicle-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.vehicle-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.vehicle-image {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

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

.vehicle-image[onclick]:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Badge prix en haut à droite */
.price-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #10b981;
  color: white;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  min-width: 120px;
  text-align: center;
}

.price-old {
  font-size: 0.75rem;
  text-decoration: line-through;
  opacity: 0.8;
  white-space: nowrap;
}

.price-current {
  font-size: 0.875rem;
  font-weight: 700;
  white-space: nowrap;
}

/* Badge promotion en haut à gauche - couleur orange comme le logo */
.price-promo {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, #ff9800, #ff6d00);
  color: white;
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(255, 152, 0, 0.25);
  z-index: 2;
}

.price-promo::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 18px;
  z-index: -1;
  opacity: 0.5;
}

/* Styles pour les prix avec promotion */
.promotional-pricing {
  position: relative;
}

.promotional-pricing .price-badge {
  background: linear-gradient(135deg, #10b981, #059669);
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.promotional-pricing .price-old {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: line-through;
  font-size: 0.9rem;
}

.promotional-pricing .price-current {
  color: white;
  font-weight: 800;
  font-size: 0.9rem;
}

/* Animation pour les badges de promotion */
.price-promo {

}

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

/* Styles pour les prix dans les listes de véhicules */
.vehicle-price-container {
  position: relative;
  display: inline-block;
}

.vehicle-price-original {
  font-size: 0.875rem;
  color: #6b7280;
  text-decoration: line-through;
  margin-right: 0.5rem;
}

.vehicle-price-promo {
  font-size: 1.125rem;
  font-weight: 700;
  color: #10b981;
}

.vehicle-promo-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-left: 0;
  vertical-align: middle;
}

/* Contenu de la carte */
.vehicle-content {
  padding: 1.5rem;
}

.vehicle-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 1rem 0;
  line-height: 1.3;
}

/* Spécifications */
.vehicle-specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.spec-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #6b7280;
}

.spec-item span {
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 1.2;
}

.spec-item i {
  font-size: 1.25rem;
  color: #3b82f6;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Bouton de réservation */
.vehicle-footer {
  margin-top: auto;
}

.btn-reserve {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  background: #3b82f6;
  color: white;
  border: none;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn-reserve:hover {
  background: #2563eb;
  transform: translateY(-1px);
  color: white;
  text-decoration: none;
}

.btn-reserve.btn-disabled {
  background: #9ca3af;
  cursor: not-allowed;
  transform: none;
}

.btn-reserve.btn-disabled:hover {
  background: #9ca3af;
  transform: none;
}

.btn-reserve i {
  font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 768px) {
  .vehicles-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .vehicle-image {
    height: auto;
  }
  
  .vehicle-content {
    padding: 1rem;
  }
  
  .vehicle-name {
    font-size: 1.125rem;
  }
  
  .vehicle-specs {
    gap: 0.5rem;
  }
  
  .spec-item {
    gap: 0.25rem;
  }
  
  .spec-item span {
    font-size: 0.7rem;
  }
  
  .spec-item i {
    font-size: 1rem;
    width: 16px;
    height: 16px;
  }
  
  .price-badge {
    min-width: 100px;
    padding: 6px 10px;
  }
  
  .price-old {
    font-size: 0.7rem;
  }
  
  .price-current {
    font-size: 0.8rem;
  }
}

/* ===== FILTRES DESKTOP BLOCS HORIZONTAUX ===== */

.filters-desktop-blocks {
  display: flex;
  gap: 4rem;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  width: 100%;
  max-width: 100%;
}

.filter-block {
  display: block;
  align-items: center;
  gap: 1rem;
  flex: 0 0 auto;
  min-width: 0;
  float:right;
}

.filter-block::after {
  content: '';
  position: absolute;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 30px;
  background: linear-gradient(to bottom, transparent, #e5e7eb, transparent);
}

.filter-block:last-child::after {
  display: none;
}

.filter-label {
  font-weight: 600;
  color: var(--text-100);
  font-size: 1rem;
  white-space: nowrap;
  position: relative;
  margin-right: 0.5rem;
  flex-shrink: 0;
}

.filter-label::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: linear-gradient(90deg, var(--primary), transparent);
  border-radius: 1px;
}

.filter-options {
  display: flex;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.8);
  padding: 0.5rem;
  border-radius: 12px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
  flex: 0 0 auto;
  min-width: 0;
}

.filter-option {
  padding: 0.625rem 1rem;
  border: 2px solid transparent;
  background: white;
  color: #6b7280;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  min-width: 60px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  line-height: 1.2;
  flex: 0 0 auto;
}

.filter-option::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s ease;
}

.filter-option:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(59, 130, 246, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.15);
}

.filter-option:hover::before {
  left: 100%;
}

.filter-option.active {
  border-color: var(--primary);
  background: linear-gradient(135deg, var(--primary), #2563eb);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.filter-option.active:hover {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.35);
}

.filter-option.active::after {
  content: '✓';
  position: absolute;
  top: -2px;
  right: -2px;
  width: 16px;
  height: 16px;
  background: #10b981;
  color: white;
  border-radius: 50%;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* Masquer les filtres blocs sur mobile */
@media (max-width: 768px) {
  .filters-desktop-blocks {
    display: none;
  }
}

/* ===== EN-TÊTE RÉSULTATS AMÉLIORÉ ===== */

.results-header-enhanced {
  margin-bottom: 0;
  border-bottom: 1px solid rgba(59, 130, 246, 0.08);
}

.results-count-animated {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.count-number {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  animation: countUp 0.6s ease-out;
}

.count-value {
  font-weight: 800;
  color: var(--primary);
  background: linear-gradient(135deg, var(--primary), #2563eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.count-text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-100);
}

.active-filters {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.filter-intro {
  font-size: 0.8rem;
  color: var(--text-300);
  font-weight: 500;
  white-space: nowrap;
}

.active-filter-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  background: linear-gradient(135deg, var(--primary), #2563eb);
  color: white;
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 600;
  box-shadow: 0 1px 4px rgba(59, 130, 246, 0.15);
  animation: slideInFromLeft 0.3s ease-out;
  white-space: nowrap;
}

.clear-filters-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  background: #ef4444;
  color: white;
  border: none;
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 1px 4px rgba(239, 68, 68, 0.15);
  white-space: nowrap;
}

.clear-filters-btn:hover {
  background: #dc2626;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

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

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

/* Responsive pour l'en-tête des résultats */
@media (max-width: 768px) {
  .results-count-animated {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .count-value {
    font-size: 1.75rem;
  }
  
  .count-text {
    font-size: 0.9rem;
  }
  
  .active-filters {
    align-self: stretch;
    justify-content: flex-start;
  }
  
  .filter-intro {
    font-size: 0.75rem;
  }
  
  .active-filter-tag {
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
  }
  
  .clear-filters-btn {
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
  }
}

/* ===== ASSISTANCE DROPDOWN MENU ===== */

.assistance-dropdown {
  min-width: 600px;
  max-width: 700px;
}

.assistance-categories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  padding: 1rem;
}

.assistance-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.875rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(59, 130, 246, 0.1);
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
  min-height: 80px;
}

.assistance-item:hover {
  background: rgba(59, 130, 246, 0.05);
  border-color: rgba(59, 130, 246, 0.2);
  transform: translateY(-1px);
  text-decoration: none;
  color: inherit;
}

.assistance-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  border-radius: 10px;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.assistance-content h4 {
  margin: 0 0 0.25rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: #1f2937;
}

.assistance-content p {
  margin: 0;
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.4;
}


/* Responsive pour le menu assistance */
@media (max-width: 768px) {
  .assistance-dropdown {
    min-width: 300px;
    max-width: 350px;
  }
  
  .assistance-item {
    padding: 0.75rem;
    gap: 0.75rem;
  }
  
  .assistance-icon {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
  
  .assistance-content h4 {
    font-size: 0.9rem;
  }
  
  .assistance-content p {
    font-size: 0.8rem;
  }
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out;
}

/* ===== PAGE DÉTAIL VÉHICULE ===== */

.vehicle-detail-header {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  margin-bottom: 3rem;
}

.vehicle-detail-image {
  flex: 0 0 auto;
  margin: 0px auto;
  border: solid 1px var(--card-ring);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--card);
  box-shadow: var(--shadow-lg);
}

.vehicle-detail-image img {
  width: 230px;
  height: auto;
}

.vehicle-detail-info {
  flex: 1;
}

.vehicle-detail-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-100);
  line-height: 1.1;
}

.vehicle-detail-description {
  color: var(--text-400);
  font-size: 1.125rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.vehicle-detail-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.vehicle-detail-spec {
  background-color: var(--card);
  border: 1px solid var(--card-ring);
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

/* Responsive pour la page détail véhicule */
@media (max-width: 768px) {
  .vehicle-detail-header {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  
  .vehicle-detail-image img {
    width: 100%;
    max-width: 350px;
  }
  
  .vehicle-detail-title {
    font-size: 2rem;
  }
  
  .vehicle-detail-description {
    font-size: 1rem;
  }
  
  .vehicle-detail-specs {
    justify-content: center;
  }
}

/* ===== NOUVEAU SYSTÈME DE RECHERCHE ===== */

.search-row {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  width: 100%;
}

.search-field {
  flex: 1;
  min-width: 0; /* Permet la réduction des champs */
}

.search-input-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  min-height: 50px;
  width: 100%;
  box-sizing: border-box;
}

.search-input-wrapper:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
}

.search-input-wrapper.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: #f9fafb;
}

.search-input-wrapper.disabled:hover {
  border-color: #e5e7eb;
  box-shadow: none;
}

.search-input-wrapper i:first-child {
  color: var(--primary);
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

.search-input-wrapper input {
  flex: 1;
  border: none;
  background: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-100);
  outline: none;
  min-width: 0;
  width: 100%;
}

.search-input-wrapper input::placeholder {
  color: #9ca3af;
  font-weight: 400;
}

.search-input-wrapper i:last-child {
  color: #9ca3af;
  font-size: 0.875rem;
}

.search-input-wrapper.disabled input {
  color: #9ca3af;
}

/* Responsive pour les nouveaux champs de recherche */
@media (max-width: 768px) {
  .search-row {
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
  }
  
  .search-field {
    width: 100%;
  }
  
  .search-input-wrapper {
    padding: 0.75rem;
    min-height: 48px;
    gap: 0.5rem;
  }
  
  .search-input-wrapper input {
    font-size: 0.875rem;
  }
  
  .search-input-wrapper i:first-child {
    font-size: 1rem;
    width: 18px;
  }
}

/* ===== MODALS POUR LES PICKERS ===== */

.search-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.search-modal.active {
  opacity: 1;
  visibility: visible;
}

.search-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.search-modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  max-width: 90vw;
  max-height: 90vh;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.search-modal.active .search-modal-content {
  transform: translate(-50%, -50%) scale(1);
}

.search-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}

.search-modal-header h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-100);
}

.search-modal-close {
  background: none;
  border: none;
  font-size: 1.25rem;
  color: #6b7280;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.search-modal-close:hover {
  background: #f3f4f6;
  color: var(--text-100);
}

.search-modal-body {
  padding: 0;
  max-height: 70vh;
  overflow-y: auto;
}

/* ===== CALENDRIER ===== */

.calendar-container {
  min-width: 320px;
  padding: 1.5rem;
}

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

.calendar-nav {
  background: none;
  border: none;
  padding: 0.5rem;
  border-radius: 8px;
  cursor: pointer;
  color: var(--primary);
  transition: all 0.2s ease;
}

.calendar-nav:hover {
  background: rgba(59, 130, 246, 0.1);
}

.calendar-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-100);
}

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

.calendar-weekday {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  color: #6b7280;
  padding: 0.5rem;
}

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

.calendar-day {
  aspect-ratio: 1;
  border: none;
  background: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
}

.calendar-day.current-month {
  color: var(--text-100);
}

.calendar-day.other-month {
  color: #d1d5db;
}

.calendar-day:hover:not(.disabled) {
  background: rgba(59, 130, 246, 0.1);
  color: var(--primary);
}

.calendar-day.disabled {
  color: #d1d5db;
  cursor: not-allowed;
}

.calendar-day.selected-start,
.calendar-day.selected-end {
  background: var(--primary);
  color: white;
}

/* ===== TIME PICKER ===== */

.time-picker {
  min-width: 300px;
  padding: 1rem;
}

.time-selector {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.time-column {
  flex: 1;
}

.time-column h4 {
  margin: 0 0 1rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-100);
  text-align: center;
}

.time-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  max-height: 200px;
  overflow-y: auto;
}

.time-option {
  padding: 0.75rem;
  border: 2px solid #e5e7eb;
  background: white;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-100);
  transition: all 0.2s ease;
}

.time-option:hover {
  border-color: var(--primary);
  background: rgba(59, 130, 246, 0.05);
}

.time-option.selected {
  border-color: var(--primary);
  background: var(--primary);
  color: white;
}

.selected-time {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 12px;
}

.time-confirm {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 600;
}

.time-confirm:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Responsive pour les modals */
@media (max-width: 768px) {
  .search-modal-content {
    max-width: 95vw;
    max-height: 95vh;
  }
  
  .search-modal-header,
  .search-modal-body {
    padding: 1rem;
  }
  
  .time-selector {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .calendar-container {
    min-width: auto;
  }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--text-100);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all 0.2s ease;
}

.mobile-menu-toggle:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.mobile-menu-toggle i {
  font-size: 1.125rem;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(18, 20, 22, 0.95);
  backdrop-filter: blur(12px);
  z-index: 100;
  padding: 2rem;
}

.mobile-menu.active {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.mobile-menu-close {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--text-100);
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
  width: 100%;
  max-width: 300px;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 1.125rem;
  color: var(--text-100);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-pill);
  transition: all 0.2s ease;
  font-weight: 500;
}

.mobile-nav a:hover {
  background-color: rgba(255, 255, 255, 0.08);
}

.mobile-nav a.active {
  background-color: var(--primary);
  color: white;
}

.mobile-nav a i {
  font-size: 1.25rem;
  width: 20px;
  text-align: center;
}

/* Notifications */
.notification {
  position: fixed;
  top: 2rem;
  right: 2rem;
  z-index: 1000;
  max-width: 400px;
  background-color: var(--card);
  border: 1px solid var(--card-ring);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.3s ease-out;
  background:white;
}

.notification.show {
  opacity: 1;
  transform: translateX(0);
}

.notification-content {
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.notification-message {
  color: var(--text-100);
  font-size: 0.875rem;
  flex: 1;
}

.notification-close {
  background: none;
  border: none;
  color: var(--text-500);
  cursor: pointer;
  padding: 0.25rem;
  border-radius: var(--radius);
  transition: all 0.2s ease;
}

.notification-close:hover {
  color: var(--text-100);
  background-color: rgba(255, 255, 255, 0.05);
}

.notification-success {
  border-left: 4px solid var(--success);
}

.notification-error {
  border-left: 4px solid var(--error);
}

.notification-warning {
  border-left: 4px solid var(--warning);
}

.notification-info {
  border-left: 4px solid var(--primary);
}



/* Loading States */
.loading {
  opacity: 0.6;
  pointer-events: none;
  position: relative;
}

.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid var(--primary);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Star Animation */
.star-animate {
  display: inline-block;
  animation: starGlow 2s ease-in-out infinite;
}

@keyframes starGlow {
  0%, 100% { 
    opacity: 0.8;
    transform: scale(1);
  }
  50% { 
    opacity: 1;
    transform: scale(1.1);
    text-shadow: 0 0 10px currentColor;
  }
}

/* Scroll Animations */
@keyframes slideInUp {
  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);
  }
}

.animate-slide-up {
  animation: slideInUp 0.6s ease-out;
}

.animate-slide-left {
  animation: slideInLeft 0.6s ease-out;
}

.animate-slide-right {
  animation: slideInRight 0.6s ease-out;
}

/* Image Gallery */
.image-gallery .thumbnail.active {
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 2px rgba(34, 123, 255, 0.2);
}

/* Price Display */
.price-breakdown {
  background-color: var(--bg-soft);
  border-radius: var(--radius-lg);
  padding: 1rem;
  border: 1px solid var(--card-ring);
}

.price-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--card-ring);
}

.price-line:last-child {
  border-bottom: none;
  font-weight: 600;
  font-size: 1.125rem;
  padding-top: 0.75rem;
  margin-top: 0.25rem;
}

/* Filters */
.filters-form {
  background-color: var(--card);
  border-radius: var(--radius-2xl);
  padding:0px;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-500);
}

.breadcrumb a {
  color: var(--text-500);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb a:hover {
  color: var(--text-300);
}

.breadcrumb-separator {
  color: var(--text-700);
}

/* Alert Messages */
.alert {
  padding: 1rem 1.5rem;
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.alert-success {
  background-color: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  color: var(--success);
}

.alert-error {
  background-color: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: var(--error);
}

.alert-warning {
  background-color: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.2);
  color: var(--warning);
}

.alert-info {
  background-color: rgba(34, 123, 255, 0.1);
  border: 1px solid rgba(34, 123, 255, 0.2);
  color: var(--primary);
}

/* Responsive */
@media (max-width: 767px) {
  .container {
    padding: 0 1rem;
  }
  
  .hero {
    padding: 3rem 0 4rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .vehicle-grid {
    gap: 1rem;
  }
  
  .usp-grid {
    gap: 1rem;
  }
  
  .reviews-grid {
    gap: 1rem;
  }
  
  .notification {
    top: 1rem;
    right: 1rem;
    left: 1rem;
    max-width: none;
  }
  
  
  .filters-form {
    padding: 1rem;
  }
  
  .filters-form > div {
    grid-template-columns: 1fr !important;
  }
}

/* ===== MENU MOBILE MODERNE ===== */

/* Bouton hamburger moderne */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
  background-color: var(--bg-soft);
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background-color: var(--text-100);
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Overlay */
.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Menu mobile moderne */
.mobile-menu-modern {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background: var(--bg);
  z-index: 999;
  transition: right 0.3s ease;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.mobile-menu-modern.active {
  right: 0;
}

/* Header du menu mobile */
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--card-ring);
  background: var(--bg-soft);
}

.mobile-logo img {
  height: 32px;
}

.mobile-menu-close {
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-300);
  transition: all 0.2s ease;
}

.mobile-menu-close:hover {
  background-color: var(--card-ring);
  color: var(--text-100);
}

/* Navigation mobile */
.mobile-nav-modern {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 0;
}

.mobile-nav-section {
  padding: 0 1rem;
}

/* Items de navigation */
.mobile-nav-item {
  display: flex;
  align-items: center;
  padding: 1rem;
  margin: 0.25rem 0;
  border-radius: 12px;
  text-decoration: none;
  color: var(--text-100);
  transition: all 0.2s ease;
  position: relative;
}

.mobile-nav-item:hover {
  background-color: var(--bg-soft);
  transform: translateX(4px);
}

.mobile-nav-item.active {
  background-color: var(--primary);
  color: white;
}

.mobile-nav-item.active .nav-item-icon,
.mobile-nav-item.active .nav-item-desc,
.mobile-nav-item.active .nav-item-arrow {
  color: black;
}

/* Icône de navigation */
.nav-item-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background-color: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  color: var(--primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.mobile-nav-item.active .nav-item-icon {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
}

/* Contenu de navigation */
.nav-item-content {
  flex: 1;
}

.nav-item-title {
  display: block;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.2;
}

.nav-item-desc {
  display: block;
  font-size: 0.875rem;
  color: var(--text-300);
  margin-top: 2px;
}

.nav-item-arrow {
  color: var(--text-300);
  font-size: 0.875rem;
  margin-left: 0.5rem;
}

/* Dropdown mobile */
.mobile-dropdown-item .nav-item-main {
  display: flex;
  align-items: center;
  padding: 1rem;
  margin: 0.25rem 0;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.mobile-dropdown-item .nav-item-main:hover {
  background-color: var(--bg-soft);
  transform: translateX(4px);
}

.nav-dropdown-arrow {
  transition: transform 0.3s ease;
}

.mobile-dropdown-item.active .nav-dropdown-arrow {
  transform: rotate(180deg);
}

.mobile-dropdown-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  margin-left: 1rem;
}

.mobile-dropdown-item.active .mobile-dropdown-content {
  max-height: 300px;
}

.mobile-dropdown-link {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  margin: 0.25rem 0;
  border-radius: 8px;
  text-decoration: none;
  color: var(--text-100);
  transition: all 0.2s ease;
  font-size: 0.9rem;
}

.mobile-dropdown-link:hover {
  background-color: var(--bg-soft);
  color: var(--primary);
}

.mobile-dropdown-link i {
  width: 20px;
  margin-right: 0.75rem;
  color: var(--text-300);
  font-size: 0.875rem;
}

.mobile-dropdown-link:hover i {
  color: var(--primary);
}

/* Section CTA */
.mobile-cta-section {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--card-ring);
  border-bottom: 1px solid var(--card-ring);
  margin: 1rem 0;
}

.mobile-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.3);
}

.mobile-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(var(--primary-rgb), 0.4);
}

.mobile-cta-btn i {
  margin-right: 0.5rem;
  font-size: 1.1rem;
}


/* ===== BARRE DE CONFIANCE ===== */

.trust-bar {
  background: linear-gradient(135deg, #ff6b00 0%, #eea672 100%);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}


@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.trust-bar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.trust-partner-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  font-weight: 500;
}

.trust-axa-logo {
  background: #00008f;
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.trust-advantages {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.trust-advantage {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
}

.trust-icon {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.trust-text {
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
}

.trust-phone {
  text-decoration: none;
  transition: all 0.3s ease;
  color: white;
}

.trust-phone:hover {
  color: var(--warning);
  transform: scale(1.05);
}

.trust-payment-methods {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: 1rem;
}

.trust-payment-icon {
  color: white;
  font-size: 1.5rem;
  opacity: 0.9;
  transition: all 0.2s ease;
}

.trust-payment-icon:hover {
  opacity: 1;
  transform: translateY(-1px);
}

/* Responsive pour la barre de confiance */
@media (max-width: 768px) {
  .trust-bar {
    padding: 0.75rem 0;
    position: relative;
    overflow: hidden;
  }
  
  .trust-bar-content {
    position: relative;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Masquer tous les éléments par défaut sur mobile */
  .trust-partner,
  .trust-advantage,
  .trust-payment-methods {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  /* Masquer le conteneur trust-advantages sur mobile */
  .trust-advantages {
    display: none;
  }
  
  /* Classe pour l'élément actif */
  .trust-partner.active,
  .trust-advantage.active,
  .trust-payment-methods.active {
    opacity: 1;
  }
  
  .trust-partner img {
    height: 28px;
    width: auto;
  }
  
  .trust-advantages {
    gap: 1rem;
    flex-wrap: wrap;
  }
  
  .trust-advantage {
    font-size: 0.85rem;
    padding: 0.25rem 0.5rem;
    white-space: nowrap;
  }
  
  .trust-advantage i {
    font-size: 0.8rem;
    margin-right: 0.3rem;
  }
}


@media (max-width: 480px) {
  .trust-advantages {
    gap: 1rem;
  }
  
  .trust-advantage {
    min-width: 80px;
  }
}

/* ===== VEHICLES PAGE LAYOUT ===== */
.vehicles-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 3rem;
  align-items: start;
}

/* Sidebar des filtres */
.vehicles-sidebar {
  position: relative;
}

.sidebar-sticky {
  position: sticky;
  top: 2rem;
  background: white;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--card-ring);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid var(--card-ring);
  background: var(--bg-soft);
}

.sidebar-header h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-100);
  margin: 0;
}

.reset-filters {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-500);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.reset-filters:hover {
  color: var(--primary);
}

.filter-group {
  margin-bottom: 1.5rem;
}

.filter-group:last-child {
  margin-bottom: 0;
}

.filter-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--text-100);
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.filter-label i {
  color: var(--primary);
  font-size: 0.875rem;
}

.filter-select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--card-ring);
  border-radius: var(--radius-lg);
  background: white;
  color: var(--text-100);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.filter-select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}

.sidebar-info {
  padding: 1.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, #1e40af 100%);
  color: white;
  text-align: center;
}

.sidebar-info h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: white;
}

.sidebar-info p {
  font-size: 0.875rem;
  opacity: 0.9;
  margin-bottom: 1rem;
  line-height: 1.5;
  color: white;
}

.sidebar-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: white;
  color: var(--primary);
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.sidebar-contact-btn:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-1px);
}

/* Contenu principal */
.vehicles-main {
  min-width: 0;
}

.results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--card-ring);
}

.results-count h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-100);
  margin-bottom: 0.25rem;
}

.results-count p {
  color: var(--text-500);
  font-size: 0.9rem;
  margin: 0;
}

.mobile-filters-btn {
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: var(--radius-lg);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-filters-btn:hover {
  background: #1e40af;
}

/* Grille des véhicules */
.vehicles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.vehicles-grid .vehicle-card {
  background: white;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--card-ring);
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.vehicles-grid .vehicle-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.vehicles-grid .vehicle-image {
  position: relative;
  height: auto;
  overflow: hidden;
}

.vehicles-grid .vehicle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.vehicles-grid .vehicle-card:hover .vehicle-image img {
  transform: scale(1.05);
}

.vehicles-grid .vehicle-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--warning);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.availability-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  padding: 0.5rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

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

.availability-badge.unavailable {
  background: var(--error);
  color: white;
}

.vehicles-grid .vehicle-content {
  padding: 1rem;
}

.vehicles-grid .vehicle-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.vehicles-grid .vehicle-name,
.vehicle-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-100);
  color: black;
  position: absolute;
  margin-top: -75px !important;
  padding: 7px;
  border-radius: 10px;
  background:white;
  margin: 0;
}

.vehicle-category {
  background: var(--bg-soft);
  color: var(--text-500);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.vehicles-grid .vehicle-specs,
.vehicle-specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.vehicles-grid .spec-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-300);
}

.vehicles-grid .spec-item span {
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 1.2;
}

.vehicles-grid .spec-item i {
  color: var(--primary);
  font-size: 1.25rem;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vehicles-grid .vehicle-footer,
.vehicle-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--card-ring);
}

.vehicles-grid .vehicle-pricing {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  width: 100%; /* Prendre toute la largeur */
  justify-content: space-between;
}

.price-label {
  font-size: 0.875rem;
  color: var(--text-500);
}

.vehicles-grid .vehicle-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}

.price-unit {
  font-size: 0.875rem;
  color: var(--text-500);
}

.vehicle-actions {
  display: flex;
  gap: 0.5rem;
}

.btn-disabled {
  background: var(--text-700) !important;
  color: var(--text-500) !important;
  cursor: not-allowed !important;
}

/* Aucun résultat */
.no-results {
  text-align: center;
  padding: 4rem 2rem;
}

.no-results-icon {
  font-size: 4rem;
  color: var(--text-500);
  margin-bottom: 1.5rem;
}

.no-results h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-100);
  margin-bottom: 1rem;
}

.no-results p {
  color: var(--text-500);
  margin-bottom: 2rem;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive */
@media (max-width: 1024px) {
  .vehicles-layout {
    grid-template-columns: 280px 1fr;
    gap: 2rem;
  }
  
  .vehicles-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .vehicles-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .vehicles-sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: white;
    z-index: 1000;
    transition: left 0.3s ease;
    overflow-y: auto;
  }
  
  .vehicles-sidebar.mobile-open {
    left: 0;
  }
  
  .sidebar-sticky {
    position: static;
    height: 100vh;
    border-radius: 0;
    box-shadow: none;
  }
  
  .mobile-filters-btn {
    display: flex;
  }
  
  .results-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .vehicles-grid {
    grid-template-columns: 1fr;
  }
  
  .vehicles-grid .vehicle-specs {
    gap: 0.5rem;
  }
  
  .vehicles-grid .spec-item {
    gap: 0.25rem;
  }
  
  .vehicles-grid .spec-item span {
    font-size: 0.7rem;
  }
  
  .vehicles-grid .spec-item i {
    font-size: 1rem;
    width: 16px;
    height: 16px;
  }
  
  .vehicles-grid .vehicle-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
  
  .vehicle-actions {
    justify-content: space-between;
  }
}

/* ===== RESERVATION HEADER & FOOTER ===== */
.reservation-header {
  background: white;
  border-bottom: 1px solid var(--card-ring);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.reservation-header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.reservation-header .logo img {
  height: 55px;
}

.reservation-progress {
  flex: 1;
  display: flex;
  justify-content: center;
}

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

.header-step {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.5rem;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  position: relative;
}

.header-step:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -0.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0.375rem;
  height: 1px;
  background: var(--card-ring);
}

.header-step.active {
  background: rgba(var(--primary-rgb), 0.1);
  color: var(--primary);
}

.header-step.completed {
  background: rgba(var(--success-rgb), 0.1);
  color: var(--success);
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  background: var(--card-ring);
  color: var(--text-400);
  transition: all 0.3s ease;
}

.header-step.active .step-number {
  background: var(--primary);
  color: white;
}

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

.step-name {
  font-weight: 500;
  color: var(--text-500);
  white-space: nowrap;
}

.header-step.active .step-name {
  color: var(--primary);
  font-weight: 600;
}

.header-step.completed .step-name {
  color: var(--success);
  font-weight: 600;
}

.help-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--primary);
  color: white;
  text-decoration: none;
  border-radius: var(--radius-lg);
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.help-btn:hover {
  background: #1e40af;
  transform: translateY(-1px);
}

.reservation-footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--card-ring);
  padding: 2rem 0;
  margin-top: 3rem;
}

.reservation-footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links {
  display: flex;
}

.footer-links a {
  color: var(--text-500);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: bold;
  transition: color 1s ease;
}

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

.footer-security {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--success);
  font-size: 0.875rem;
  font-weight: 500;
}

.footer-copyright {
  color: var(--text-500);
  font-size: 0.875rem;
}

/* Footer minimaliste pour la réservation */
.reservation-footer-minimal {
  background: white;
  border-top: 1px solid var(--card-ring);
  padding: 1rem 0;
  margin-top: 2rem;
}

.footer-minimal-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-500);
}

.footer-minimal-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-minimal-left a {
  color: var(--text-500);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-separator {
  color: var(--text-300);
  font-weight: 300;
}

.footer-minimal-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--success);
  font-weight: 500;
}

.footer-minimal-right i {
  font-size: 0.875rem;
}

@media (max-width: 1024px) {
  .header-steps {
    gap: 0.75rem;
  }
  
  .header-step {
    padding: 0.375rem 0.5rem;
  }
  
  .step-name {
    font-size: 0.8rem;
  }
}

/* Éléments mobiles et desktop uniquement */
.mobile-only {
  display: none;
}

.desktop-only {
  display: block;
}

/* Bouton résumé mobile */
.mobile-summary-btn {
  display: none;
  background: linear-gradient(135deg, var(--primary) 0%, #2563eb 100%);
  color: white;
  border: none;
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
  min-width: 140px;
}

.mobile-summary-btn:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.mobile-summary-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

/* Animation du total */
#mobile-total-display {
  transition: all 0.3s ease;
}

.mobile-summary-btn.updating #mobile-total-display {
  transform: scale(1.05);
  color: #fbbf24;
}

.mobile-summary-btn i {
  font-size: 0.875rem;
}

/* Bouton résumé desktop */
.desktop-summary-btn {
  display: flex;
  background: linear-gradient(135deg, #4f46e5 0%, #3b82f6 100%);
  color: white;
  border: none;
  padding: 0.75rem 1.25rem;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 4px 16px rgba(79, 70, 229, 0.3);
  min-width: 200px;
  font-weight: 600;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
  font-family: inherit;
}

.desktop-summary-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  border-radius: 16px;
  pointer-events: none;
}

.desktop-summary-btn:hover {
  background: linear-gradient(135deg, #4338ca 0%, #2563eb 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(79, 70, 229, 0.4);
}

.desktop-summary-btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.desktop-summary-btn:focus {
  outline: none;
  box-shadow: 0 4px 16px rgba(79, 70, 229, 0.4), 0 0 0 3px rgba(79, 70, 229, 0.2);
}

.desktop-summary-btn i {
  font-size: 1rem;
  color: white;
  position: relative;
  z-index: 1;
}

.desktop-summary-btn.updating {
  animation: pulse-update 0.6s ease-in-out;
}

#desktop-total-display {
  position: relative;
  z-index: 1;
  font-weight: 700;
  letter-spacing: 0.025em;
  transition: all 0.3s ease;
}

.desktop-summary-btn.updating #desktop-total-display {
  transform: scale(1.05);
}

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

/* Bouton total desktop */
.desktop-total-btn {
  background: linear-gradient(135deg, var(--primary) 0%, #2563eb 100%);
  color: white;
  border: none;
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
  min-width: 160px;
}

.desktop-total-btn:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.desktop-total-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.desktop-total-btn.updating #desktop-total-display {
  transform: scale(1.05);
  color: #fbbf24;
}

#desktop-total-display {
}


.desktop-total-btn:hover #desktop-total-display::before {
  left: 100%;
}

#desktop-total-display:hover {
  transform: scale(1.02);
  box-shadow: 0 2px 8px rgba(255, 255, 255, 0.2);
}

.desktop-total-btn i {
  font-size: 0.875rem;
}

/* Système d'accordéon pour le récapitulatif */
.accordion-block {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-block.open {
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: #f8fafc;
  cursor: pointer;
  transition: all 0.2s ease;
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #1e293b;
  border: none;
  width: 100%;
}

.accordion-header:hover {
  background: #f1f5f9;
}

.accordion-block.open .accordion-header {
  background: linear-gradient(135deg, var(--primary) 0%, #2563eb 100%);
  color: white;
}

.accordion-arrow {
  transition: transform 0.3s ease;
  font-size: 0.875rem;
  margin-left: 0.5rem;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: white;
}

.accordion-block.open .accordion-content {
  max-height: none;
}

.accordion-content > * {
  padding: 0 1.25rem;
}

.accordion-content > *:first-child {
  padding-top: 1rem;
}

.accordion-content > *:last-child {
  padding-bottom: 1rem;
}

@media (max-width: 768px) {
  /* Afficher les éléments mobiles uniquement */
  .mobile-only {
    display: flex;
  }
  
  /* Masquer les éléments desktop sur mobile */
  .desktop-only,
  .desktop-summary-btn {
    display: none !important;
  }
  
  /* Masquer l'accordéon sur mobile et afficher la version classique */
  .accordion-block {
    display: none;
  }
  
  /* Afficher la version mobile classique des blocs */
  .mobile-summary-block {
    display: block !important;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 1rem;
    background: white;
  }
  
  .mobile-summary-block h3 {
    padding: 1rem 1.25rem;
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    background: #f8fafc;
    border-radius: 12px 12px 0 0;
    border-bottom: 1px solid #e2e8f0;
  }
  
  .mobile-summary-block .summary-section {
    padding: 1rem 1.25rem;
  }
  
  .mobile-summary-btn {
    display: flex;
  }
  
  .reservation-header-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
  }
  
  /* Logo à gauche */
  .reservation-header .logo {
    order: 1;
    flex-shrink: 0;
  }
  
  .reservation-header .logo img {
    height: 40px;
  }
  
  /* Menu mobile au centre-gauche */
  .mobile-menu-btn {
    order: 2;
    margin-left: 1rem;
  }
  
  /* Masquer la progression sur mobile */
  .reservation-progress {
    display: none;
  }
  
  /* Masquer l'aide sur mobile */
  .reservation-help {
    display: none;
  }
  
  /* Masquer l'ancien bouton résumé */
  .mobile-summary-toggle {
    display: none;
  }
  
  /* Bouton résumé à droite */
  .mobile-summary-btn {
    order: 3;
    margin-left: auto;
  }
}
  
  .header-step {
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.5rem;
    min-width: 60px;
  }
  
  .header-step:not(:last-child)::after {
    display: none;
  }
  
  .step-number {
    width: 20px;
    height: 20px;
    font-size: 0.7rem;
  }
  
  .step-name {
    font-size: 0.7rem;
    text-align: center;
  }
  
  .reservation-footer-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }
  
  .footer-minimal-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .footer-minimal-left {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
  }


/* ===== RESERVATION PROCESS ===== */
.reservation-process {
  padding: 0rem 0;
  background: var(--bg-soft);
  min-height: 100vh;
}

/* Indicateur d'étapes */
.steps-indicator {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
  position: relative;
}

.steps-indicator::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 2px;
  background: var(--card-ring);
  z-index: 1;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  flex: 1;
  max-width: 150px;
}

.step-number {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--card-ring);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--text-500);
  transition: all 0.3s ease;
}

.step-label {
  font-size: 0.875rem;
  color: var(--text-500);
  text-align: center;
  font-weight: 500;
}

.step.active .step-number {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

.step.active .step-label {
  color: var(--primary);
  font-weight: 600;
}

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

.step.completed .step-number::after {
  content: '✓';
  font-size: 0.875rem;
}

/* Contenu principal */
.reservation-content {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
}

.reservation-main {
  background: white;
  border-radius: var(--radius-2xl);
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--card-ring);
}

.step-content {
  display: none;
}

.step-content.active {
  display: block;
}

.step-header {
  margin-bottom: 2rem;
  text-align: center;
}

.step-header h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-100);
  margin-bottom: 0.5rem;
}

.step-header p {
  color: var(--text-500);
  font-size: 1rem;
}

/* Détails de réservation */
.booking-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 15px 15px 5px 15px;
  background: var(--bg-soft-orange);
  border-radius: var(--radius-lg);
}

.booking-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.booking-field {
  display: flex;
  flex-direction: column;
}

.booking-field label {
  display: block;
  font-weight: 600;
  color: var(--text-100);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.date-picker-container,
.time-picker-container {
  position: relative;
}

.date-input,
.time-select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 1rem;
  background: white;
  color: var(--text-100);
  transition: all 0.3s ease;
  appearance: none;
}

.date-input:focus,
.time-select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.date-input:hover,
.time-select:hover {
  border-color: var(--primary);
}

.time-select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
}

.date-input::-webkit-calendar-picker-indicator {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%234f46e5'%3e%3cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M8 7V3m8 4V3m-9 8h10M5 21h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v12a2 2 0 002 2z'/%3e%3c/svg%3e");
  background-size: 1.2em;
  cursor: pointer;
}

.location-field {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--card-ring);
}

.location-field i {
  color: var(--primary);
}

/* Sélection de véhicules */
.vehicles-selection {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.vehicles-selection .price-current {
  font-size: 1rem;
  color:white;
  margin-bottom:0px;
}

.vehicles-selection .price-savings {
  font-size: 0.8rem;
  margin-bottom:0px;
}

.vehicle-option {
  border: 2px solid var(--card-ring);
  border-radius: var(--radius-2xl);
  padding: 0rem 1.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  background: white;
  user-select: none;
  display: grid;
  grid-template-columns: 200px 1fr auto;
  gap: 1.5rem;
  align-items: center;
}

.vehicle-option:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.vehicle-option.selected {
  border-color: var(--primary);
  background: rgba(var(--primary-rgb), 0.05);
  position: relative;
}

.vehicle-option.selected::after {
  content: '✓';
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 24px;
  height: 24px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
}

.vehicle-option .vehicle-image {
  height: 120px;
  width: 170px;
  margin-bottom: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

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

.unavailable-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
}

.vehicle-option .vehicle-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 20px 0px;
}

.vehicle-option h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-100);
  margin: 0;
}

.vehicle-option .vehicle-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--text-300);
}

.vehicle-option .vehicle-specs span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.vehicle-option .vehicle-specs i {
  color: var(--primary);
  width: 16px;
}

.vehicle-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin: 0;
}

.vehicle-price .price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}

.vehicle-price .unit {
  font-size: 0.875rem;
  color: var(--text-500);
}

.vehicle-select {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.vehicle-select {
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.vehicle-option:hover .vehicle-select {
  opacity: 1;
}

.vehicle-option.selected .vehicle-select {
  opacity: 0;
  pointer-events: none;
}

.vehicle-select input[type="radio"] {
  width: 20px;
  height: 20px;
  accent-color: var(--primary);
  padding: 0;
  margin: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

/* Options kilométrage */
.km-options {
  display: grid;
  gap: 1rem;
}

.km-option {
  border: 2px solid var(--card-ring);
  border-radius: var(--radius-2xl);
  padding: 1.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
  background: white;
  user-select: none;
  position: relative;
}

.km-option:hover,
.km-option.selected {
  border-color: var(--primary);
  background: rgba(var(--primary-rgb), 0.05);
}

.km-option.selected {
  position: relative;
}

.km-option.selected::after {
  content: '✓';
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 24px;
  height: 24px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
}

.option-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  gap: 1rem;
}

.option-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-lg);
  background: rgba(var(--primary-rgb), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
}

.option-description {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: 0.25rem;
  display: block;
}

.option-title h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-100);
  margin-bottom: 0.25rem;
}

.title-with-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.km-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #E84400;
  color: white;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  line-height: 1;
}

.option-title p {
  color: var(--text-500);
  font-size: 0.9rem;
  margin: 0;
}

.option-price {
  text-align: right;
}

.option-price .price {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
}

.option-price .unit {
  font-size: 0.875rem;
  color: var(--text-500);
}

.option-details {
  margin-bottom: 1rem;
}

.km-rate {
  color: var(--text-500);
  font-size: 0.875rem;
  margin: 0;
}

.option-select {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.km-option:hover .option-select,
.insurance-option:hover .option-select {
  opacity: 1;
}

.km-option.selected .option-select,
.insurance-option.selected .option-select {
  opacity: 0;
  pointer-events: none;
}

.option-select input[type="radio"] {
  width: 20px;
  height: 20px;
  accent-color: var(--primary);
  padding: 0;
  margin: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

/* Options d'assurance */
.insurance-options {
  display: grid;
  gap: 1.5rem;
}

.insurance-option {
  border: 2px solid var(--card-ring);
  border-radius: var(--radius-2xl);
  padding: 1.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
  background: white;
  position: relative;
  user-select: none;
}

.insurance-option:hover,
.insurance-option.selected {
  border-color: var(--primary);
  background: rgba(var(--primary-rgb), 0.05);
}

.insurance-option.selected {
  position: relative;
}

.insurance-option.selected::after {
  content: '✓';
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 24px;
  height: 24px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  z-index: 2;
}

.insurance-option.popular {
  border-color: var(--warning);
}

.popular-badge {
  position: absolute;
  top: -10px;
  right: 1rem;
  background: var(--warning);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.option-description {
  margin: 1rem 0;
}

.option-description p {
  color: var(--text-300);
  font-size: 0.9rem;
  margin: 0;
}

.option-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.option-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0;
  font-size: 0.875rem;
  color: var(--text-300);
}

.option-features i {
  color: var(--success);
  font-size: 0.75rem;
}

/* Formulaire client */
.customer-form {
  max-width: 800px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--text-100);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.75rem;
  border: 3px solid var(--card-ring);
  border-radius: var(--radius-lg);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}

.phone-input {
  display: flex;
  gap: 0.5rem;
}

.phone-input select {
  width: 120px;
  flex-shrink: 0;
}

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

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

.checkbox-group label {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--text-300);
}

.checkbox-group a {
  color: var(--primary);
  text-decoration: none;
}

.checkbox-group a:hover {
  text-decoration: underline;
}

/* Section paiement */
.payment-section {
}

.payment-section h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-100);
  margin-bottom: 1.5rem;
}

.payment-methods {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

.payment-method {
  border: 2px solid var(--card-ring);
  border-radius: var(--radius-lg);
  padding: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.payment-method:hover,
.payment-method.active {
  border-color: var(--primary);
  background: rgba(var(--primary-rgb), 0.05);
}

.payment-method label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--text-100);
}

.payment-method input[type="radio"] {
  width: 20px;
  height: 20px;
  accent-color: var(--primary);
  padding: 0;
  margin: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

/* Section Caution */
.caution-section {
  margin-bottom: 2rem;
}

.caution-section h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-100);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.caution-info {
  background: var(--card-bg);
  border: 1px solid var(--card-ring);
  border-radius: var(--radius-2xl);
  padding: 0;
  overflow: hidden;
}

.caution-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
}

.caution-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), #4f46e5);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.caution-icon i {
  font-size: 1.5rem;
  color: white;
}

.caution-details h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-100);
  margin: 0 0 0.5rem 0;
}

.caution-amount {
  margin-bottom: 0.75rem;
}

.caution-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
}

.caution-duration {
  font-size: 0.875rem;
  color: var(--text-muted);
  display: block;
  margin-top: 0.25rem;
}

.caution-description {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* Méthodes de paiement unifiées */
.payment-methods-unified {
  margin-bottom: 2rem;
}

.payment-info {
  background: var(--card-bg);
  border: 1px solid var(--card-ring);
  border-radius: var(--radius-2xl);
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.payment-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  gap: 2rem;
}

.payment-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
}

.payment-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), #1e40af);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  flex-shrink: 0;
}

.payment-icon.twint {
  background: linear-gradient(135deg, #00d4aa, #00b894);
}

.payment-details h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-100);
  margin: 0 0 0.5rem 0;
}

.payment-details p {
  font-size: 0.875rem;
  color: var(--text-300);
  margin: 0;
}

.accepted-cards {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.accepted-cards i {
  font-size: 1.5rem;
  color: var(--text-300);
  transition: color 0.2s;
}

.accepted-cards i:hover {
  color: var(--text-100);
}

.payment-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}

.payment-separator span {
  background: var(--card-bg);
  color: var(--text-300);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--card-ring);
  font-size: 0.875rem;
  font-weight: 500;
}

.payment-security {
  border-top: 1px solid var(--card-ring);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.security-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #059669;
  font-weight: 600;
}

.security-badge i {
  font-size: 1.25rem;
}

.security-features {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.security-features span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  color: var(--text-500);
  font-weight: 500;
}

.security-features i {
  color: var(--text-400);
}

/* Bouton résumé mobile */
.mobile-summary-toggle {
  display: none;
}

.summary-toggle-btn {
  background: var(--primary);
  color: white;
  border: none;
  border-radius: var(--radius-lg);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s;
}

.summary-toggle-btn:hover {
  background: #2563eb;
  transform: translateY(-1px);
}

/* Popup du résumé mobile */
.mobile-summary-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-summary-popup.active {
  opacity: 1;
  visibility: visible;
}

.mobile-summary-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.mobile-summary-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
  max-height: 85vh;
  overflow: hidden;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.mobile-summary-popup.active .mobile-summary-content {
  transform: translateY(0);
}

.mobile-summary-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid var(--card-ring);
  background: var(--bg-soft);
}

.mobile-summary-header h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-100);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mobile-summary-header h3 i {
  color: var(--primary);
}

.close-summary-btn {
  background: none;
  border: none;
  font-size: 1.25rem;
  color: var(--text-400);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--radius-lg);
  transition: all 0.2s;
}

.close-summary-btn:hover {
  background: var(--card-ring);
  color: var(--text-100);
}

.mobile-summary-body {
  padding: 1rem;
  overflow-y: auto;
  max-height: calc(85vh - 80px);
}

@media (max-width: 768px) {
  /* 1. Ligne de progrès simple sans texte ni rond */
  .reservation-progress .header-steps {
    display: flex;
    align-items: center;
    gap: 0;
    position: relative;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  
  .reservation-progress .header-step {
    flex: 1;
    height: 4px;
    background: var(--card-ring);
    border-radius: 2px;
    margin: 0 2px;
    transition: background-color 0.3s ease;
  }
  
  .reservation-progress .header-step.active,
  .reservation-progress .header-step.completed {
    background: var(--primary);
  }
  
  .reservation-progress .header-step .step-number,
  .reservation-progress .header-step .step-name {
    display: none;
  }
  
  /* 2. Masquer l'aide */
  .reservation-help {
    display: none;
  }
  
  /* 3. Masquer le résumé et afficher le bouton */
  .reservation-summary {
    display: none;
  }
  
  .mobile-summary-toggle {
    display: block;
  }
  
  .payment-options {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .payment-separator {
    transform: rotate(90deg);
  }
  
  .payment-security {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .security-features {
    justify-content: center;
  }
}

.accepted-cards {
  margin-left: auto;
  display: flex;
  gap: 0.5rem;
  font-size: 1.25rem;
}

.payment-btn {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  margin: 1rem 0px;
}

/* Confirmation */
.confirmation-success {
  text-align: center;
  padding: 2rem;
}

.success-icon {
  font-size: 4rem;
  color: var(--success);
  margin-bottom: 1.5rem;
}

.confirmation-success h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-100);
  margin-bottom: 1rem;
}

.confirmation-success p {
  color: var(--text-500);
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.booking-reference {
  background: var(--bg-soft);
  padding: 1rem;
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
  font-size: 1.125rem;
}

.next-steps {
  text-align: left;
  max-width: 400px;
  margin: 0 auto 2rem;
}

.next-steps h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-100);
  margin-bottom: 1rem;
}

.next-steps ul {
  list-style: none;
  padding: 0;
}

.next-steps li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: var(--text-300);
}

.next-steps i {
  color: var(--primary);
  width: 20px;
}

.confirmation-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* Navigation des étapes */
.step-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--card-ring);
}

.step-1-navigation {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--card-ring);
}

/* Résumé de réservation (sidebar) */
.reservation-summary {
  position: relative;
}

/* Blocs de résumé */
.summary-block {
  background: var(--card-bg);
  border: 1px solid var(--card-ring);
  border-radius: var(--radius-2xl);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.summary-block:last-child {
  margin-bottom: 0;
}

.summary-block h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-100);
  margin: 0 0 1rem 0;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.summary-block h3 i {
  color: var(--primary);
  font-size: 1rem;
}

.summary-block .summary-section {
  margin-bottom: 1rem;
}

.summary-block .summary-section:last-child {
  margin-bottom: 0;
}

/* Détails des options dans le résumé */
.option-details {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--card-ring);
}

.option-detail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.25rem 0;
  font-size: 0.875rem;
}

.detail-label {
  color: var(--text-muted);
  font-weight: 500;
}

.detail-value {
  color: var(--text-100);
  font-weight: 600;
}


.summary-sticky {
  position: sticky;
  top: 2rem;
}

.summary-sticky h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-100);
  margin-bottom: 1.5rem;
  text-align: center;
}

.summary-section {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--card-ring);
}

.summary-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.summary-section h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-100);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.summary-section h4 i {
  color: var(--primary);
  font-size: 0.875rem;
}

/* Période de location */
.rental-period {
  margin-bottom: 1rem;
}

.period-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}

.period-item i {
  color: var(--primary);
  width: 16px;
}

.period-item strong {
  color: var(--text-100);
}

.period-item span {
  color: var(--text-500);
}

.rental-duration {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  padding: 0.5rem;
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
}

.rental-duration i {
  color: var(--primary);
}

.pickup-location {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  padding: 0.75rem;
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
}

.pickup-location i {
  color: var(--primary);
  margin-top: 2px;
}

/* Véhicule sélectionné */
.selected-vehicle {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.selected-vehicle img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.vehicle-details h5 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-100);
  margin-bottom: 0.25rem;
}

.vehicle-specs-summary {
  font-size: 0.75rem;
  color: var(--text-500);
}

/* Options sélectionnées */
.selected-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  border: 1px solid var(--card-ring);
}

.option-icon-name {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.option-icon-name i {
  color: var(--primary);
  font-size: 1.1rem;
}

.option-name {
  font-weight: 600;
  color: var(--text-100);
  font-size: 0.9rem;
}

.option-price {
  font-weight: 600;
  color: var(--primary);
  font-size: 0.875rem;
}

/* Infos client */
.customer-info div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.customer-info strong {
  color: var(--text-100);
}

.customer-info span {
  color: var(--text-500);
}

/* Récapitulatif financier */
.price-breakdown {
  font-size: 0.9rem;
}

.price-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
}

.price-line.discount {
  color: #28a745;
  font-weight: 600;
  background: rgba(40, 167, 69, 0.05);
  padding: 0.75rem;
  border-radius: 8px;
  margin: 0.5rem 0;
}

.price-line.discount span:last-child {
  color: #28a745 !important;
  font-weight: 700;
}

.price-line.subtotal {
  border-top: 1px solid var(--card-ring);
  margin-top: 0.5rem;
  padding-top: 1rem;
  font-weight: 600;
}

.price-line.tax {
  color: var(--text-500);
  font-size: 0.875rem;
}

.price-line.total {
  border-top: 2px solid var(--primary);
  margin-top: 0.5rem;
  padding-top: 1rem;
  font-size: 1.125rem;
  color: var(--primary);
}

/* Conditions */
.conditions-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.conditions-list li {
  font-size: 0.75rem;
  color: var(--text-500);
  margin-bottom: 0.5rem;
  line-height: 1.4;
  position: relative;
  padding-left: 1rem;
}

.conditions-list li::before {
  content: '•';
  color: var(--primary);
  position: absolute;
  left: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .reservation-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .reservation-summary {
    order: -1;
  }
  
  .summary-sticky {
    position: static;
  }
}

@media (max-width: 768px) {
  .reservation-process {
    padding: 2rem 0;
  }
  
  .steps-indicator {
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .step {
    flex: none;
    width: calc(50% - 0.5rem);
  }
  
  .reservation-main {
    padding: 1.5rem;
  }
  
  .booking-details {
    gap: 1rem;
    padding: 1rem;
  }
  
  .booking-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .vehicles-selection {
    grid-template-columns: 1fr;
  }
  
  .vehicle-option {
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: center;
  }
  
  .vehicle-option .vehicle-image {
    width: 100%;
    height: 250px;
    margin: 0 auto;
  }
  
  .vehicle-option .vehicle-info {
    text-align: center;
    padding:0px;
  }
  
  .vehicle-option .vehicle-specs {
    justify-content: center;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .phone-input {
    flex-direction: column;
  }
  
  .phone-input select {
    width: 100%;
  }
  
  .confirmation-actions {
    flex-direction: column;
  }
  
  .step-navigation {
    flex-direction: column;
    gap: 1rem;
  }

  .date-input, .time-select {
    font-size: 0.8rem;
    width: 100%;
  }
  .booking-field label {
    margin-bottom: 0.2rem;
  }
  .booking-row {
    margin-bottom:0px;
  }
  .booking-details {
    gap: 0.4rem;
  }
  .booking-row {
    gap: 0.4rem;
  }
}

/* ===== HERO REDESIGN ===== */

/* Layout en grille pour le hero */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 3rem;
  align-items: center;
  min-height: 500px;
}

.hero-content-left {
  max-width: 600px;
}

/* Logo partenaire */
.hero-partner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.partner-text {
  color: var(--text-300);
  font-size: 0.875rem;
  font-weight: 500;
}

.partner-logo {
  display: flex;
  align-items: center;
}

.axa-logo {
  background: #00008f;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

/* Moteur de recherche hero */
.hero-search-container {
  display: flex;
  justify-content: flex-end;
}

.hero-search-card {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  width: 100%;
  max-width: 420px;
  position: relative;
  overflow: visible;
}

.hero-search-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.search-card-title {
  color: var(--text-100);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
}

.search-card-title::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
}

.hero-search-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow: visible;
  width: 100%;
}

.search-field {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  overflow: visible;
}

.search-field-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.search-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-100);
  margin-bottom: 0.5rem;
}

.search-label i {
  color: var(--primary);
  width: 18px;
  font-size: 1rem;
}

.search-input {
  padding: 1rem 1.25rem;
  border: 2px solid var(--card-ring);
  border-radius: 12px;
  font-size: 0.9rem;
  background: white;
  color: var(--text-100);
  transition: all 0.3s ease;
  font-weight: 500;
}

.search-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.1);
  transform: translateY(-1px);
}

.search-input:hover {
  border-color: var(--primary);
}

.search-btn {
  background: linear-gradient(135deg, var(--primary) 0%, #1e40af 100%);
  color: white;
  border: none;
  padding: 1.25rem 2rem;
  border-radius: 16px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1rem;
  position: relative;
  overflow: hidden;
}

.search-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.search-btn:hover::before {
  left: 100%;
}

.search-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(var(--primary-rgb), 0.4);
}

.search-btn:active {
  transform: translateY(-1px);
}

/* ===== AVANTAGES COMPETITIFS ===== */

.competitive-advantages {
  background: var(--bg);
  padding: 3rem 0;
  border-top: 1px solid var(--card-ring);
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.advantage-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  background: var(--bg-soft);
  border-radius: 12px;
  transition: all 0.2s ease;
}

.advantage-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.advantage-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: white;
}

.advantage-icon.free {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.advantage-icon.secure {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.advantage-icon.support {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.advantage-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-100);
  margin-bottom: 0.5rem;
}

.advantage-desc {
  font-size: 0.875rem;
  color: var(--text-300);
  line-height: 1.4;
}

/* ===== MOYENS DE PAIEMENT ===== */

.payment-methods {
  background: var(--bg-soft);
  padding: 2rem 0;
  border-top: 1px solid var(--card-ring);
}

.payment-title {
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-300);
  margin-bottom: 1rem;
}

.payment-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.payment-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 50px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
  background: #ff6c00;
}

.payment-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.payment-icon img {
  max-width: 60px;
  max-height: 30px;
  object-fit: contain;
}

/* Logos de paiement en CSS */
.visa-logo {
  background: linear-gradient(135deg, #1a1f71 0%, #0f3460 100%);
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 2px;
  padding: 0.5rem 1rem;
  border-radius: 4px;
}

.mastercard-logo {
  display: flex;
  align-items: center;
  gap: -2px;
}

.mc-circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.mc-red {
  background: #eb001b;
}

.mc-yellow {
  background: #ff5f00;
  margin-left: -8px;
}

.twint-logo {
  background: #005aab;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
}

/* Responsive pour le hero */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .hero-search-container {
    justify-content: center;
  }
  
  .hero-search-card {
    max-width: 500px;
  }
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: flex;
  }
  
  .desktop-nav {
    display: none;
  }
  
  /* Masquer "Idées voyage" et "Offres spéciales" sur mobile */
  .mobile-nav-item[href*="idees-voyage"],
  .mobile-nav-item[href*="offres"] {
    display: none !important;
  }
  
  /* Masquer les sous-menus (dropdowns) sur mobile */
  .mobile-dropdown-item .mobile-dropdown-content {
    display: none !important;
  }
  
  /* Masquer les flèches des dropdowns sur mobile */
  .mobile-dropdown-item .nav-item-arrow {
    display: none !important;
  }
  
  /* Convertir les éléments dropdown en liens simples */
  .mobile-dropdown-item .nav-item-main {
    pointer-events: none;
  }
  
  .mobile-dropdown-item .nav-item-main .nav-item-content {
    opacity: 0.6;
  }
  
  /* Améliorations du menu mobile */
  .mobile-menu-modern {
    width: 100%;
    max-width: 100vw;
    right: -100%;
  }
  
  .mobile-menu-header {
    padding: 1rem;
    background: var(--bg-soft);
    border-bottom: 1px solid var(--card-ring);
  }
  
  .mobile-logo img {
    height: 28px;
  }
  
  .mobile-nav-modern {
    padding: 0.5rem 0;
  }
  
  .mobile-nav-item {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.2s ease;
  }
  
  .mobile-nav-item:hover {
    background: var(--bg-soft);
  }
  
  .mobile-nav-item.active {
    background: rgba(59, 130, 246, 0.1);
  }
  
  .nav-item-icon {
    width: 40px;
    height: 40px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .nav-item-icon i {
    color: var(--primary);
    font-size: 1rem;
  }
  
  .nav-item-title {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-100);
  }
  
  .nav-item-desc {
    font-size: 0.8rem;
    color: var(--text-400);
    margin-top: 0.2rem;
  }
  
  .hero-grid {
    min-height: auto;
    padding: 2rem 0;
  }
  
  .hero-search-card {
    padding: 1.5rem;
  }
  
  .search-field-group {
    grid-template-columns: 1fr;
  }
  
  .advantages-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .payment-icons {
    gap: 1rem;
  }
}

/* ===== DATE PICKER & TIME PICKER MODULE ===== */

/* Container principal */
.datetime-picker-container {
  position: relative;
  display: inline-block;
  width: 100%;
  overflow: visible;
}

/* Input principal */
.datetime-input {
  width: 100%;
  border: 2px solid var(--card-ring);
  border-radius: 12px;
  background: white;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: stretch;
  user-select: none;
  overflow: hidden;
}

.datetime-input:hover {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}

.datetime-input.active {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.2);
}

.datetime-input-icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  background: var(--primary);
  color: white;
  flex-shrink: 0;
}

.datetime-input-icon {
  font-size: 1.5rem;
}

.datetime-input-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex: 1;
  padding: 1rem 1.5rem;
}

.datetime-input-arrow-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  color: var(--text-300);
  flex-shrink: 0;
}

.datetime-input-text-container {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}

.datetime-input-date {
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.2;
  color: var(--text-100);
}

.datetime-input-time {
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.2;
  color: var(--text-100);
}

.datetime-input-day {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.2;
  color: var(--text-500);
  text-transform: capitalize;
}

.datetime-input-placeholder {
  color: var(--text-400) !important;
}

.datetime-input-arrow {
  color: var(--text-300);
  transition: transform 0.3s ease;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.datetime-input.active .datetime-input-arrow {
  transform: rotate(180deg);
}

/* Date Picker */
.date-picker {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  min-width: 380px;
  width: max-content;
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--card-ring);
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.date-picker.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.date-picker-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--card-ring);
}

.date-picker-nav {
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-300);
  transition: all 0.2s ease;
}

.date-picker-nav:hover {
  background: var(--bg-soft);
  color: var(--primary);
}

.date-picker-title {
  font-weight: 600;
  color: var(--text-100);
  font-size: 1.1rem;
}

.date-picker-calendar {
  padding: 1.5rem;
  min-width: 350px;
}

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

.calendar-weekday {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-300);
  padding: 0.5rem;
}

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

.calendar-day {
  aspect-ratio: 1;
  border: none;
  background: var(--card);
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-100);
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--card-ring);
  min-height: 42px;
  min-width: 42px;
}

.calendar-day:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: scale(1.05);
}

.calendar-day.other-month {
  color: var(--text-400);
  background: var(--bg-soft);
  opacity: 0.8;
  border: 1px solid transparent;
}

.calendar-day.other-month:hover {
  opacity: 1;
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: scale(1.02);
}

.calendar-day.other-month:not(.disabled) {
  cursor: pointer;
}

.calendar-day.other-month.disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.calendar-day.today {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(var(--primary-rgb), 0.3);
}

.calendar-day.selected {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(var(--primary-rgb), 0.4);
}

.calendar-day.disabled {
  color: var(--text-500);
  background: var(--bg-soft);
  cursor: not-allowed;
  opacity: 0.4;
  border-color: transparent;
}

.calendar-day.disabled:hover {
  background: var(--bg-soft);
  color: var(--text-500);
  transform: none;
  border-color: transparent;
}

/* Time Picker */
.time-picker {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  min-width: 380px;
  width: max-content;
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--card-ring);
  z-index: 100000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  margin-top: 0.5rem;
  max-height: 300px;
}

.time-picker.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.time-picker-header {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--card-ring);
  text-align: center;
  display:none;
}

.time-picker-title {
  font-weight: 600;
  color: var(--text-100);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.time-picker-subtitle {
  font-size: 0.875rem;
  color: var(--text-300);
}

.time-picker-list {
  max-height: 200px;
  overflow-y: auto;
  padding: 0.5rem;
}

.time-option {
  width: 100%;
  padding: 0.75rem 1rem;
  border: none;
  background: none;
  text-align: left;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--text-100);
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.time-option:hover {
  background: var(--bg-soft);
  color: var(--primary);
}

.time-option.disabled {
  background: #f8f9fa;
  color: #6c757d;
  cursor: not-allowed;
  opacity: 0.6;
}

.time-option.disabled:hover {
  background: #f8f9fa;
  color: #6c757d;
}

.time-option.selected {
  background: var(--primary);
  color: white;
}

.time-option-time {
  font-weight: 600;
}

.time-option-period {
  font-size: 0.75rem;
  opacity: 0.8;
}

/* Overlay pour fermer les pickers */
.datetime-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99998;
  background: transparent;
  display: none;
}

.datetime-overlay.active {
  display: block;
}

/* Animations */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.date-picker.active,
.time-picker.active {
  animation: slideInUp 0.3s ease;
}

/* Masquer les boutons de fermeture sur desktop */
.mobile-picker-close {
  display: none;
}

/* ===== MOBILE NATIVE PICKER STYLES ===== */
.datetime-picker-container.mobile .datetime-input {
  position: relative;
}

.datetime-picker-container.mobile .datetime-input.mobile-native {
  cursor: pointer;
  transition: all 0.2s ease;
}

.datetime-picker-container.mobile .datetime-input.mobile-native:hover {
  background: var(--bg-soft);
  border-color: var(--primary);
}

.datetime-picker-container.mobile .datetime-input.mobile-native:active {
  transform: scale(0.98);
}

/* Inputs natifs cachés */
.native-date-input,
.native-time-input {
  position: absolute !important;
  opacity: 0 !important;
  pointer-events: none !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* Indicateur visuel pour mobile */
.datetime-picker-container.mobile .datetime-input::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.datetime-picker-container.mobile .datetime-input.has-selection::after {
  opacity: 1;
}

/* Animation pour mobile */
.datetime-picker-container.mobile .datetime-input.mobile-native {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 2px solid #e2e8f0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.datetime-picker-container.mobile .datetime-input.mobile-native:hover {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
  transform: translateY(-1px);
}

.datetime-picker-container.mobile .datetime-input.has-selection {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

/* Icône spéciale pour mobile */
.datetime-picker-container.mobile .datetime-input-icon {
  color: var(--primary);
  font-size: 1.1rem;
}

.datetime-picker-container.mobile .datetime-input.has-selection .datetime-input-icon {
  color: var(--primary);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

/* Responsive - Pleine largeur sur mobile */
@media (max-width: 768px) {
  .date-picker,
  .time-picker {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    min-width: unset;
    max-width: unset;
    margin: 0;
    border-radius: 0;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    padding: 1rem;
  }
  
  .date-picker-calendar,
  .time-picker-list {
    background: white;
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    width: 100%;
    max-width: 380px;
    overflow: hidden;
    transform: scale(1);
    animation: modalSlideIn 0.3s ease-out;
  }
  
  @keyframes modalSlideIn {
    from {
      opacity: 0;
      transform: scale(0.9) translateY(20px);
    }
    to {
      opacity: 1;
      transform: scale(1) translateY(0);
    }
  }
  
  .date-picker-header,
  .time-picker-header {
    padding: 2rem 1.5rem 1.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, #2563eb 100%);
    color: white;
    text-align: center;
    position: relative;
    border-radius: 24px 24px 0 0;
  }
  
  .date-picker-title,
  .time-picker-title {
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  }
  
  .time-picker-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin-top: 0.5rem;
  }
  
  .hero-search-container {
    display:none;
  }

  .date-picker-nav {
    color: white;
    background: rgba(255, 255, 255, 0.15);
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.2s ease;
  }
  
  .date-picker-nav:hover {
    background: rgba(255, 255, 255, 0.25);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
  
  .date-picker-calendar {
    padding: 2rem 1.5rem 2.5rem;
    min-width: unset;
    width: 100%;
    max-height: none;
  }
  
  .calendar-weekdays {
    gap: 0.5rem;
    margin-bottom: 1.5rem;
  }
  
  .calendar-weekday {
    font-size: 0.85rem;
    font-weight: 700;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.75rem 0.25rem;
  }
  
  .calendar-days {
    gap: 0.5rem;
  }
  
  .calendar-day {
    min-height: 52px;
    min-width: 52px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 16px;
    border: 2px solid transparent;
    background: #f8fafc;
    color: #1e293b;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
  }
  
  .calendar-day::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary), #2563eb);
    opacity: 0;
    transition: opacity 0.2s ease;
    border-radius: 14px;
  }
  
  .calendar-day span {
    position: relative;
    z-index: 1;
  }
  
  .calendar-day:hover:not(.disabled):not(.other-month) {
    background: #e2e8f0;
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .calendar-day.other-month {
    background: transparent;
    color: #cbd5e1;
    font-weight: 400;
  }
  
  .calendar-day.other-month:hover:not(.disabled) {
    background: #f1f5f9;
    color: #94a3b8;
    transform: scale(1.02);
  }
  
  .calendar-day.today {
    background: linear-gradient(135deg, var(--primary), #2563eb);
    color: white;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
  }
  
  .calendar-day.today::before {
    opacity: 0;
  }
  
  .calendar-day.selected {
    background: linear-gradient(135deg, #059669, #10b981);
    color: white;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
  }
  
  .calendar-day.selected::before {
    opacity: 0;
  }
  
  .calendar-day.disabled {
    background: #f8fafc;
    color: #cbd5e1;
    cursor: not-allowed;
    opacity: 0.5;
  }
  
  .calendar-day.disabled:hover {
    transform: none;
    box-shadow: none;
  }
  
  /* Styles pour le time picker mobile */
  .time-picker-list {
    max-height: 65vh;
    padding: 1.5rem;
    overflow-y: auto;
  }
  
  .time-option {
    padding: 1.25rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 16px;
    margin-bottom: 0.75rem;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    background: #f8fafc;
    color: #1e293b;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
  }
  
  .time-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary), #2563eb);
    opacity: 0;
    transition: opacity 0.2s ease;
    border-radius: 14px;
  }
  
  .time-option span {
    position: relative;
    z-index: 1;
  }
  
  .time-option:hover {
    background: #e2e8f0;
    transform: translateX(6px) scale(1.02);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .time-option.selected {
    background: linear-gradient(135deg, var(--primary), #2563eb);
    color: white;
    font-weight: 700;
    transform: translateX(0);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
  }
  
  .time-option.selected::before {
    opacity: 0;
  }
  
  /* Bouton de fermeture mobile */
  .mobile-picker-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.3rem;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .mobile-picker-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  }
  
  .mobile-picker-close:active {
    transform: scale(0.95);
  }
}

/* ===== HERO RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero {
    padding: 3rem 0 4rem;
    min-height: 70vh;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.5rem;
    line-height: 1.2;
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2rem;
  }
  
  .hero-actions {
    align-items: center;
  }
  
  .hero-badge {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 2rem 0 3rem;
    min-height: 60vh;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-actions .btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* Birth Date Inputs */
.birth-date-inputs {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 0.75rem;
}

.birth-date-inputs select {
    padding: 0.75rem;
    border: 2px solid var(--card-ring);
    border-radius: var(--radius-md);
    background: var(--card);
    color: var(--text-100);
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.birth-date-inputs select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}

/* Popup Modal */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-modal {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    margin: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s ease;
}

.popup-overlay.active .popup-modal {
    transform: translateY(0) scale(1);
}

.popup-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.popup-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.popup-icon.error {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.popup-icon.warning {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.popup-content h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-100);
}

.popup-content p {
    margin: 0;
    color: var(--text-300);
    line-height: 1.5;
}

.popup-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: flex-end;
}

.popup-btn {
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 0.875rem;
}

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

.popup-btn.primary:hover {
    transform: translateY(-1px);
}

.popup-btn.secondary {
    background: var(--card-ring);
    color: var(--text-200);
}

.popup-btn.secondary:hover {
    background: var(--text-500);
    color: var(--text-100);
}

/* FAQ Sidebar Styles */
.faq-sidebar #faqSearch {
    transition: all 0.3s ease;
}

.faq-sidebar #faqSearch:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}

.category-nav-btn:hover {
    background: var(--bg-soft) !important;
    border-color: var(--primary) !important;
    transform: translateX(4px);
}

.category-nav-btn:hover i {
    color: var(--primary) !important;
}

.category-nav-btn:hover span {
    color: var(--text-100) !important;
}

@media (max-width: 768px) {
    .birth-date-inputs {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .popup-modal {
        padding: 1.5rem;
        margin: 0.5rem;
    }
    
    .popup-actions {
        flex-direction: column;
    }
    
    /* FAQ responsive */
    .container > div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .faq-sidebar {
        position: static !important;
        order: -1;
    }
    
    .faq-sidebar > div:first-child {
        margin-bottom: 1.5rem !important;
    }
}

/* Améliorations supplémentaires pour très petits écrans */
@media (max-width: 480px) {
  /* Menu mobile encore plus compact */
  .mobile-menu-modern {
    width: 100vw;
    max-width: 100vw;
  }
  
  .mobile-nav-item {
    padding: 0.75rem 1rem;
  }
  
  .nav-item-icon {
    width: 36px;
    height: 36px;
  }
  
  .nav-item-title {
    font-size: 1.2rem;
    font-weight: bold;
  }
  
  .nav-item-desc {
    font-size: 0.75rem;
  }
  
  /* Bouton hamburger plus petit */
  .mobile-menu-btn {
    width: 36px;
    height: 36px;
    padding: 6px;
  }
  
  .hamburger-line {
    width: 20px;
    height: 2px;
    margin: 2px 0;
  }
  
  /* Header mobile plus compact */
  .mobile-menu-header {
    padding: 0.75rem 1rem;
  }
  
  .mobile-logo img {
    height: 24px;
  }
  
  .mobile-menu-close {
    width: 36px;
    height: 36px;
  }
}

/* Styles pour les sections de formulaire restructurées */
.form-section {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #e2e8f0;
}

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

/* Styles pour la case à cocher personnalisée - Version améliorée */
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  color: #1f2937;
  padding: 1.25rem;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  transition: all 0.3s ease;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.checkbox-label::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #3b82f6);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.checkbox-label:hover {
  background: linear-gradient(135deg, #f1f5f9 0%, #f8fafc 100%);
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(34, 123, 255, 0.15);
  transform: translateY(-1px);
}

.checkbox-label:hover::before {
  transform: scaleX(1);
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 30px;
  height: 30px;
  border: 2px solid #cbd5e1;
  border-radius: 6px;
  position: relative;
  transition: all 0.3s ease;
  flex-shrink: 0;
  background: #ffffff;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.checkbox-label:hover .checkmark {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(34, 123, 255, 0.1);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background: linear-gradient(135deg, var(--primary) 0%, #3b82f6 100%);
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(34, 123, 255, 0.2);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: '';
  position: absolute;
  left: 7px;
  top: 3px;
  width: 7px;
  height: 12px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
  animation: checkmark-appear 0.3s ease-in-out;
}

@keyframes checkmark-appear {
  0% {
    opacity: 0;
    transform: rotate(45deg) scale(0.5);
  }
  100% {
    opacity: 1;
    transform: rotate(45deg) scale(1);
  }
}

/* État coché avec style spécial */
.checkbox-label input[type="checkbox"]:checked {
  + .checkmark {
    animation: checkbox-bounce 0.3s ease-in-out;
  }
}

@keyframes checkbox-bounce {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

/* Texte de la case à cocher avec icône */
.checkbox-label .checkbox-text {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
}


/* État focus pour l'accessibilité */
.checkbox-label:focus-within {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Styles pour les champs conducteur conditionnels */
.driver-fields {
  transition: all 0.3s ease;
  overflow: hidden;
}

.driver-fields.hidden {
  max-height: 0;
  opacity: 0;
  margin: 0;
  padding: 0;
}

/* Amélioration des sections de formulaire sur mobile */
@media (max-width: 768px) {
  .form-section {
    padding: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .section-title {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  
  .checkbox-label {
    padding: 0.75rem;
    font-size: 0.9rem;
  }
}

/* Bouton de sélection de véhicule mobile */
.vehicle-select-mobile {
  margin-bottom: 1rem;
}

.btn-select-vehicle {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--primary);
  background: transparent;
  color: var(--primary);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 5px;
}

.btn-select-vehicle:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.btn-select-vehicle.selected {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.btn-select-vehicle.selected i {
  color: white;
}

.btn-select-vehicle.disabled {
  border-color: var(--text-400);
  color: var(--text-400);
  cursor: not-allowed;
  opacity: 0.6;
}

.btn-select-vehicle.disabled:hover {
  background: transparent;
  color: var(--text-400);
  transform: none;
  box-shadow: none;
}

.btn-select-vehicle i {
  font-size: 0.875rem;
}

/* ===== VEHICLE DETAIL PAGE STYLES ===== */

/* Hero Section */
.vehicle-hero {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--bg-soft) 0%, var(--bg-100) 100%);
  position: relative;
  overflow: hidden;
}

.vehicle-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.vehicle-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.vehicle-hero-image {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  padding: 2rem;
  background: var(--bg-100);
  border-radius: 2rem;
  border: 2px solid var(--card-ring);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.vehicle-main-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
  transition: transform 0.3s ease;
}

.vehicle-main-image:hover {
  transform: scale(1.05);
}

.vehicle-hero-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.vehicle-category {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: fit-content;
}

.vehicle-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-100);
  line-height: 1.1;
  margin: 0;
}

.vehicle-description {
  font-size: 1.125rem;
  color: var(--text-400);
  line-height: 1.6;
  margin: 0;
}

.vehicle-specs-main {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.vehicle-specs-main .spec-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--bg-100);
  border-radius: 0.75rem;
  border: 1px solid var(--card-ring);
  transition: all 0.2s ease;
}

.vehicle-specs-main .spec-item:hover {
  background: var(--bg-soft);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.vehicle-specs-main .spec-item i {
  color: var(--primary);
  font-size: 1.25rem;
  width: 20px;
  text-align: center;
}

.vehicle-specs-main .spec-item span {
  font-weight: 600;
  color: var(--text-200);
}

/* Offre de prix */
.vehicle-offer {
  background: var(--bg-100);
  border: 2px solid var(--card-ring);
  border-radius: 1.5rem;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.vehicle-offer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(16, 185, 129, 0.05) 100%);
  pointer-events: none;
}


.promo-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: white;
  padding: 5px;
  border-radius: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.price-display {
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.price-original {
  font-size: 1.25rem;
  color: var(--text-400);
  text-decoration: line-through;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.price-current {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--success);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.price-savings {
  font-size: 1rem;
  color: var(--success);
  font-weight: 600;
  background: rgba(16, 185, 129, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  display: inline-block;
}

/* Bouton de réservation principal */
.btn-reserve-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--primary) 0%, #2563eb 100%);
  color: white;
  padding: 1.25rem 2.5rem;
  border-radius: 1rem;
  font-size: 1.125rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
  position: relative;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-reserve-main:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
  color: white;
  text-decoration: none;
}

.btn-reserve-main:active {
  transform: translateY(-1px);
}

.btn-reserve-main.btn-disabled {
  background: var(--text-700);
  color: var(--text-500);
  cursor: not-allowed;
  box-shadow: none;
}

.btn-reserve-main.btn-disabled:hover {
  transform: none;
  box-shadow: none;
}

.btn-reserve-main i {
  font-size: 1.25rem;
}

/* Éléments de confiance */
.trust-elements {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--card-ring);
  position: relative;
  z-index: 1;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-300);
}

.trust-item i {
  color: var(--warning);
  font-size: 1rem;
  width: 16px;
  text-align: center;
}

.trust-item:nth-child(2) i {
  color: var(--success);
}

.trust-item:nth-child(3) i {
  color: var(--primary);
}

/* Section équipements */
.vehicle-features {
  padding: 4rem 0;
  background: var(--bg-100);
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-100);
  text-align: center;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

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

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--bg-soft);
  border-radius: 0.75rem;
  border: 1px solid var(--card-ring);
  transition: all 0.2s ease;
}

.feature-item:hover {
  background: var(--bg-100);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feature-item i {
  color: var(--success);
  font-size: 1.25rem;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.feature-item span {
  font-weight: 500;
  color: var(--text-200);
}

/* Responsive Design */
@media (max-width: 768px) {
  .vehicle-hero {
    padding: 2rem 0;
  }
  
  .vehicle-hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .vehicle-title {
    font-size: 2rem;
  }
  
  .vehicle-specs-main {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .vehicle-offer {
    padding: 1.5rem;
  }
  
  .price-current {
    font-size: 2rem;
  }
  
  .btn-reserve-main {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .section-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
}

/* ===== CONTACT PAGE RESPONSIVE STYLES ===== */

/* Layout principal responsive */
@media (max-width: 768px) {
  /* Grid principal en une colonne sur mobile */
  .container > div[style*="grid-template-columns: 1fr 1fr"] {
    display: block !important;
    gap: 2rem;
  }
  
  /* Formulaire de contact */
  .contact-form div[style*="grid-template-columns: 1fr 1fr"] {
    display: block !important;
    gap: 1rem;
  }
  
  /* Réseaux sociaux en colonne sur mobile */
  .card-body div[style*="display: flex; gap: 1rem;"] {
    flex-direction: column !important;
    gap: 0.75rem !important;
  }
  
  .card-body div[style*="display: flex; gap: 1rem;"] .btn {
    flex: none !important;
  }
}

/* Contact form responsive */
.contact-form {
  width: 100%;
}

.contact-form .form-group {
  margin-bottom: 1.5rem;
}

.contact-form .form-input,
.contact-form .form-select,
.contact-form .form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--card-ring);
  border-radius: var(--radius);
  background: var(--bg-100);
  color: var(--text-200);
  font-size: 1rem;
  transition: all 0.2s ease;
}

.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(59, 130, 246, 0.1);
}

.contact-form .form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-200);
  font-size: 0.875rem;
}

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

/* Contact info cards responsive */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-info-item i {
  color: var(--primary);
  margin-top: 0.25rem;
  font-size: 1.125rem;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.contact-info-item h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: var(--text-100);
  font-weight: 600;
}

.contact-info-item p {
  color: var(--text-300);
  margin: 0;
  line-height: 1.5;
}

.contact-info-item a {
  color: var(--text-300);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-info-item a:hover {
  color: var(--primary);
}

/* FAQ section responsive */
.faq-item {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--card-ring);
}

.faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.faq-item h4 {
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  color: var(--text-100);
  font-weight: 600;
}

.faq-item p {
  font-size: 0.875rem;
  color: var(--text-500);
  margin: 0;
  line-height: 1.5;
}

/* Social media buttons responsive */
.social-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-buttons .btn {
  flex: 1;
  min-width: 120px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

@media (max-width: 480px) {
  .social-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .social-buttons .btn {
    flex: none;
    width: 100%;
  }
}

/* Contact page header responsive */
.contact-header {
  padding: 2rem 0;
  text-align: center;
}

.contact-header h1 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-100);
  margin-bottom: 0.5rem;
}

.contact-header p {
  color: var(--text-300);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .contact-header {
    padding: 1.5rem 0;
  }
  
  .contact-header h1 {
    font-size: 1.75rem;
  }
  
  .contact-header p {
    font-size: 0.9rem;
    padding: 0 1rem;
  }
}

/* Map section responsive */
.map-section {
  height: 400px;
  background-color: var(--card);
  position: relative;
}

.map-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--text-500);
  text-align: center;
  padding: 2rem;
}

.map-placeholder i {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.map-placeholder h3 {
  margin-bottom: 0.5rem;
  color: var(--text-200);
}

.map-placeholder p {
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .map-section {
    height: 300px;
  }
  
  .map-placeholder {
    padding: 1rem;
  }
  
  .map-placeholder i {
    font-size: 2rem;
  }
  
  .map-placeholder h3 {
    font-size: 1.25rem;
  }
  
  .map-placeholder p {
    font-size: 0.875rem;
  }
}

/* Alert messages responsive */
.alert {
  padding: 1rem;
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.alert i {
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.alert-success {
  background-color: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  color: var(--success);
}

.alert-error {
  background-color: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: var(--error);
}

.alert ul {
  margin: 0.5rem 0 0 0;
  padding-left: 1rem;
}

.alert li {
  margin-bottom: 0.25rem;
}

@media (max-width: 480px) {
  .alert {
    padding: 0.875rem;
    font-size: 0.875rem;
  }
}

/* Contact form grid responsive */
@media (max-width: 768px) {
  .contact-form-grid {
    display: block !important;
  }
  
  .contact-form-grid .form-group {
    margin-bottom: 1.5rem;
  }
}

/* Button improvements */
.btn-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: all 0.2s ease;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-contact:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 480px) {
  .btn-contact {
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
  }
}

@media (max-width: 480px) {
  .vehicle-specs-main {
    grid-template-columns: 1fr;
  }
  
  .vehicle-hero-image {
    padding: 1rem;
    border-radius: 1.5rem;
  }
}

/* Styles pour le bloc "Montant total à régler aujourd'hui par carte" */
.payment-today-section {
}

.payment-today-card {
  background: #ffffff;
  border-radius: 0.5rem;
}

.breakdown-accordion-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
  font-weight: 600;
  color: #1e293b;
}

.breakdown-accordion-toggle:hover {
  background: #e2e8f0;
  border-color: #cbd5e1;
}

.breakdown-accordion-toggle span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.breakdown-accordion-toggle .accordion-icon {
  transition: transform 0.3s ease;
  color: #64748b;
}

.payment-breakdown-detailed {
  display: flex;
  flex-direction: column;
  gap: 0rem;
  padding: 1rem;
  background: #f8fafc;
  border-radius: 8px;
  margin-bottom: 1rem;
  border: 1px solid #e2e8f0;
}

.payment-breakdown-summary {
  display: flex;
  flex-direction: column;
  gap: 0rem;
}

.breakdown-item {
  margin-bottom: 0.75rem;
}

.breakdown-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.25rem 0;
  font-size: 0.9rem;
  border-bottom: 1px solid #EEE;
}

.breakdown-details {
  padding: 0.5rem 0 0 0;
  font-size: 0.8rem;
  color: #64748b;
  font-style: italic;
  line-height: 1.4;
}

.breakdown-line.discount {
  color: #28a745;
  font-weight: 600;
  background: rgba(40, 167, 69, 0.05);
  padding: 0.75rem;
  border-radius: 8px;
  margin: 0.5rem 0;
}

.breakdown-line.discount span:last-child {
  color: #28a745 !important;
  font-weight: 700;
}

.breakdown-line.subtotal {
  padding-top: 0.75rem;
  color: #1e293b;
  font-size: 1rem;
  border-top: 1px solid #e2e8f0;
}

.breakdown-line.caution-line {
  color: #f59e0b;
  font-weight: 500;
}

.breakdown-line.total {
  padding-top: 0.75rem;
  color: #10b981;
  font-size: 1.1rem;
  border-top: 2px solid #10b981;
  margin-top: 0.5rem;
}

.breakdown-line.deposit-20 {
  padding: 1rem;
  background: rgba(232, 68, 0, 0.05);
  border-radius: 8px;
  margin-top: 0.75rem;
  color: #1e293b;
  font-size: 1.05rem;
  border: 2px solid #E84400;
}

.breakdown-line.deposit-20 span:last-child strong {
  color: #E84400;
  font-size: 1.2rem;
}

.breakdown-line.balance-80 {
  padding: 0.75rem;
  background: rgba(108, 117, 125, 0.05);
  border-radius: 8px;
  margin-top: 0.5rem;
  color: #6c757d;
  font-size: 0.95rem;
}

.breakdown-separator {
  height: 1px;
  background: #e2e8f0;
  margin: 0.25rem 0;
}

.payment-today-note {
  margin-top: 0.75rem;
  padding: 0.75rem;
  background: #f0f9ff;
  border-left: 3px solid #3b82f6;
  border-radius: 0.375rem;
  font-size: 0.85rem;
  color: #1e40af;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.payment-today-note i {
  color: #3b82f6;
  margin-top: 0.1rem;
  font-size: 0.9rem;
}

/* Responsive pour mobile */
@media (max-width: 768px) {
  .payment-today-section {
    padding: 1rem;
    margin: 1rem 0;
  }
  
  .payment-today-card {
    padding: 1rem;
  }
  
  .breakdown-line {
    font-size: 0.85rem;
  }
  
  .breakdown-line.total {
    font-size: 1rem;
  }
  
  .payment-today-note {
    font-size: 0.8rem;
    padding: 0.5rem;
  }
}

/* Styles pour les checkboxes explicatives */
.checkbox-group {
  margin: 1rem 0;
  padding: 1rem;
  background: #f8fafc;
  border-radius: 0.75rem;
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  line-height: 1.5;
}

.checkbox-text {
  flex: 1;
}

.checkbox-text strong {
  display: block;
  margin-bottom: 0.25rem;
  color: #1e293b;
  font-weight: 600;
}

.checkbox-text small {
  display: block;
  color: #64748b;
  font-size: 0.85rem;
  line-height: 1.4;
  margin-top: 0.25rem;
}

#payment-grand-total-amount,
#payment-subtotal-amount,
#payment-tva-amount {
  font-weight: bold;  
}

.form-group-same-as-billing .checkbox-label {
  display:flex;
}

.form-group-same-as-billing .checkbox-text .checkmark {
  width: 30px;
  height:30px;
}

#payment-total-ttc-amount {
  font-weight:bold;
}

#payment-vehicle-details,
#payment-insurance-details,
#payment-km-details,
#payment-date-period-details {
  font-weight:bold;
  display:block;
}