/* =========================
   PARTENARIAT HERO CSS
========================= */

body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    background: #fff;
}


/* ============================ */
/* NAVBAR */
/* ============================ */

.navbar {
    width: 100%;
    background: #222222; /* FOND ROUGE */
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.navbar .container {
    max-width: 1250px;
    padding: 0 20px;
    margin: auto;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 55px;
}

/* Desktop nav */
.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links li a {
    color: white;
    font-size: 16px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links li a:hover {
    opacity: 0.7;
}

.btn-nav {
    background: rgb(252, 181, 0);
    color: #222222 !important;
    padding: 8px 18px;
    border-radius: 6px;
    font-weight: 600;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 3px;
}

/* ============================ */
/* MOBILE */
/* ============================ */

.mobile-menu {
    background: #222222;
    display: none;
    flex-direction: column;
    padding: 20px;
}

.mobile-menu a {
    color: white;
    text-decoration: none;
    padding: 12px 0;
    font-size: 18px;
}

.btn-mobile {
    background: white;
    color: #222222 !important;
    padding: 10px 0;
    margin-top: 10px;
    border-radius: 6px;
    font-weight: 700;
}

/* ============================ */
/* RESPONSIVE */
/* ============================ */

@media(max-width: 900px) {
    .nav-links {
        display: none;
    }
    .hamburger {
        display: flex;
    }
}




/* HERO PLEIN ÉCRAN TEXTE EN HAUT, IMAGE EN BAS */
.hero-part {
    position: relative;
    background-color: #222222;
    color: #ffffff;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* texte en haut */
    align-items: center;
    padding: 220px 40px 0 40px; /* <-- padding-top = navbar 80px + 40px d'espace */
    box-sizing: border-box;
    overflow: hidden;
}

/* Texte */
.hero-text {
    text-align: center; /* centre le texte horizontalement */
    max-width: 800px; /* largeur max pour lisibilité */
    z-index: 2;
}

.hero-text h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 60px;
    margin: 0 0 20px 0;
}

.hero-text p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 1.6;
}

/* Image */
.hero-img {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}

.hero-img img {
    width: 100%; /* remplie horizontalement */
    height: auto;
    display: block;
}

/* ------------------
   Responsive
------------------ */
@media(max-width: 1524px) {
    .hero-text h1 {
        font-size: 50px;
    }
    .hero-text p {
        font-size: 18px;
    }
}

@media(max-width: 1024px) {
    .hero-part {
        padding-top: 180px; /* ajuste pour tablettes */
    }
}

@media(max-width: 768px) {
    .hero-part {
        padding-top: 140px; /* espace haut pour mobile */
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-text p {
        font-size: 16px;
    }

    /* Image rapprochée du texte */
    .hero-img img {
        margin-top: 10px; /* réduit pour rapprocher de texte */
        width: 100%;
    }
}

/* ============================ */

/* =========================
   SERVICES PARTENAIRES
========================= */

.services-partners {
    background-color: #f9f9f9; /* fond clair */
    color: #333333;
    padding: 80px 20px;
    font-family: 'Montserrat', sans-serif;
}

.services-partners .container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.section-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 42px;
    margin-bottom: 20px;
    color: #222222;
}

.section-header p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 18px;
    margin-bottom: 50px;
    color: #555555;
}

.services-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.service-item {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 12px;
    width: 250px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-item h3 {
    font-weight: 700;
    font-size: 22px;
    margin: 15px 0 10px 0;
}

.service-item p {
    font-weight: 300;
    font-size: 16px;
    color: #666666;
}

/* Dégradé pour icônes */
.gradient-icon {
    font-size: 40px;
    background: linear-gradient(135deg, #FF0000, #FFD700);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

/* Hover léger */
.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* ------------------
   Responsive Tablette
------------------ */
@media(max-width: 1024px) {
    .services-list {
        gap: 30px;
        justify-content: center;
    }

    .service-item {
        width: 45%; /* 2 colonnes sur tablette */
        max-width: 300px;
    }

    .section-header h2 {
        font-size: 38px;
    }

    .section-header p {
        font-size: 17px;
    }
}

/* ------------------
   Responsive Mobile
------------------ */
@media(max-width: 768px) {
    .services-list {
        display: flex;
        flex-direction: column;
        align-items: center; /* centre toutes les cartes */
        gap: 20px;
        padding: 0 10px;
    }

    .service-item {
        width: 100%; /* prend toute la largeur disponible */
        max-width: 260px; /* limite la largeur pour mobile */
    }

    .section-header h2 {
        font-size: 32px;
    }

    .section-header p {
        font-size: 16px;
    }
}



/* ============================ */
/* =========================
   POURQUOI NOUS CHOISIR
========================= */

.why-choose {
    background-color: #f9f9f9; /* fond clair */
    color: #333333;
    padding: 80px 20px;
    font-family: 'Montserrat', sans-serif;
}

.why-choose .container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.why-choose .section-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 42px;
    margin-bottom: 20px;
    color: #222222;
}

.why-choose .section-header p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 18px;
    margin-bottom: 50px;
    color: #555555;
}

.why-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.why-item {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 12px;
    width: 250px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.why-item h3 {
    font-weight: 700;
    font-size: 22px;
    margin: 15px 0 10px 0;
}

.why-item p {
    font-weight: 300;
    font-size: 16px;
    color: #666666;
}

/* Dégradé pour icônes */
.why-item .gradient-icon {
    font-size: 40px;
    background: linear-gradient(135deg, #FF0000, #FFD700);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

/* Hover léger */
.why-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* ------------------
   Responsive Tablette
------------------ */
@media(max-width: 1024px) {
    .why-list {
        gap: 30px;
        justify-content: center;
    }

    .why-item {
        width: 45%; /* 2 colonnes */
        max-width: 300px;
    }

    .why-choose .section-header h2 {
        font-size: 38px;
    }

    .why-choose .section-header p {
        font-size: 17px;
    }
}

/* ------------------
   Responsive Mobile
------------------ */
@media(max-width: 768px) {
    .why-list {
        display: flex;
        flex-direction: column;
        align-items: center; /* centre toutes les cartes */
        gap: 20px;
        padding: 0 10px;
    }

    .why-item {
        width: 100%;
        max-width: 260px;
    }

    .why-choose .section-header h2 {
        font-size: 32px;
    }

    .why-choose .section-header p {
        font-size: 16px;
    }
}




/* =========================
   SOUS-TRAITANCE
========================= */

.outsourcing {
    background-color: #f9f9f9; /* fond clair */
    color: #333333;
    padding: 80px 20px;
    font-family: 'Montserrat', sans-serif;
}

.outsourcing .container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.outsourcing .section-header h2 {
    font-weight: 700;
    font-size: 42px;
    margin-bottom: 20px;
    color: #222222;
}

.outsourcing .section-header p {
    font-weight: 300;
    font-size: 18px;
    margin-bottom: 50px;
    color: #555555;
}

.outsourcing-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.outsource-item {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 12px;
    width: 250px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.outsource-item h3 {
    font-weight: 700;
    font-size: 22px;
    margin: 15px 0 10px 0;
}

.outsource-item p {
    font-weight: 300;
    font-size: 16px;
    color: #666666;
}

/* Dégradé pour icônes */
.outsource-item .gradient-icon {
    font-size: 40px;
    background: linear-gradient(135deg, #FF0000, #FFD700);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

/* Hover léger */
.outsource-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* ------------------
   Responsive Tablette
------------------ */
@media(max-width: 1024px) {
    .outsourcing-list {
        gap: 30px;
        justify-content: center;
    }

    .outsource-item {
        width: 45%; /* 2 colonnes */
        max-width: 300px;
    }

    .outsourcing .section-header h2 {
        font-size: 38px;
    }

    .outsourcing .section-header p {
        font-size: 17px;
    }
}

/* ------------------
   Responsive Mobile
------------------ */
@media(max-width: 768px) {
    .outsourcing-list {
        display: flex;
        flex-direction: column;
        align-items: center; /* centre toutes les cartes */
        gap: 20px;
        padding: 0 10px;
    }

    .outsource-item {
        width: 100%;
        max-width: 260px;
    }

    .outsourcing .section-header h2 {
        font-size: 32px;
    }

    .outsourcing .section-header p {
        font-size: 16px;
    }
}

/* =========================
   FORMULAIRE WHATSAPP
========================= */

.whatsapp-form {
    background-color: #f9f9f9;
    padding: 80px 20px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.whatsapp-form h2 {
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 15px;
    color: #222222;
}

.whatsapp-form p {
    font-weight: 300;
    font-size: 18px;
    margin-bottom: 40px;
    color: #555555;
}

.whatsapp-form form {
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.whatsapp-form select,
.whatsapp-form input,
.whatsapp-form textarea {
    padding: 12px 15px;
    border-radius: 6px;
    border: 1px solid #cccccc;
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
}

.whatsapp-form button.btn-whatsapp {
    background-color: #d60000;
    color: #ffffff;
    font-weight: 700;
    font-size: 18px;
    padding: 15px 25px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.whatsapp-form button.btn-whatsapp:hover {
    background-color: #ffd700;
    color: #d60000;
}

/* Responsive Tablette */
@media(max-width:1024px){
    .whatsapp-form h2{font-size:32px;}
    .whatsapp-form p{font-size:17px;}
}

/* Responsive Mobile */
@media(max-width:768px){
    .whatsapp-form h2{font-size:28px;}
    .whatsapp-form p{font-size:16px;}
}




/* =========================
   CTA PARTENAIRE
========================= */

.cta-partner {
    background-color: #d60000; /* fond rouge */
    color: #ffffff;
    padding: 100px 20px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.cta-partner h2 {
    font-weight: 700;
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-partner p {
    font-weight: 300;
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.btn-cta {
    display: inline-block;
    background-color: #ffffff;
    color: #d60000;
    font-weight: 700;
    font-size: 18px;
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-cta:hover {
    background-color: #ffd700;
    color: #d60000;
}

/* Responsive Tablette */
@media(max-width: 1024px) {
    .cta-partner h2 {
        font-size: 38px;
    }

    .cta-partner p {
        font-size: 17px;
    }

    .btn-cta {
        font-size: 16px;
        padding: 12px 30px;
    }
}

/* Responsive Mobile */
@media(max-width: 768px) {
    .cta-partner h2 {
        font-size: 32px;
    }

    .cta-partner p {
        font-size: 16px;
    }

    .btn-cta {
        font-size: 16px;
        padding: 12px 25px;
    }
}



/* ====================================== */
/* FOOTER                                */
/* ====================================== */
/* Footer CSS */
.footer-section {
    background: #222222;
    color: white;
    padding: 60px 20px 20px;
    font-family: 'Montserrat', sans-serif;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo-img {
    width: 150px;
    margin-bottom: 10px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
    justify-content: space-between;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 700;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-column ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-column ul li a:hover {
    color: #ffd700;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 14px;
}

@media screen and (max-width: 1024px) {
    .footer-container {
        flex-direction: column;
        gap: 40px;
    }

    .footer-logo {
        align-items: center;
    }
}



#background-audio {
    display: none;
}
