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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #fff;
    background: linear-gradient(180deg, #000000 0%, #001a33 50%, #0066cc 100%);
    min-height: 100vh;
}

/* En-tête */
header {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

header h1 {
    font-size: 3.5em;
    font-weight: bold;
    letter-spacing: 3px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.tagline {
    font-size: 1.1em;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section hero */
.hero {
    background-color: transparent;
    padding: 30px 0 0 0;
    overflow: hidden;
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.hero-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Bandeau d'alerte */
.alert-banner {
    background: linear-gradient(135deg, #ff3333 0%, #ff6600 100%);
    padding: 20px;
    margin: 30px auto;
    max-width: 1000px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(255, 51, 51, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

.alert-content {
    color: white;
    font-size: 1.8em;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.quote-banner {
    background: linear-gradient(135deg, #28a745 0%, #218838 100%);
    padding: 20px;
    margin: 30px auto;
    max-width: 1000px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(40, 167, 69, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

.quote-content {
    color: white;
    font-size: 1.8em;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Animation spécifique */
@keyframes pulse-green {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.03);
    }
}

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

/* Container principal */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Sections */
section {
    margin: 50px auto;
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    max-width: 1000px;
}

h2 {
    color: #000;
    font-size: 2.5em;
    margin-bottom: 30px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 4px solid #e74c3c;
    padding-bottom: 15px;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.service-icon {
    font-size: 3em;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.service-card p {
    font-size: 1em;
    line-height: 1.6;
}

/* Avantages */
.benefits-list {
    display: grid;
    gap: 20px;
    margin-top: 30px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 5px solid #0066cc;
    transition: background 0.3s ease;
}

.benefit-item:hover {
    background: #e3f2fd;
}

.checkmark {
    font-size: 2em;
    color: #0066cc;
    font-weight: bold;
    min-width: 40px;
}

.benefit-text h4 {
    color: #000;
    font-size: 1.3em;
    margin-bottom: 5px;
}

.benefit-text p {
    color: #333;
    font-size: 1em;
}

/* Localisation */
.location-box {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    border-radius: 10px;
}

.location-icon {
    font-size: 4em;
    margin-bottom: 20px;
}

.location-box p {
    font-size: 1.3em;
    margin-bottom: 10px;
}

.location-subtitle {
    font-size: 1.1em;
    opacity: 0.9;
}

/* Pied de page */
footer {
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 50px 20px 30px;
    margin-top: 50px;
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.contact-info {
    margin-bottom: 30px;
}

.contact-info h3 {
    font-size: 1.8em;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.phone {
    font-size: 2em;
    font-weight: bold;
    color: #0066cc;
    margin-top: 15px;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    margin-top: 20px;
}

.footer-bottom p {
    font-size: 0.9em;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    header h1 {
        font-size: 2.5em;
    }

    .tagline {
        font-size: 0.9em;
    }

    .hero-image {
        height: 250px;
    }

    section {
        padding: 25px;
    }

    h2 {
        font-size: 1.8em;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .phone {
        font-size: 1.5em;
    }
}


