        :root {
            --nobal-blue: #1A2B4C;
            --nobal-orange: #F58220;
            --nobal-dark: #0d172a;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--nobal-blue);
            overflow-x: hidden;
        }

        /* --- NAVIGATION --- */
        .navbar {
            background-color: white;
            border-bottom: 3px solid var(--nobal-orange);
            padding: 15px 0;
        }
        .navbar-brand { font-weight: 700; font-size: 1.5rem; }
        .nav-link { 
            font-weight: 600; 
            color: var(--nobal-blue) !important; 
            text-transform: uppercase;
            font-size: 0.85rem;
            margin: 0 10px;
        }
        .nav-link:hover { color: var(--nobal-orange) !important; }
        .lang-switch .btn { font-size: 0.75rem; font-weight: 700; border: 1px solid #ddd; }
        .lang-switch .btn.active { background: var(--nobal-blue); color: white; }

        /* --- HERO SECTION --- */
        .hero-section {
            background: linear-gradient(135deg, var(--nobal-blue) 60%, #2a3d66 100%);
            color: white;
            padding: 140px 0;
            position: relative;
        }
        .hero-section::after {
            content: "";
            position: absolute;
            bottom: 0;
            right: 0;
            width: 40%;
            height: 100%;
            background: var(--nobal-orange);
            clip-path: ellipse(80% 100% at 100% 100%);
            opacity: 0.1;
        }

        .btn-nobal { background: var(--nobal-orange); color: white; border: none; padding: 12px 35px; font-weight: 600; transition: 0.3s; }
        .btn-nobal:hover { background: #d66d10; color: white; transform: translateY(-3px); }

        /* --- SECTION WHO WE ARE --- */
        .section-line { width: 60px; height: 4px; background: var(--nobal-orange); margin-bottom: 20px; }
        .img-decoration {
            position: relative;
            z-index: 1;
        }
        .img-decoration::before {
            content: "";
            position: absolute;
            top: -20px;
            right: -20px;
            width: 100px;
            height: 100px;
            border-top: 8px solid var(--nobal-orange);
            border-right: 8px solid var(--nobal-orange);
            z-index: -1;
        }

        /* --- PARALLAX SECTION --- */
        .parallax-bg {
            background: linear-gradient(rgba(26, 43, 76, 0.88), rgba(26, 43, 76, 0.88)), 
                        url('https://images.unsplash.com/photo-1454165833767-027ffea9e778?q=80&w=2070&auto=format&fit=crop');
            background-attachment: fixed;
            background-size: cover;
            background-position: center;
            padding: 100px 0;
            color: white;
        }

        /* --- PARTNERS --- */
        .partner-logo {
            filter: grayscale(100%);
            opacity: 0.5;
            transition: 0.4s;
            max-height: 45px;
        }
        .partner-logo:hover { filter: grayscale(0%); opacity: 1; }

        /* --- FOOTER --- */
        .footer-main { background: var(--nobal-dark); color: #a0aec0; padding: 80px 0 20px; }
        .footer-title {
            color: white;
            border-left: 4px solid var(--nobal-orange);
            padding-left: 15px;
            margin-bottom: 25px;
            text-transform: uppercase;
            font-size: 1rem;
            font-weight: 700;
        }
        .footer-link { color: #a0aec0; text-decoration: none; display: block; margin-bottom: 12px; transition: 0.3s; font-size: 0.9rem; }
        .footer-link:hover { color: var(--nobal-orange); padding-left: 8px; }
        .social-btn {
            width: 35px;
            height: 35px;
            line-height: 35px;
            display: inline-block;
            text-align: center;
            border: 1px solid #4a5568;
            color: white;
            border-radius: 50%;
            margin-right: 10px;
            transition: 0.3s;
        }
        .social-btn:hover { background: var(--nobal-orange); border-color: var(--nobal-orange); }

            .service-overlay-section {
        background: linear-gradient(rgba(26, 43, 76, 0.9), rgba(26, 43, 76, 0.9)), 
                    url('https://images.unsplash.com/photo-1581092160562-40aa08e78837?q=80&w=2070&auto=format&fit=crop'); /* Image de fond industrielle/technique */
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        padding: 80px 0;
        color: white;
    }

    .service-item {
        text-align: center;
        padding: 20px;
        transition: transform 0.3s ease;
    }

    .service-item:hover {
        transform: translateY(-5px);
    }

    .service-icon-wrapper {
        font-size: 2.5rem;
        margin-bottom: 20px;
        color: white;
        opacity: 0.9;
    }

    .service-text {
        font-size: 0.85rem;
        font-weight: 500;
        line-height: 1.4;
        max-width: 180px;
        margin: 0 auto;
        text-transform: none; /* Garde le texte naturel comme sur l'image */
    }

    .section-divider-orange {
        width: 50px;
        height: 3px;
        background-color: var(--nobal-orange);
        margin: 20px auto;
    }

        .locations-section {
        background-color: #ffffff;
        padding: 100px 0;
        position: relative;
    }

    /* Style du titre inspiré de Southern Logix */
    .location-subtitle {
        color: var(--nobal-blue);
        font-weight: 700;
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 2px;
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 15px;
    }

    .location-subtitle::before {
        content: "";
        width: 40px;
        height: 2px;
        background-color: var(--nobal-orange);
    }

    .location-main-title {
        font-family: 'Poppins', sans-serif;
        font-weight: 800;
        font-size: 2.5rem;
        line-height: 1.1;
        color: #111;
        margin-bottom: 40px;
        text-transform: uppercase;
    }

    /* Image avec effet de bordure subtile */
    .location-image-container {
        position: relative;
        border-radius: 4px;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }

    /* Grille des adresses */
    .address-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
        margin-top: 30px;
    }

    .address-item h5 {
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--nobal-blue);
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 10px;
    }

    .address-item h5 i {
        color: var(--nobal-orange);
    }

    .address-item p {
        font-size: 0.9rem;
        color: #666;
        line-height: 1.6;
        margin-bottom: 0;
    }

    /* Effet de vague en arrière-plan (optionnel, comme sur l'image) */
    .bg-wave {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(180deg, rgba(245, 130, 32, 0.03) 0%, rgba(26, 43, 76, 0.05) 100%);
        clip-path: polygon(0 15%, 100% 0, 100% 85%, 0 100%);
        z-index: -1;
    }

    .hseq-section {
            background: linear-gradient(to bottom, var(--nobal-blue) 0%, #ffffff 100%);
            padding: 100px 0;
            position: relative;
        }
        .hseq-subtitle { color: var(--nobal-orange); font-weight: 700; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }
        .hseq-title { font-weight: 800; font-size: 3rem; color: white; text-transform: uppercase; line-height: 1; margin-bottom: 30px; }
        .hseq-card { margin-bottom: 40px; }
        .hseq-card h5 { font-weight: 700; color: var(--nobal-blue); margin-bottom: 10px; }
        .hseq-card p { font-size: 0.9rem; color: white; line-height: 1.6; }
        .btn-hseq { background: var(--nobal-orange); color: white; border-radius: 50px; padding: 10px 30px; font-weight: 600; border: none; }

.contact-page .form-control {
    border: 1px solid #ddd;
    padding: 12px;
    font-size: 0.9rem;
}
.contact-page .form-control:focus {
    border-color: #f39c12;
    box-shadow: none;
}
.contact-page .form-label {
    letter-spacing: 1px;
    font-weight: 600;
}