```css
/* ============================================
   CORRECTIONS MOBILE - REDA VIP COCHES
   ============================================ */

/* 1. CORRECTIONS GLOBALES OVERFLOW */
html {
  overflow-x: hidden !important;
  width: 100%;
  max-width: 100vw;
}

body {
  overflow-x: hidden !important;
  width: 100%;
  max-width: 100vw;
  position: relative;
}

* {
  box-sizing: border-box;
}

/* 2. CONTAINERS */
.container {
  max-width: 100%;
  width: 100%;
  overflow-x: hidden;
  margin-left: auto;
  margin-right: auto;
}

/* 3. GRIDS */
.grid {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

/* 4. IMAGES ET MEDIAS */
img,
svg,
video {
  max-width: 100%;
  height: auto;
}

/* 5. SECTIONS */
section {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

/* 6. FORMULAIRES */
input,
select,
textarea,
button {
  max-width: 100%;
  box-sizing: border-box;
}

/* ============================================
   CORRECTIONS SPÉCIFIQUES MOBILE
   ============================================ */

@media (max-width: 768px) {
  /* Header mobile */
  header {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
  }
  
  header .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  
  /* Hero section */
  .hero-section {
    background-attachment: scroll !important;
    width: 100%;
    max-width: 100vw;
  }
  
  /* Formulaire de réservation */
  .booking-form-container {
    width: 100%;
    max-width: 100%;
    padding: 1rem;
    margin: 0;
  }
  
  /* Cartes de voitures */
  .car-card {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
  
  .car-card svg {
    width: 100%;
    height: auto;
  }
  
  /* Réduction des paddings */
  .px-4 {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }
  
  .px-8 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  /* Grid à une colonne sur mobile */
  .grid {
    grid-template-columns: 1fr !important;
    gap: 1rem;
  }
  
  /* Textes */
  h1 {
    font-size: 2rem !important;
    line-height: 1.2;
  }
  
  h2 {
    font-size: 1.5rem !important;
  }
  
  /* Boutons */
  .btn,
  button,
  a[class*="px-"] {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }
}

/* ============================================
   CORRECTIONS TRÈS PETITS ÉCRANS
   ============================================ */

@media (max-width: 480px) {
  .container {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  
  h1 {
    font-size: 1.75rem !important;
  }
  
  h2 {
    font-size: 1.25rem !important;
  }
}

/* ============================================
   CORRECTIONS LIGHTHOUSE
   ============================================ */

/* Performance - Lazy loading */
img[loading="lazy"] {
  content-visibility: auto;
}

/* LCP - Prioriser les images importantes */
.hero-image,
.logo {
  content-visibility: visible;
}

/* Éviter les layout shifts */
img,
svg,
video {
  aspect-ratio: attr(width) / attr(height);
}