/* ========================================
   RESET ET STYLES GLOBAUX - DARK MODE FUTURISTE
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: #e0e0e0;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1a3e 50%, #0f1935 100%);
    background-attachment: fixed;
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(100, 200, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 100, 200, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

main, header, footer {
    position: relative;
    z-index: 1;
}

.container {
    max-width: 950px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ========================================
   TYPOGRAPHIE
   ======================================== */

h1, h2, h3 {
    font-weight: 700;
    margin-bottom: 1.2rem;
    text-align: center;
    color: #ffffff;
}

h1 {
    font-size: 2.2rem;
    line-height: 1.3;
}

h2 {
    font-size: 1.9rem;
    margin-top: 0;
}

h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #22dd77;
}

p {
    margin-bottom: 1.2rem;
    text-align: justify;
    font-size: 1.05rem;
    color: #b0b0b0;
}

strong {
    color: #22dd77;
    font-weight: 700;
}

a {
    color: #22dd77;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #44ff99;
    text-decoration: underline;
}

ul, ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

li {
    margin-bottom: 0.9rem;
    text-align: justify;
    line-height: 1.6;
    color: #b0b0b0;
}

/* ========================================
   HEADER AVEC VIDÉO
   ======================================== */

.header {
    background: linear-gradient(135deg, rgba(20, 30, 70, 0.9), rgba(40, 20, 70, 0.9));
    padding: 2rem 0 2rem 0;
    text-align: center;
    border-bottom: 2px solid;
    border-image: linear-gradient(90deg, #22dd77, #22dd77) 1;
    margin-bottom: 2rem;
    position: relative;
    overflow: visible;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(0, 212, 255, 0.1), transparent);
    pointer-events: none;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 500px;
    margin: 2rem auto;
    overflow: hidden;
    border-radius: 12px;
    border: 2px solid #22dd77;
    box-shadow: 0 0 30px rgba(34, 221, 119, 0.3);
    z-index: 2;
}

.youtube-video {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
}

.header-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.main-title {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.subtitle {
    font-size: 1.6rem;
    margin-bottom: 2rem;
    color: #ffffff;
    font-weight: 500;
}

/* ========================================
   CTA BUTTONS
   ======================================== */

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #22dd77, #11cc66);
    color: #000000 !important;
    padding: 1rem 2.2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    text-decoration: none !important;
    cursor: pointer;
    border: none;
    margin: 0.5rem;
    box-shadow: 0 0 20px rgba(34, 221, 119, 0.4);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #11cc66, #00bb55);
    transition: left 0.3s ease;
    z-index: -1;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 30px rgba(34, 221, 119, 0.6);
    color: #ffffff !important;
}

.cta-button:active {
    transform: translateY(-1px);
}

.cta-secondary {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.cta-large {
    font-size: 1.2rem;
    padding: 1.2rem 2.8rem;
    margin-top: 1.5rem;
}

/* ========================================
   MAIN CONTENT
   ======================================== */

.main-content {
    max-width: 950px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    margin-bottom: 3rem;
    padding: 2.5rem 2rem;
    background: rgba(30, 40, 80, 0.6);
    border-radius: 10px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    transition: all 0.3s ease;
}

section:hover {
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 8px 32px 0 rgba(0, 212, 255, 0.2);
}

section:last-of-type {
    margin-bottom: 0;
}

/* ========================================
   SECTION VÉHICULES
   ======================================== */

.vehicles-section h2 {
    margin-bottom: 2.5rem;
}

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

.vehicle-item {
    background: linear-gradient(135deg, rgba(40, 60, 120, 0.8), rgba(60, 40, 120, 0.8));
    padding: 2rem;
    border-left: 4px solid #00d4ff;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 212, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.vehicle-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vehicle-item:hover {
    box-shadow: 0 0 30px rgba(34, 221, 119, 0.3);
    transform: translateY(-10px);
    border-color: #22dd77;
    border-left-color: #22dd77;
}

.vehicle-item:hover::before {
    opacity: 1;
}

.vehicle-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: block;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.3));
}

.vehicle-item h3 {
    color: #22dd77;
    text-align: center;
    background: none;
    -webkit-text-fill-color: unset;
}

.vehicle-item p {
    text-align: center;
    margin-bottom: 0;
}

/* ========================================
   SECTION SERVICE
   ======================================== */

.service-section {
    background: linear-gradient(135deg, rgba(40, 60, 120, 0.6), rgba(60, 40, 120, 0.6)) !important;
}

.service-section h3 {
    margin-top: 2rem;
    margin-bottom: 1.5rem;
}

.benefits-list {
    list-style-type: none;
    margin-left: 0;
}

.benefits-list li {
    padding: 0.8rem 0 0.8rem 2rem;
    position: relative;
    text-align: left;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #22dd77;
    font-weight: bold;
    font-size: 1.2rem;
    text-shadow: 0 0 5px rgba(34, 221, 119, 0.5);
}

/* ========================================
   SECTION STATISTIQUES
   ======================================== */

.stats-section {
    background: linear-gradient(135deg, rgba(30, 50, 100, 0.6), rgba(50, 30, 100, 0.6)) !important;
}

.stat-quote {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(255, 0, 110, 0.1));
    padding: 2rem;
    border-left: 4px solid #22dd77;
    border-radius: 8px;
    font-style: italic;
    text-align: center;
    margin-bottom: 2rem;
    border: 1px solid rgba(34, 221, 119, 0.3);
    backdrop-filter: blur(10px);
}

.stat-quote p {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #e0e0e0;
}

.stat-quote footer {
    text-align: center;
    color: #22dd77;
    font-style: normal;
    font-weight: 500;
    font-size: 0.95rem;
}

/* ========================================
   SECTION ENVIRONNEMENT
   ======================================== */

.eco-section {
    background: linear-gradient(135deg, rgba(0, 80, 40, 0.6), rgba(0, 60, 60, 0.6)) !important;
    border-left: 4px solid #22dd77;
}

.eco-section h2 {
    color: #22dd77;
}

.eco-section h3 {
    color: #22dd77;
}

.eco-list {
    list-style-type: none;
    margin-left: 0;
}

.eco-list li {
    padding: 0.8rem 0 0.8rem 2rem;
    position: relative;
    text-align: left;
}

.eco-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #22dd77;
    font-weight: bold;
    font-size: 1.5rem;
    text-shadow: 0 0 5px rgba(34, 221, 119, 0.5);
}

/* ========================================
   SECTION PROCÉDURE
   ======================================== */

.procedure-section {
    background: linear-gradient(135deg, rgba(40, 60, 120, 0.6), rgba(60, 40, 120, 0.6)) !important;
}

.procedure-section h3 {
    margin-top: 2rem;
    margin-bottom: 1.5rem;
}

.procedure-steps {
    list-style: decimal;
    margin-left: 2rem;
}

.procedure-steps li {
    text-align: left;
    margin-bottom: 1rem;
    color: #b0b0b0;
}

.documents-list {
    list-style-type: none;
    margin-left: 0;
}

.documents-list li {
    padding: 0.8rem 0 0.8rem 2rem;
    position: relative;
    text-align: left;
}

.documents-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #22dd77;
    font-weight: bold;
    text-shadow: 0 0 5px rgba(34, 221, 119, 0.5);
}

/* ========================================
   SECTION CTA FINALE
   ======================================== */

.cta-final-section {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(255, 0, 110, 0.1)) !important;
    padding: 3rem 2rem;
    border-radius: 10px;
    text-align: center;
    border: 2px solid #22dd77;
    box-shadow: 0 0 40px rgba(34, 221, 119, 0.2);
}

.cta-final-section h2 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-final-section p {
    text-align: center;
    font-size: 1.05rem;
}

.phone-section {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 500;
    color: #e0e0e0;
}

.phone-button {
    display: inline-block;
    background: linear-gradient(135deg, #22dd77, #11cc66);
    color: #000000 !important;
    padding: 1.2rem 2.5rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none !important;
    cursor: pointer;
    border: none;
    margin-top: 1rem;
    box-shadow: 0 0 30px rgba(34, 221, 119, 0.4);
    position: relative;
    overflow: hidden;
}

.phone-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #11cc66, #00bb55);
    transition: left 0.3s ease;
    z-index: -1;
}

.phone-button:hover {
    transform: scale(1.08);
    box-shadow: 0 0 50px rgba(34, 221, 119, 0.6);
    color: #ffffff !important;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: linear-gradient(135deg, rgba(10, 10, 40, 0.95), rgba(20, 10, 50, 0.95));
    color: #b0b0b0;
    padding: 2.5rem 2rem;
    text-align: center;
    margin-top: 3rem;
    border-top: 2px solid;
    border-image: linear-gradient(90deg, #00d4ff, #ff006e, #00d4ff) 1;
}

.footer-content {
    max-width: 900px;
    margin: 0 auto;
}

.footer p {
    text-align: center;
    margin-bottom: 0.8rem;
}

.footer a {
    color: #22dd77;
}

.footer a:hover {
    color: #44ff99;
    text-shadow: 0 0 10px rgba(34, 221, 119, 0.5);
}

/* ========================================
   RESPONSIVE - TABLETTE
   ======================================== */

@media (max-width: 768px) {
    .main-title {
        font-size: 1.8rem;
    }

    .subtitle {
        font-size: 1.3rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    p {
        font-size: 1rem;
    }

    .vehicles-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .vehicle-item {
        padding: 1.5rem;
    }

    .video-container {
        padding: 1rem;
    }

    section {
        padding: 2rem 1.5rem;
    }

    .cta-button {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }

    .cta-large {
        width: 100%;
        max-width: 400px;
    }

    .phone-button {
        width: 100%;
        max-width: 400px;
        padding: 1rem 2rem;
    }
}

/* ========================================
   RESPONSIVE - MOBILE
   ======================================== */

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }

    .main-content {
        padding: 0 1rem;
    }

    .main-title {
        font-size: 1.4rem;
        line-height: 1.3;
    }

    .subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    h2 {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }

    h3 {
        font-size: 1.1rem;
    }

    p {
        font-size: 0.95rem;
        text-align: left;
        margin-bottom: 1rem;
    }

    .video-container {
        padding: 0;
        margin: 1rem auto 1.5rem;
        height: 300px;
    }

    section {
        padding: 1.5rem 1rem;
        margin-bottom: 2rem;
    }

    .vehicles-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .vehicle-item {
        padding: 1.2rem;
        text-align: left;
    }

    .vehicle-icon {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }

    .vehicle-item h3 {
        text-align: left;
    }

    .vehicle-item p {
        text-align: left;
    }

    .cta-button {
        display: block;
        width: 100%;
        padding: 0.85rem 1.5rem;
        margin: 0.5rem 0;
        font-size: 1rem;
        text-align: center;
    }

    .cta-large {
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
    }

    .phone-button {
        display: block;
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
        margin-top: 1rem;
    }

    ul, ol {
        margin-left: 1.5rem;
        margin-bottom: 1.2rem;
    }

    li {
        margin-bottom: 0.7rem;
        text-align: left;
    }

    .benefits-list li,
    .eco-list li,
    .documents-list li {
        text-align: left;
    }

    .vehicle-item:hover {
        transform: translateY(-5px);
    }

    .stat-quote {
        padding: 1.5rem;
    }

    .stat-quote p {
        font-size: 1rem;
    }

    .stat-quote footer {
        font-size: 0.9rem;
    }

    .cta-final-section {
        padding: 2rem 1rem;
    }

    .cta-final-section h2 {
        font-size: 1.4rem;
    }

    .footer {
        padding: 2rem 1rem;
    }

    .footer p {
        font-size: 0.9rem;
    }

    .header {
        padding: 1rem 0 2rem 0;
    }
}

/* ========================================
   UTILITAIRES
   ======================================== */

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

.text-left {
    text-align: left;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 2rem;
}

em {
    font-style: italic;
    color: #909090;
}

/* Scrollbar personnalisée */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: rgba(30, 40, 80, 0.6);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #22dd77, #11cc66);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #11cc66, #00bb55);
}
