/* Variables de couleurs */
:root {
    --primary: #0e4f2d;
    --secondary: #10b981;
    --dark: #1e293b;
    --light: #f8fafc;
    --white: #ffffff;
}

/* Reset de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background-color: var(--light);
    color: var(--dark);
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}

.text-center { text-align: center; }

/* Navigation */
.navbar {
    background: var(--white);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.flex-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--dark);
}

.logo span { color: var(--primary); }

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li a {
    text-decoration: none;
    color: var(--dark);
    margin-left: 25px;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links li a:hover { color: var(--primary); }

.btn-main {
    background: var(--primary);
    color: white !important;
    padding: 10px 20px;
    border-radius: 8px;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(30, 41, 59, 0.8), rgba(30, 41, 59, 0.8)), 
                url('https://images.unsplash.com/photo-1519003722824-194d4455a60c?auto=format&fit=crop&q=80&w=1200');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 120px 0;
    text-align: center;
}

.hero h1 { font-size: 3rem; margin-bottom: 20px; }
.hero p { font-size: 1.2rem; margin-bottom: 30px; opacity: 0.9; }

.cta-group { display: flex; justify-content: center; gap: 15px; }

.btn-primary {
    background: var(--primary);
    color: white;
    padding: 15px 35px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
}

.btn-outline {
    border: 2px solid var(--white);
    color: white;
    padding: 15px 35px;
    border-radius: 10px;
    text-decoration: none;
}

/* Services */
.services { padding: 80px 0; }
.section-title { margin-bottom: 50px; font-size: 2rem; }

.grid-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.card:hover { transform: translateY(-10px); }

.card .icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.price {
    display: block;
    margin-top: 20px;
    font-weight: bold;
    color: var(--secondary);
}

/* Process Steps */
.process { background: #e2e8f0; padding: 80px 0; }
.steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.step { flex: 1; min-width: 200px; position: relative; }

.number {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-weight: bold;
}

/* Responsive Mobile */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero h1 { font-size: 2rem; }
    .cta-group { flex-direction: column; }
}
/* Footer Styles */
.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 0 20px 0;
    margin-top: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.main-footer .logo {
    color: #fff;
    margin-bottom: 20px;
}

.footer-about p {
    color: #b3b3b3;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-links h4, .footer-contact h4 {
    color: #fff;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links ul, .footer-contact ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li, .footer-contact ul li {
    margin-bottom: 12px;
    color: #b3b3b3;
    font-size: 0.9rem;
}

.footer-links ul li a {
    color: #b3b3b3;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links ul li a:hover {
    color: var(--accent-color, #ff6600);
    padding-left: 5px;
}

.footer-contact i {
    color: var(--accent-color, #ff6600);
    margin-right: 10px;
}

.social-icons {
    margin-top: 20px;
}

.social-icons a {
    color: #fff;
    font-size: 1.2rem;
    margin-right: 15px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: var(--accent-color, #ff6600);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    font-size: 0.8rem;
    color: #777;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
        display: flex;
    }
}
/* --- Styles Page À Propos --- */

.page-header {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1350');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 0;
}

.section-padding { padding: 80px 0; }

.grid-about {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.stats-mini {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.stat-item span {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #ff6600; /* Votre couleur orange */
}

/* Grille engagements */
.commitments {
    background-color: #f9f9f9;
    padding: 80px 0;
}

.grid-commitments {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.commit-card {
    background: white;
    padding: 40px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.commit-card i {
    font-size: 3rem;
    color: #003366; /* Votre couleur bleu */
    margin-bottom: 20px;
}

/* Mobile */
@media (max-width: 768px) {
    .grid-about { grid-template-columns: 1fr; }
}