
    :root {
            --primary: #315b7c;    /* Votre Bleu */
            --blue:#6699c1;
            --accent: #c89f02;     /* Votre Or */
            --bg-light: #f8f9fa;
            --text-dark: #2d3436;
            --white: #ffffff;
            --shadow: 0 10px 30px rgba(0,0,0,0.08);
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }
    body { font-family: 'Montserrat', sans-serif; color: var(--text-dark); background-color: var(--white); line-height: 1.6; scroll-behavior: smooth; }

    body {
        padding-top: 80px; /* À ajuster selon la hauteur de votre header */
    }

        /* --- NAVIGATION --- */


/* --- HEADER GLOBAL --- */
.header-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    padding: 15px 5%;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 2000;
    box-sizing: border-box;
    transition: all 0.4s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* État au scroll (Activé par JS) */
.header-navigation.scrolled {
    height: 65px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

/* --- LOGO --- */
.logo-box h1 {
    margin: 0;
    font-size: 1.6rem;
    font-weight: 800;
    color: #315b7c;
}
.logo-box span { color: #c89f02; }

/* --- MENU (DESKTOP) --- */
.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover { color: #c89f02; }

/* --- BOUTONS --- */
.btn-header {
    background: var(--accent);
    color: #fff !important;
    padding: 10px 22px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-header:hover { background: #c89f02; }

/* --- HAMBURGER --- */
.hamburger {
    display: none; /* Masqué sur PC */
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    border: none;
    background: none;
    padding: 5px;
    z-index: 2100;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--accent);
    border-radius: 3px;
    transition: 0.3s;
}

/* --- RESPONSIVE MOBILE (Max 992px) --- */
@media (max-width: 992px) {
    .hamburger { display: flex; }

    .hide-mobile { display: none !important; }

    /* Menu Tiroir Mobile */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%; /* Caché */
        height: 100vh;
        width: 80%;
        max-width: 300px;
        background-color: #fff;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        box-shadow: -10px 0 20px rgba(0,0,0,0.1);
        transition: right 0.4s cubic-bezier(1, 0, 0, 1);
    }

    .nav-links.active { right: 0; }
    .nav-links li { margin: 15px 0; }

    /* Animation Hamburger -> X */
    .hamburger.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

    .show-mobile-only { display: block !important; margin-top: 20px !important; }
}


/* --- HERO SECTION --- */
.hero {
    display: flex;
    align-items: center;
    padding: 50px 8%;
    background: linear-gradient(135deg, var(--primary) 55%, var(--bg-light) 50%);
    min-height: 70vh;
}
.hero-text { flex: 1; padding-right: 50px; }
.hero-text h2 { font-size: 3rem; color: var(--white); line-height: 1.1; margin-bottom: 25px; }
.hero-text p { font-size: 1.1rem; color: #e0ecf0; margin-bottom: 35px; }
.hero-btns { display: flex; gap: 15px; }

.btn-main { background: var(--accent); color: white; padding: 15px 30px; text-decoration: none; border-radius: 5px; font-weight: 600; transition: 0.3s; }
.btn-sec {background-color: var(--blue); border: 2px solid var(--blue); color: var(--white); padding: 13px 30px; text-decoration: none; border-radius: 5px; font-weight: 600; transition: 0.3s; }
.btn-main:hover { transform: translateY(-3px); box-shadow: 0 5px 15px rgba(200, 159, 2, 0.3); }
.btn-sec:hover { transform: translateY(-3px); box-shadow: 0 5px 15px rgba(200, 159, 2, 0.3); background: var(--blue); color: var(--white); }

.hero-visual { flex: 1; position: relative; }
.hero-visual img { width: 100%; border-radius: 10px; box-shadow: 20px 20px 60px rgba(0,0,0,0.1); }

@media (max-width: 992px) {
        .hero-text h2 { font-size: 2rem; color: var(--white); line-height: 1.1; margin-bottom: 25px; }
}

/* --- SECTION STRATÉGIQUE (Nouveau Contenu) --- */
.strategy-section { padding: 50px 8%; background: var(--white); }
.strategy-container { 
    display: flex; 
    align-items: center; 
    gap: 60px; 
    background: var(--bg-light); 
    padding: 60px; 
    border-radius: 30px;
}
.strategy-image { flex: 1; }
.strategy-image img { width: 100%; border-radius: 20px; box-shadow: var(--shadow-lg); }

.strategy-content { flex: 1; }
.strategy-content .badge { background: var(--primary); color: white; padding: 5px 15px; border-radius: 50px; font-size: 0.8rem; font-weight: 700; margin-bottom: 20px; display: inline-block; }
.strategy-content h3 { font-size: 2.2rem; color: var(--primary); margin-bottom: 25px; line-height: 1.2; }
.strategy-content p { font-size: 1.1rem; color: #555; margin-bottom: 20px; }
.strategy-content strong { color: var(--primary); }

.feature-list-check { list-style: none; margin-top: 30px; }
.feature-list-check li { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 15px; font-weight: 600; color: var(--primary); }
.feature-list-check i { color: var(--accent); font-size: 1.2rem; margin-top: 4px; }

@media (max-width: 992px) {
     .strategy-section { 
        padding: 30px 2%; 
        background: var(--white); 
    }
    .strategy-container { 
        display: flex; 
        align-items: center; 
        gap: 60px; 
        background: var(--bg-light); 
        padding: 20px; 
        border-radius: 30px;
        flex-direction: column;
    }
    .strategy-content h3 { 
        font-size: 2rem; 
        color: var(--primary); 
        margin-bottom: 25px; 
        line-height: 1.2; 
        text-align: center;
    }
}

/* --- STATS --- */
.stats { background: var(--primary); color: var(--white); padding: 60px 8%; display: flex; justify-content: space-around; text-align: center; }
.stat-item h4 { font-size: 2.5rem; color: var(--accent); }
.stat-item p { text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; }

@media (max-width: 992px) {
    .stats { background: var(--primary); 
        color: var(--white); 
        padding: 20px 2%; 
        display: flex; 
        justify-content: space-around; 
        text-align: center; 
    }
   .stat-item h4 { 
        font-size: 2rem; 
        color: var(--accent); 
    }
}


/* --- SECTION SERVICES (GRILLE DÉTAILLÉE) --- */
.services-section { padding: 80px 8%; background: var(--white); }
.section-header { text-align: center; margin-bottom: 30px; }
.section-header h2 { font-size: 2.5rem; color: var(--primary); margin-bottom: 15px; }
.section-header p { color: #777; font-size: 1.1rem; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.service-item {
    padding: 30px;
    background: var(--bg-light);
    border-radius: 15px;
    transition: 0.3s;
    border-bottom: 4px solid transparent;
}
.service-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
    transform: translateY(-5px);
}
.service-item i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 20px;
    display: block;
}
.service-item h4 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 700;
}
.service-item p {
    font-size: 0.9rem;
    color: #666;
}

@media (max-width: 992px) {
    .services-section { 
        padding: 50px 8%; 
        background: var(--white); 
    }
    .section-header h2 { 
        font-size: 2rem; 
        color: var(--primary); 
        margin-bottom: 15px; 
    }
    .service-item {
        padding: 20px;
        background: var(--bg-light);
        border-radius: 15px;
        transition: 0.3s;
        border-bottom: 4px solid transparent;
        text-align: center;
    } 
}


/* --- SECTION PARALLAX --- */
.parallax-showcase {
    position: relative;
    height: 800px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 120%;
    background-image: linear-gradient(rgba(49, 91, 124, 0.85), rgba(49, 91, 124, 0.85)), url('img/warehouse-2.jpg'); /* Votre image de fond */
    background-attachment: fixed; /* L'effet parallax */
    background-position: center;
    background-size: cover;
    z-index: 1;
}

.slider-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    text-align: center;
}

.white-text h2, .white-text p { color: #ffffff; }

@media (max-width: 992px) {
    .parallax-showcase {
        position: relative;
        height: 600px;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}


/* --- SLIDER CSS --- */
.slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.slides-box {
    width: 325px; /* Taille d'un smartphone */
    height: 550px;
    position: relative;
    perspective: 1000px;
}

.slide {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0;
    transition: all 0.6s ease;
    transform: scale(0.8);
}

.slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 5;
}

.slide img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* Flèches */
.slide-arrow {
    background: rgba(200, 159, 2, 0.8); /* Couleur Or */
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    margin: 0 50px;
    font-size: 1.2rem;
    transition: 0.3s;
}

.slide-arrow:hover {
    background: #c89f02;
    transform: scale(1.1);
}

@media (max-width: 992px) {
    .slide-arrow { margin: 0 10px; width: 40px; height: 40px; }
    .slides-box { width: 220px; height: 400px; }
}


/* --- SECTION SERVICES 2 COLONNES --- */
.services-detail-section {
    padding: 80px 8%;
    background-color: #ffffff;
}

.services-columns {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    justify-content: space-between;
}

.service-col {
    flex: 1;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    border-top: 5px solid #c89f02; /* Rappel de la couleur Or */
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.col-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.col-header i {
    font-size: 2rem;
    color: #315b7c;
}

.col-header h3 {
    color: #315b7c;
    font-size: 1.4rem;
    margin: 0;
}

.col-intro {
    font-weight: 600;
    margin-bottom: 20px;
    color: #2d3436;
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #555;
}

.service-list li i {
    color: #c89f02;
    font-size: 0.9rem;
    width: 20px;
}

/* CTA sous les services */
.services-cta {
    text-align: center;
    margin-top: 50px;
}

.services-cta p {
    font-size: 1.2rem;
    font-weight: 700;
    color: #315b7c;
    margin-bottom: 20px;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Responsiveness */
@media (max-width: 992px) {
    .services-detail-section {
    padding: 50px 8%;
    background-color: #ffffff;
    }
    .services-columns {
        flex-direction: column;
    }
    .service-col {
        flex: 1;
        background: #f8f9fa;
        padding: 20px;
        border-radius: 15px;
        border-top: 5px solid #c89f02;
        box-shadow: 0 5px 15px rgba #0000000d (0, 0, 0, 0.05);
    }

    .cta-btns {
        flex-direction: column;
        align-items: center;
    }
}

/* --- SECTION A PROPOS (Nouveau Contenu) --- */
.about-section {
    width: 100%;
    background-color: #315b7c; /* Le bleu de votre charte */
    overflow: hidden;
}

.about-flex-container {
    display: flex;
    min-height: 500px; /* Ajustez selon vos besoins */
    align-items: stretch; /* Force les deux colonnes à la même hauteur */
}

.about-image {
    flex: 1;
    position: relative;
    min-height: 100%;
}

.about-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* L'image remplit tout l'espace sans se déformer */
}

.about-content {
    flex: 1;
    display: flex;
    align-items: center; /* Centre le texte verticalement */
    padding: 30px 0% 4% 2%;
    color: #ffffff;
}

.about-text-wrapper {
    max-width: 900px;   
    padding-right: 200px;
}

.about-content h2 {
    font-size: 2.5rem;
    color: #c89f02; /* Or */
    margin-bottom: 20px;
    font-weight: 800;
}

.about-divider {
    width: 60px;
    height: 4px;
    background: #c89f02;
    margin-bottom: 30px;
}

.about-lead {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
}

.about-signature {
    margin-top: 30px;
    font-weight: 600;
    color: #c89f02;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* --- responsive --- */
@media (max-width: 992px) {
    .about-text-wrapper {
        max-width: 500px;
        padding-right: 0px;
    }
    .about-flex-container {
        flex-direction: column; /* L'image passe au dessus du texte sur mobile */
    }
    .about-image {
        height: 300px; /* Hauteur fixe sur mobile pour ne pas trop scroller */
    }
    .about-content {
        padding: 40px 5%;
        text-align: center;
    }
    .about-divider {
        margin: 0 auto 30px;
    }
}

/* --- CONTACT SECTION --- */
.contact-section { padding: 50px 8%; background: var(--white); }
.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.contact-info {
    background: var(--primary);
    padding: 25px;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.contact-info h3 { font-size: 1.8rem; margin-bottom: 20px; color: var(--accent); }
.contact-info p { margin-bottom: 30px; opacity: 0.9; }

.info-details { list-style: none; }
.info-details li { display: flex; align-items: center; margin-bottom: 20px; gap: 15px; }
.info-details li i { background: rgba(255,255,255,0.1); width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 50%; color: var(--accent); }

.contact-form-box { padding: 50px; background: var(--white); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5px; }
.form-group { margin-bottom: 20px; flex: 1; }
.form-group.full { grid-column: span 2; }

.form-group label { display: block; margin-bottom: 8px; font-weight: 600; font-size: 0.85rem; color: var(--primary); }
.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: 0.3s;
    outline: none;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(200, 159, 2, 0.1); }

/* Style pour la liste déroulante */
.form-group select {
width: 100%;
padding: 12px;
border: 1px solid #ddd;
border-radius: 5px;
font-family: 'Montserrat', sans-serif;
background-color: #fff;
font-size: 0.95rem;
color: #333;
appearance: none; /* Supprime le style par défaut du navigateur */
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' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
background-repeat: no-repeat;
background-position: right 1rem center;
background-size: 1em;
}

.form-group select:focus {
border-color: #c89f02;
outline: none;
}

.btn-submit {
    background: var(--primary);
    color: var(--white);
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.btn-submit:hover { background: var(--accent); transform: translateY(-2px); box-shadow: 0 5px 15px rgba(0,0,0,0.1); }

.status-message {
max-width: 800px;
margin: 0 auto 30px;
padding: 20px;
border-radius: 8px;
font-weight: 600;
display: flex;
align-items: center;
gap: 15px;
animation: fadeInDown 0.5s ease-out;
}

/* Style Succès (Vert) */
.status-message.success {
background-color: #d4edda;
color: #155724;
border: 1px solid #c3e6cb;
}

/* Style Erreur (Rouge) */
.status-message.error {
background-color: #f8d7da;
color: #721c24;
border: 1px solid #f5c6cb;
}

/* Style Information (Bleu/Gris) */
.status-message.invalid {
background-color: #e2e3e5;
color: #383d41;
border: 1px solid #d6d8db;
}

.status-message i {
font-size: 1.4rem;
}

@keyframes fadeInDown {
from { opacity: 0; transform: translateY(-20px); }
to { opacity: 1; transform: translateY(0); }
}

/* --- responsive --- */
@media (max-width: 992px) {
    .contact-section { 
        padding: 40px 4%; 
        background: var(--white); 
    }
    .contact-form-box {
        padding: 20px;
        background: var(--white);
    }
    .contact-container {
        max-width: 1100px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        background: var(--white);
        border-radius: 20px;
        overflow: hidden;
        box-shadow: var(--shadow);
    }
    .contact-info h3 {
        font-size: 1.5rem;
        margin-bottom: 20px;
        color: var(--accent);
    }
}


/* --- FOOTER --- */
footer { background: #1e272e; color: #bdc3c7; padding: 60px 8% 20px; }
.footer-content { display: flex; justify-content: space-between; margin-bottom: 40px; }
.footer-col h5 { color: var(--white); margin-bottom: 20px; font-size: 1.1rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; font-size: 0.9rem; }
.copyright { text-align: center; border-top: 1px solid #34495e; padding-top: 20px; font-size: 0.8rem; }

@media (max-width: 992px) {
    .hero { flex-direction: column; text-align: center; padding-top: 50px; }
    .hero-text { padding-right: 0; margin-bottom: 50px; }
    .hero-btns { justify-content: center; }
    
    .form-grid { grid-template-columns: 1fr; }
    .form-group.full { grid-column: span 1; }
}

/* MENTIONS ***********************************/
/* Styles spécifiques pour la page légale */
.legal-container { max-width: 1100px; margin: 50px auto 60px; padding: 0 20px; font-family: 'Montserrat', sans-serif; color: #333; }
.legal-content h3 { color: #315b7c; margin-top: 35px; border-left: 4px solid #c89f02; padding-left: 15px; font-size: 1.3rem; }
.legal-content p { line-height: 1.8; margin-bottom: 15px; font-size: 0.95rem; }
.legal-list { list-style: none; padding: 0; margin: 15px 0; }
.legal-list li { margin-bottom: 12px; display: flex; align-items: flex-start; gap: 12px; line-height: 1.5; }
.legal-list i { color: #c89f02; margin-top: 4px; font-size: 0.9rem; }
.highlight-box { background: #f4f7f9; border-radius: 8px; padding: 20px; border-left: 5px solid #315b7c; margin: 25px 0; }
.cookie-table { width: 100%; border-collapse: collapse; margin: 15px 0; font-size: 0.9rem; }
.cookie-table th, .cookie-table td { border: 1px solid #eee; padding: 12px; text-align: left; }
.cookie-table th { background: #315b7c; color: white; }


/* --- BANDEAU COOKIES --- */
.cookie-banner {
    position: fixed;
    bottom: -100%; /* Caché par défaut */
    left: 0;
    width: 100%;
    background: var(--accent);
    backdrop-filter: blur(10px);
    box-shadow: 0 -5px 25px rgba(0,0,0,0.1);
    z-index: 9999;
    padding: 50px 0;
    transition: bottom 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-text {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--white);
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-text i {
    font-size: 2rem;
    color: var(--white);
}

.cookie-text a {
    color: #315b7c;
    text-decoration: underline;
    font-weight: 600;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

.btn-cookie {
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 0.8rem;
    cursor: pointer;
    border: none;
    transition: 0.3s;
    text-transform: uppercase;
}

.btn-cookie.accept {
    background: #315b7c;
    color: white;
}

.btn-cookie.accept:hover {
    background: #c89f02;
}

.btn-cookie.decline {
    background: #eee;
    color: #666;
}

.btn-cookie.decline:hover {
    background: #ddd;
}

/* Responsive Mobile */
@media (max-width: 992px) {
    .cookie-container {
        flex-direction: column;
        text-align: center;
    }
    .cookie-text {
        flex-direction: column;
    }
}