/* IMPORTER LES COULEURS DYNAMIQUES */
@import url('colors.css');

/* ==========================================
   RESPONSIVE DESIGN - Configuration de base
   ========================================== */

/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

html, body {
    height: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #333;
    line-height: 1.6;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Responsive images par défaut */
img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

main {
    flex: 1;
    padding-top: 76px;
}

/* ADMIN PAGES */
main .admin-container {
    background: linear-gradient(135deg, #FFB6D9 0%, #FFC9E3 100%);
    min-height: calc(100vh - 100px);
}

/* HEADER */
.header {
    background: #1a1a1a;
    border-bottom: none;
    padding: 12px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 100;
    box-shadow: none;
    transition: all 0.3s ease-in-out;
}

.header.show {
    background: #1a1a1a;
    border-bottom: 1px solid #333;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: bold;
    color: white;
    min-width: 200px;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s;
}

.logo-link:hover {
    opacity: 0.8;
}

.logo-img {
    height: 52px;
    width: auto;
    display: block;
}

.nav {
    display: flex;
    gap: 30px;
    flex: 1;
}

.nav-link {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--color-primary);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #fff;
    font-weight: 500;
}

.btn-prendre-rdv {
    background: var(--color-primary);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-prendre-rdv:hover {
    background: var(--color-secondary);
}

.header.show .btn-prendre-rdv {
    background: #FF006E;
}

.header.show .btn-prendre-rdv:hover {
    background: #E80063;
}

.btn-login {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 8px 20px;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    margin-left: auto;
    margin-right: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-login:hover {
    background: white;
    color: #FF006E;
}

.user-menu {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: auto;
    margin-right: 20px;
}

.user-icon {
    font-size: 18px;
}

.user-name {
    color: white;
    font-size: 14px;
    font-weight: 500;
}

.btn-admin-header {
    background-color: var(--color-primary);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.btn-admin-header:hover {
    background-color: var(--color-secondary);
    transform: scale(1.05);
}

.btn-logout {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-logout:hover {
    background: white;
    color: var(--color-primary);
}

/* HERO SECTION */
.hero {
    background: linear-gradient(to right, rgba(255, 0, 110, 0.9) 0%, rgba(255, 0, 110, 0.7) 50%, rgba(232, 0, 99, 0.5) 100%), url('../images/accueil.png') center/cover no-repeat;
    background-attachment: fixed;
    color: white;
    padding: 60px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    position: relative;
    min-height: 700px;
}

.hero::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    right: 0;
    height: 15px;
    background: #1a1a1a;
    z-index: 3;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.15) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    flex: 0 1 auto;
    max-width: 700px;
    position: relative;
    z-index: 2;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    min-height: 420px;
    padding-bottom: 8px;
}

.hero h1 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.2;
}

.hero-promo {
    font-size: 36px;
    color: var(--color-accent);
    font-weight: 700;
    margin-bottom: 15px;
}

.hero > div:first-child > p {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-prendre-rdv-hero {
    background: white;
    color: #FF006E;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 30px;
    font-size: 14px;
    transition: all 0.3s;
}

.btn-prendre-rdv-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.hero-mini-images {
    position: absolute;
    left: 50%;
    bottom: 12px;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    z-index: 5;
}

.hero-mini-image {
    width: 170px;
    height: 170px;
    object-fit: contain;
    animation: heroMiniFloat 4.2s ease-in-out infinite;
    will-change: transform;
}

.hero-mini-image:nth-child(2) {
    animation-delay: 0.45s;
}

.hero-mini-image:nth-child(3) {
    animation-delay: 0.9s;
}

@keyframes heroMiniFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.hero-features {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.feature-icon {
    width: 24px;
    height: 24px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.hero-gifts {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 350px;
    pointer-events: none;
    z-index: 2;
}

.hero-car {
    position: absolute;
    bottom: -85px;
    left: 0;
    width: 450px;
    height: auto;
    object-fit: contain;
    z-index: 4;
}

.hero-main {
    position: absolute;
    bottom: -50px;
    right: -30px;
    width: 500px;
    height: auto;
    object-fit: contain;
    z-index: 3;
}

/* VEHICULE SECTION */
.vehicule-section {
    background: transparent;
    color: #1a1a1a;
    padding: 60px 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: auto;
}

.vehicule-section > .container {
    background: linear-gradient(90deg, rgba(209, 0, 111, 0.92) 0%, rgba(122, 53, 255, 0.92) 100%);
    padding: 60px 40px;
    border-radius: 20px;
    max-width: 100%;
    color: white;
    box-shadow: 0 10px 30px rgba(255, 0, 110, 0.2);
    transition: all 0.3s ease;
}

.vehicule-section h3 {
    font-size: 28px;
    margin-bottom: 50px;
    color: white;
    font-weight: 600;
}

.vehicule-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: none;
    margin: 0 auto 50px;
}

.vehicule-card {
    background: #f5f5f5;
    padding: 20px 15px;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid #000000;
    color: #1a1a1a;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.vehicule-card:hover {
    background: rgba(255,255,255,0.95);
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.vehicule-card.active {
    background: #f5f5f5;
    color: #1a1a1a;
    border: 3px solid #000000;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    position: relative;
}

.vehicule-card.active::after {
    content: '✓';
    position: absolute;
    top: 10px;
    left: 10px;
    width: 28px;
    height: 28px;
    background: #FF006E;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
}

.vehicule-card img {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    display: block;
    object-fit: contain;
    flex-shrink: 0;
}

.vehicule-card[data-type="pare-brise"] img {
    margin-left: 0;
    margin-right: auto;
    transform: translateX(-20px);
}

.vehicule-card[data-type="leve-toles"] img {
    margin-left: auto;
    margin-right: 0;
    transform: translateX(20px);
}

.vehicule-card[data-type="vitre-laterale"] img {
    margin-left: 0;
    margin-right: auto;
    transform: translateX(20px);
}

.vehicule-card p {
    font-weight: bold;
    font-size: 14px;
}

.vehicule-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 30px;
}

.btn-passer {
    background: white;
    color: #FF006E;
    border: none;
    padding: 10px 30px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-passer:hover {
    opacity: 0.9;
}

.btn-appuyer {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 10px 30px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-appuyer:hover {
    background: white;
    color: #FF006E;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: white;
    transition: width 0.3s;
}

/* NOM FORM STYLING */
.nom-form {
    margin: 40px 0;
    display: flex;
    justify-content: center;
}

.input-nom {
    width: 100%;
    max-width: 400px;
    padding: 15px 20px;
    border: none;
    border-bottom: 2px solid white;
    background: transparent;
    font-size: 18px;
    color: white;
    text-align: center;
    font-weight: 500;
    letter-spacing: 2px;
    outline: none;
    transition: border-color 0.3s ease;
}

.input-nom::placeholder {
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1px;
}

.input-nom:focus {
    border-bottom-color: rgba(255, 255, 255, 0.9);
}

/* IMMATRICULATION FORM STYLING */
.immatriculation-form {
    margin: 40px 0;
    display: flex;
    justify-content: center;
}

.input-immatriculation {
    width: 100%;
    max-width: 400px;
    padding: 15px 20px;
    border: none;
    border-bottom: 2px solid white;
    background: transparent;
    font-size: 18px;
    color: white;
    text-align: center;
    font-weight: 500;
    letter-spacing: 2px;
    outline: none;
    transition: border-color 0.3s ease;
}

.input-immatriculation::placeholder {
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1px;
}

.input-immatriculation:focus {
    border-bottom-color: rgba(255, 255, 255, 0.9);
}

/* OFFRES SECTION */
.offres-section {
    padding: 80px 20px;
    text-align: center;
}

.offres-section h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 10px;
    font-weight: 700;
}

.offres-desktop-title,
.offres-desktop-title strong,
.offres-desktop-subtitle {
    color: #ffffff !important;
}

.offres-section > .container > p {
    font-size: 20px;
    color: #333;
    margin-bottom: 40px;
    font-weight: 500;
}

.offres-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.offre-card {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    transition: all 0.3s;
}

.offre-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(29, 181, 132, 0.15);
}

.offre-card h4 {
    font-size: 18px;
    color: #FF006E;
    margin-bottom: 15px;
}

.offre-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* AVANTAGES SECTION */
.avantages-section {
    padding: 80px 20px;
    text-align: center;
    background: #f9f9f9;
}

.avantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.avantage-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.avantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.avantage-icon {
    width: 70px;
    height: 70px;
    background: #FF006E;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
    margin: 0 auto 20px;
    transition: all 0.3s;
}

.avantage-card:nth-child(2) .avantage-icon,
.avantage-card:nth-child(4) .avantage-icon {
    background: #000000;
}

.avantage-card h4 {
    font-size: 18px;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 600;
}

.avantage-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* LOI HAMON SECTION */
.loi-hamon-section {
    background: #2a2a2a;
    color: white;
    padding: 80px 20px;
}

.loi-hamon-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.loi-hamon-label {
    font-size: 14px;
    color: #FF006E;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.loi-hamon-text h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.loi-hamon-text h2 span {
    color: #FF006E;
}

.loi-hamon-description {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 30px;
    line-height: 1.6;
}

.loi-hamon-list {
    list-style: none;
    margin-bottom: 30px;
}

.loi-hamon-list li {
    font-size: 16px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.loi-hamon-list .checkmark {
    color: #FF006E;
    font-weight: bold;
    font-size: 18px;
}

.btn-loi-hamon {
    background: #FF006E;
    color: white;
    border: none;
    padding: 14px 35px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-loi-hamon:hover {
    background: #E80063;
    transform: translateY(-2px);
}

.loi-hamon-image {
    text-align: center;
    overflow: hidden;
    border-radius: 20px;
    margin-top: 40px;
    background: #a1919100;
}

.loi-hamon-image img {
    width: 100%;
    max-width: 560px;
    height: 480px;
    box-shadow: 0 10px 30px rgba(255, 0, 110, 0.3);
    object-fit: cover;
    object-position: center top;
    transform: translateY(12px) scale(0.65);
    transform-origin: center top;
}

.btn-login {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 8px 20px;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    margin-right: 20px;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background: white;
    color: #FF006E;
}

/* OFFRE PROMO SECTION */
.offre-promo-section {
    background: #ffffff;
    padding: 80px 20px;
}

.offre-promo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.offre-promo-image {
    text-align: center;
}

.offre-promo-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.offre-type {
    font-size: 14px;
    color: #999;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.offre-promo-text h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.offre-promo-text h2 span {
    display: block;
    color: #1a1a1a;
    font-size: 28px;
}

.offre-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.offre-promo-list {
    list-style: none;
    margin-bottom: 30px;
}

.offre-promo-list li {
    font-size: 16px;
    color: #1a1a1a;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.offre-checkmark {
    color: #FF006E;
    font-weight: bold;
    font-size: 18px;
}

.btn-offre-promo {
    background: #FF006E;
    color: white;
    border: none;
    padding: 14px 35px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-offre-promo:hover {
    background: #E80063;
    transform: translateY(-2px);
}

/* AVIS CLIENTS SECTION */
.avis-clients-section {
    background: #f9f9f9;
    padding: 80px 20px;
    text-align: center;
}

.avis-header {
    margin-bottom: 60px;
}

.avis-subtitle {
    font-size: 14px;
    color: #999;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.avis-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #FF006E;
    margin-bottom: 20px;
}

.avis-header h2 span {
    color: inherit;
}

.avis-description {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto 20px;
    line-height: 1.6;
}

.avis-source {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
}

.avis-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.avis-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.avis-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.avis-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 120px;
}

.avis-stars {
    color: #FF006E;
    font-size: 16px;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.avis-name {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.avis-vehicle {
    font-size: 13px;
    color: #999;
}

.avis-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.avis-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s;
}

.avis-dot.active {
    background: #FF006E;
    width: 30px;
    border-radius: 5px;
}

.avis-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.avis-prev,
.avis-next {
    background: #FF006E;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avis-prev:hover,
.avis-next:hover {
    background: #E80063;
    transform: scale(1.1);
}

.avis-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
}

/* FAQ SECTION */
.faq-section {
    background: #FF006E;
    padding: 80px 20px;
    color: white;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-subtitle {
    font-size: 14px;
    color: white;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.faq-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.faq-header h2 span {
    color: white;
}

.faq-description {
    font-size: 16px;
    color: white;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: white;
    border: none;
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.faq-question:hover {
    background: #f5f5f5;
}

.faq-icon {
    font-size: 12px;
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 20px;
    background: white;
    color: #1a1a1a;
    font-size: 14px;
    line-height: 1.6;
}

/* FOOTER */
.footer {
    background: #333;
    color: white;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    width: 100%;
    z-index: 999;
}

.footer p {
    font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        flex-wrap: wrap;
        gap: 15px;
    }

    .nav {
        order: 3;
        flex-basis: 100%;
        gap: 15px;
        font-size: 14px;
    }
    
    .header-right {
        flex-wrap: wrap;
        gap: 10px;
    }

    .hero {
        flex-direction: column;
        padding: 40px 20px;
        min-height: auto;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero h2 {
        font-size: 28px;
    }

    .hero-promo {
        font-size: 28px;
    }

    .hero-gifts {
        position: static;
        width: 100%;
        height: auto;
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 20px;
    }

    .hero-car {
        width: 150px;
        position: relative;
        bottom: 0;
    }

    .hero-gift {
        width: 70px;
    }
    
    .hero-mini-images {
        max-width: 100%;
        display: flex;
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .hero-mini-image {
        max-width: 60px;
        height: auto;
    }
    
    /* Sections */
    .vehicule-section {
        padding: 30px 15px;
    }
    
    .vehicule-options {
        gap: 15px;
    }
    
    .vehicule-card {
        padding: 20px 15px;
        font-size: 13px;
    }
    
    .vehicule-card img {
        max-width: 80px;
        height: auto;
    }
    
    /* Grilles et cartes */
    .cards-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    /* Images */
    img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 768px) and (min-width: 481px) {
    .hero-mini-image {
        width: 74px;
        height: 74px;
    }

    .hero-mini-images {
        width: min(300px, 80vw);
        justify-content: center;
        gap: 6px;
        bottom: 18px;
    }

    .vehicule-options {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .vehicule-section > .container {
        padding: 40px 20px;
    }

    .vehicule-card {
        padding: 25px 15px;
        min-height: 200px;
    }

    .vehicule-card img {
        width: 100px;
        height: 100px;
    }

    .vehicule-card p {
        font-size: 12px;
    }

    .offres-section h2 {
        font-size: 28px;
    }
}

/* ==========================================
   CTA SECTION
   ========================================== */
.cta-section {
    background-color: white;
    padding: 80px 20px;
    text-align: center;
    color: #1a1a1a;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-label {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #1a1a1a;
    opacity: 0.9;
    margin-bottom: 15px;
}

.cta-section h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
    color: #1a1a1a;
}

.cta-section h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1a1a1a;
    opacity: 0.95;
}

.cta-description {
    font-size: 16px;
    margin-bottom: 40px;
    line-height: 1.6;
    color: #1a1a1a;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-rdv,
.btn-cta-phone {
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-cta-rdv {
    background-color: #FF006E;
    color: white;
    box-shadow: 0 10px 30px rgba(255, 0, 110, 0.3);
}

.btn-cta-rdv:hover {
    background-color: #E80063;
    box-shadow: 0 15px 40px rgba(255, 0, 110, 0.4);
    transform: translateY(-2px);
}

.btn-cta-phone {
    background-color: #FF006E;
    color: white;
    box-shadow: 0 10px 30px rgba(255, 0, 110, 0.3);
}

.btn-cta-phone:hover {
    background-color: #E80063;
    box-shadow: 0 15px 40px rgba(255, 0, 110, 0.4);
    transform: translateY(-2px);
}

/* ==========================================
   FOOTER SECTION
   ========================================== */
.footer-section {
    background-color: #1a1a1a;
    color: #f9f9f9;
    padding: 60px 20px 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    max-width: 150px;
    height: auto;
}

.footer-locations {
    font-size: 14px;
    line-height: 1.8;
    opacity: 0.8;
    margin: 0;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #FF006E;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 15px;
    opacity: 0.85;
}

.footer-column a {
    color: #FFFFFF;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-column a:hover {
    opacity: 0.8;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-btn {
    display: inline-block;
    padding: 12px 20px;
    background-color: #FF006E;
    color: #FFFFFF;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    font-size: 14px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.social-btn:hover {
    background-color: #E80063;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 0, 110, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    margin: 0;
    opacity: 0.7;
}

.footer-bottom a {
    color: #FF006E;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-bottom a:hover {
    opacity: 0.8;
}

/* ==========================================
   RESPONSIVE - CTA & FOOTER
   ========================================== */
@media (max-width: 768px) {
    .cta-section {
        padding: 50px 20px;
    }

    .cta-section h2 {
        font-size: 32px;
    }

    .cta-section h3 {
        font-size: 18px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn-cta-rdv,
    .btn-cta-phone {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-social {
        flex-direction: row;
        gap: 10px;
    }

    .social-btn {
        flex: 1;
        padding: 10px 15px;
        font-size: 12px;
    }
}

/* CADEAUX SECTION */
.cadeaux-section {
    background: #2a2a2a;
    padding: 80px 20px;
    text-align: center;
}

.cadeaux-container {
    max-width: 1000px;
    margin: 0 auto;
    background: #FF006E;
    padding: 60px 40px;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(255, 0, 110, 0.3);
}

.cadeaux-container h2 {
    font-size: 36px;
    color: white;
    font-weight: 700;
    margin-bottom: 15px;
}

.cadeaux-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 50px;
}

.cadeaux-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 25px;
    max-width: 850px;
    margin: 0 auto;
}

.cadeau-item {
    background: white;
    padding: 20px;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 150px;
}

.cadeau-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.cadeau-item img {
    width: 80%;
    height: auto;
    max-height: 100px;
    object-fit: contain;
    margin-bottom: 12px;
}

.cadeau-item p {
    font-size: 12px;
    color: #1a1a1a;
    font-weight: 600;
    text-align: center;
}

@media (max-width: 768px) {
    .cadeaux-container {
        padding: 40px 20px;
    }

    .cadeaux-container h2 {
        font-size: 28px;
    }

    .cadeaux-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 15px;
    }

    .cadeau-item {
        min-height: 130px;
        padding: 15px;
    }
}
/* RESPONSIVE MOBILE - Ajustements pour petits écrans */
@media (max-width: 480px) {
    /* Force responsive sur TOUTES les images */
    * img,
    img {
        max-width: 100% !important;
        width: auto !important;
        height: auto !important;
        object-fit: contain !important;
        display: block;
    }
    
    /* HTML & Body */
    html, body {
        font-size: 14px;
    }
    
    /* Header */
    .header {
        position: relative;
        top: 0;
    }
    
    .header-content {
        flex-direction: column;
        gap: 10px;
        padding: 10px 0;
    }
    
    .logo-img {
        height: 40px;
        width: auto;
    }
    
    .nav {
        gap: 15px;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        order: unset;
        flex-basis: unset;
    }
    
    .nav-link {
        font-size: 13px;
        padding: 5px 10px;
    }
    
    .header-right {
        flex-direction: row;
        gap: 10px;
        align-items: center;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .phone {
        font-size: 12px;
        gap: 5px;
    }
    
    .btn-prendre-rdv {
        padding: 8px 16px;
        font-size: 12px;
        white-space: nowrap;
    }
    
    .btn-login {
        margin-left: auto;
        margin-right: auto;
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .user-menu {
        gap: 10px;
        margin: 0;
    }
    
    /* Hero */
    .hero {
        flex-direction: column;
        padding: 20px 15px;
        min-height: auto;
        background-size: cover;
    }
    
    .hero h1 {
        font-size: 22px;
        line-height: 1.3;
    }
    
    .hero h2 {
        font-size: 24px;
        line-height: 1.3;
    }
    
    .hero p {
        font-size: 14px;
    }
    
    .btn-prendre-rdv-hero {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .hero-mini-images {
        max-width: 100%;
        width: 100%;
        display: flex;
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
        margin: 15px 0;
    }
    
    .hero-mini-image {
        max-width: 50px;
        height: auto;
        object-fit: contain;
    }
    
    .hero-gifts {
        position: static;
        width: 100%;
        height: auto;
        display: flex;
        justify-content: center;
        align-items: flex-end;
        gap: 20px;
        margin-top: 20px;
    }
    
    .hero-car {
        width: 100px;
        position: relative;
        bottom: 0;
    }
    
    .hero-main {
        width: 80px;
        position: relative;
        bottom: 0;
    }
    
    .hero-gift {
        width: 50px;
        height: auto;
    }
    
    /* Container */
    .container {
        max-width: 100%;
        padding: 0 10px;
        width: 100%;
        overflow: hidden;
    }
    
    /* Sections */
    .vehicule-section {
        padding: 20px 15px;
        overflow: hidden;
    }
    
    .vehicule-section h3 {
        font-size: 18px;
    }
    
    .vehicule-options {
        gap: 10px;
    }
    
    .vehicule-card {
        padding: 15px;
        font-size: 12px;
    }
    
    .vehicule-card img {
        max-width: 60px;
        height: auto;
    }
    
    /* Grilles */
    .cards-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* Images générales */
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Formulaires */
    input, select, textarea {
        font-size: 16px !important; /* Empêche le zoom du mobile */
        padding: 12px;
    }
    
    .btn-passer {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    /* Modales */
    .modal-content {
        width: 95vw;
        max-height: 90vh;
        padding: 15px;
        font-size: 13px;
    }
    
    .modal-content h2 {
        font-size: 18px;
    }
    
    .modal-content p {
        font-size: 13px;
    }
    
    /* Boutons */
    button {
        min-height: 44px; /* Taille tactile minimale */
    }
    
    /* Sections contenu */
    h1 {
        font-size: 24px;
    }
    
    h2 {
        font-size: 20px;
    }
    
    h3 {
        font-size: 16px;
    }
    
    /* Admin */
    .appointment-card {
        padding: 15px;
        border-radius: 8px;
    }
    
    .card-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .card-content {
        gap: 10px;
    }
    
    /* Tableau mobile */
    table {
        font-size: 12px;
    }
    
    td, th {
        padding: 8px 5px;
    }
    /* Steps */
    #step-2, #step-3, #step-4, #step-5 {
        height: auto;
        min-height: 400px;
        padding: 20px 15px;
    }
    
    .vehicule-options {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .vehicule-card img {
        max-width: 80px;
    }
    
    .vehicule-card p {
        font-size: 12px;
    }
    
    .input-immatriculation,
    .input-nom,
    .input-telephone,
    .input-email {
        max-width: 100% !important;
        width: 90%;
        font-size: 16px;
        padding: 12px 10px;
    }
    
    /* Offres Section */
    .offre-promo-content {
        flex-direction: column;
    }
    
    .offre-promo-image img {
        max-width: 100%;
    }
    
    .offre-promo-text {
        padding: 20px 15px;
    }
    
    .offre-promo-text h2 {
        font-size: 24px;
    }
    
    /* Buttons */
    .btn-offre-promo,
    .btn-cta-rdv,
    .social-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    /* CTA Section */
    .cta-section {
        padding: 30px 15px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-content h3 {
        font-size: 18px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-social {
        flex-direction: row;
        justify-content: center;
        gap: 10px;
    }
    
    .social-btn {
        width: 100%;
        max-width: 150px;
    }
    
    /* FAQ */
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    /* Avis */
    .avis-grid {
        grid-template-columns: 1fr;
    }
    
    /* Loi Hamon */
    .loi-hamon-content {
        flex-direction: column;
    }
    
    .loi-hamon-text {
        text-align: center;
    }
    
    .loi-hamon-image {
        width: 100%;
    }
    
    /* Container */
    .container {
        padding: 0 15px;
    }
    
    /* Text sizing */
    h1 { font-size: 20px; }
    h2 { font-size: 22px; }
    h3 { font-size: 18px; }
    h4 { font-size: 16px; }
    p { font-size: 14px; }
}

@media (max-width: 768px) and (min-width: 481px) {
    /* Tablettes */
    .hero h1 {
        font-size: 28px;
    }
    
    .hero h2 {
        font-size: 32px;
    }
    
    .offre-promo-content {
        flex-direction: column;
    }
    
    .vehicule-options {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==========================================
   RESPONSIVE DESIGN AMÉLIORÉ - Tous les appareils
   ========================================== */

/* TRÈS PETITS ÉCRANS (< 320px - Vieux téléphones) */
@media (max-width: 320px) {
    body {
        font-size: 14px;
    }
    
    h1 { font-size: 16px !important; }
    h2 { font-size: 14px !important; }
    h3 { font-size: 13px !important; }
    
    .container {
        padding: 0 10px;
    }
    
    button, .btn-prendre-rdv, .btn-login {
        min-height: 44px; /* Accessible touch target */
    }
}

/* Footer: centrer logo + texte seulement sur téléphone */
@media (max-width: 768px) {
    .footer-grid .footer-column:first-child {
        align-items: center;
        text-align: center;
    }
}

/* PETITS ÉCRANS (320px - 480px - Téléphones) */
@media (max-width: 480px) {
    /* Typographie fluide */
    h1 { font-size: clamp(18px, 5vw, 28px); }
    h2 { font-size: clamp(16px, 4vw, 24px); }
    h3 { font-size: clamp(14px, 3.5vw, 18px); }
    h4 { font-size: clamp(13px, 3vw, 16px); }
    p, span { font-size: clamp(13px, 2.5vw, 16px); }
    
    .container {
        padding: 0 12px;
    }
    
    /* Images responsive */
    img, picture {
        width: 100%;
        height: auto;
    }
    
    /* Boutons accessibles */
    button, a.btn, .btn-prendre-rdv, .btn-login, .btn-card-action {
        min-height: 44px;
        padding: 12px 16px !important;
        font-size: 14px;
    }
    
    /* Formulaires */
    input, textarea, select {
        min-height: 44px;
        font-size: 16px; /* Évite le zoom automatique */
        padding: 12px;
    }
    
    /* Espacement */
    section {
        padding: 20px 12px;
    }
    
    .card, .vehicule-card {
        padding: 15px !important;
    }
    
    /* Navigation */
    .nav {
        flex-direction: row;
        gap: 10px;
    }
    
    .nav-link {
        padding: 8px 12px;
    }
}

/* ÉCRANS MOYENS (481px - 768px - Tablettes petites) */
@media (min-width: 481px) and (max-width: 768px) {
    /* Typographie fluide */
    h1 { font-size: clamp(24px, 5vw, 32px); }
    h2 { font-size: clamp(20px, 4vw, 28px); }
    h3 { font-size: clamp(16px, 3.5vw, 22px); }
    
    .container {
        padding: 0 20px;
        max-width: 100%;
    }
    
    /* Grilles responsives */
    .cards-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 16px;
    }
    
    .vehicule-options {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    /* Images */
    img, picture {
        max-width: 100%;
        height: auto;
    }
    
    /* Espacements */
    section {
        padding: 30px 20px;
    }
    
    .card, .vehicule-card {
        padding: 20px;
    }
    
    /* Formulaires */
    input, textarea, select {
        font-size: 16px;
        padding: 12px;
    }
}

/* ÉCRANS NORMAUX (769px - 1024px - Tablettes grandes, Petits ordinateurs) */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        max-width: 95%;
        padding: 0 20px;
    }
    
    .cards-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .vehicule-options {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    section {
        padding: 40px 20px;
    }
}

/* GRANDS ÉCRANS (1025px - 1440px - Ordinateurs) */
@media (min-width: 1025px) and (max-width: 1440px) {
    .container {
        max-width: 1200px;
    }
    
    .cards-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

/* TRÈS GRANDS ÉCRANS (> 1440px - Grands moniteurs, TV) */
@media (min-width: 1441px) {
    .container {
        max-width: 1400px;
        padding: 0 40px;
    }
    
    body {
        font-size: 17px;
    }
    
    h1 { font-size: 42px; }
    h2 { font-size: 36px; }
    
    .cards-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ==========================================
   AMÉLIORATION UNIVERSELLE DES IMAGES
   ========================================== */
picture {
    display: block;
    max-width: 100%;
}

picture img {
    width: 100%;
    height: auto;
    display: block;
}

/* Lazy loading pour les images */
img[loading="lazy"] {
    background-color: #f0f0f0;
}

/* ==========================================
   AMÉLIORATION UNIVERSELLE DES FORMULAIRES
   ========================================== */
input, textarea, select {
    max-width: 100%;
    font-size: 16px; /* Crucial pour mobile: empêche le zoom */
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
}

textarea {
    resize: vertical;
    min-height: 100px;
}

select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 18px;
    padding-right: 36px;
}

/* ==========================================
   AMÉLIORATION UNIVERSELLE DES BOUTONS
   ========================================== */
button, a.btn, input[type="button"], input[type="submit"] {
    cursor: pointer;
    font-size: inherit;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    min-height: 44px; /* Accessible touch target */
    min-width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

button:active, a.btn:active {
    transform: scale(0.98);
}

button:focus, input:focus, select:focus, textarea:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* ==========================================
   OPTIMISATIONS DE PERFORMANCE RESPONSIVE
   ========================================== */

/* Réduire les animations sur les petits écrans */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Mode sombre (optionnel) */
@media (prefers-color-scheme: dark) {
    body {
        background: #1a1a1a;
        color: #f0f0f0;
    }
    
    input, textarea, select {
        background: #333;
        color: #f0f0f0;
        border-color: #555;
    }
}