* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f5f7fa;
    color: #071b38;
}


/* ================= MENU ================= */

.navbar {
    height: 75px;
    background: #061b3a;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 6%;
    position: relative;
    z-index: 1000;
}

.brand img {
    width: 58px;
    height: 58px;
    object-fit: contain;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 45px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 17px;
    font-weight: bold;
    padding: 27px 5px 23px;
    transition: 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #ffc400;
    border-bottom: 4px solid #ffc400;
}

.menu-toggle {
    display: none;
    border: none;
    background: transparent;
    color: white;
    font-size: 34px;
    cursor: pointer;
}


/* ================= COUVERTURE ================= */

.hero {
    min-height: 590px;
    background: linear-gradient(
        115deg,
        #041936 0%,
        #07305d 55%,
        #061b3a 100%
    );

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 55px 8%;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 700px;
    background: #ffc400;
    right: -100px;
    top: -70px;
    transform: rotate(32deg);
    opacity: 0.95;
}

.hero-content {
    width: 55%;
    position: relative;
    z-index: 2;
}

.hero-small {
    color: #ffc400;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.hero h1 {
    color: white;
    font-size: clamp(55px, 7vw, 92px);
    line-height: 0.95;
    margin-bottom: 28px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.45);
}

.hero h1 span {
    color: #ffc400;
}

.hero-text {
    color: white;
    font-size: 24px;
    line-height: 1.5;
    font-weight: bold;
    margin-bottom: 30px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

.call-button {
    display: inline-block;
    background: #ffc400;
    color: #071b38;
    padding: 15px 30px;
    border-radius: 35px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    transition: 0.3s;
}

.call-button:hover {
    transform: translateY(-3px);
    background: #ffd633;
}
.call-button {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
}
.call-button:active {
    transform: translateY(1px);
}
.hero-logo {
    width: 40%;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-logo img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    background: white;
    border-radius: 50%;
    padding: 8px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
}


/* ================= SECTIONS ================= */

.about,
.services,
.contact {
    padding: 65px 7%;
    text-align: center;
}

.about {
    background: #ffffff;
}

.about h2,
.services h2,
.contact h2 {
    color: #071b38;
    font-size: 35px;
    margin-bottom: 12px;
}

.yellow-line {
    width: 65px;
    height: 5px;
    background: #ffc400;
    margin: 0 auto 30px;
}

.about p {
    max-width: 850px;
    margin: auto;
    color: #444;
    font-size: 18px;
    line-height: 1.7;
}


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

.services {
    background: #f5f7fa;
}

.services-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: left;
    box-shadow: 0 7px 25px rgba(0, 0, 0, 0.09);
    transition: 0.3s;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 65px;
    height: 65px;
    background: #071b38;
    color: #ffc400;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    margin-bottom: 20px;
}
.service-card:hover .service-icon {
    transform: rotate(8deg) scale(1.05);
}
.service-card h3 {
    color: #071b38;
    font-size: 22px;
    line-height: 1.2;
}

.small-line {
    width: 45px;
    height: 4px;
    background: #ffc400;
    margin: 14px 0;
}

.service-card p {
    color: #444;
    font-size: 16px;
    line-height: 1.6;
}


/* ================= CONTACT ================= */

.contact {
    background: white;
}

.contact p {
    color: #444;
    font-size: 18px;
    margin-bottom: 25px;
}

.contact .phone {
    margin-top: 25px;
    line-height: 1.8;
    font-weight: bold;
    color: #071b38;
}


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

.whatsapp {
    position: fixed;
    right: 20px;
    bottom: 20px;

    width: 62px;
    height: 62px;

    background: #20d366;
    color: white;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;
    font-size: 29px;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);

    z-index: 9999;
}
.whatsapp:hover {
    transform: scale(1.08);
}

/* ================= FOOTER ================= */

footer {
    background: #061b3a;
    color: white;
    text-align: center;
    padding: 30px 20px;
}

footer img {
    width: 75px;
    height: auto;
    margin-bottom: 12px;
}

footer p {
    font-size: 14px;
}


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

@media (max-width: 768px) {

    .navbar {
        height: 70px;
        padding: 0 18px;
    }

    .brand img {
        width: 52px;
        height: 52px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;

        position: absolute;
        top: 70px;
        left: 0;

        width: 100%;

        background: #061b3a;

        flex-direction: column;
        align-items: stretch;

        gap: 0;

        padding: 10px 0;
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links a {
        padding: 16px 25px;
        font-size: 17px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .hero {
        min-height: 680px;
        padding: 50px 25px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero::after {
        display: none;
    }

    .hero-content {
        width: 100%;
    }

    .hero-small {
        font-size: 12px;
    }

    .hero h1 {
        font-size: 58px;
    }

    .hero-text {
        font-size: 19px;
    }

    .hero-logo {
        width: 100%;
        margin-top: 35px;
    }

    .hero-logo img {
        width: 150px;
        height: 150px;
    }

    .about,
    .services,
    .contact {
        padding: 50px 20px;
    }

    .about h2,
    .services h2,
    .contact h2 {
        font-size: 30px;
    }

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

    .service-card {
        padding: 25px;
    }

    .whatsapp {
        width: 58px;
        height: 58px;
        right: 16px;
        bottom: 16px;
    }
}
/* CORRECTION MENU MOBILE */

@media (max-width: 768px) {

    .menu-toggle {
        display: block !important;
        position: relative;
        z-index: 10001;
    }

    .nav-links {
        display: none !important;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #061b3a;
        flex-direction: column;
        z-index: 10000;
    }

    .nav-links.show {
        display: flex !important;
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 18px 25px;
        color: white;
        border-bottom: 1px solid rgba(255,255,255,0.15);
    }
}
/* =========================
   GALERIE RÉALISATIONS
========================= */

.realisation-header {
    background: #061b3a;
    color: white;
    text-align: center;
    padding: 60px 20px 45px;
}

.realisation-header > p:first-child {
    color: #ffc400;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.realisation-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.realisation-header .intro {
    max-width: 700px;
    margin: auto;
    color: #e5e5e5;
    font-size: 17px;
    line-height: 1.6;
}

.gallery-section {
    background: #f5f7fa;
    padding: 60px 7%;
}

.gallery {
    max-width: 1150px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.gallery-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.18);
}

.gallery-item img {
    width: 100%;
    height: 270px;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-caption {
    padding: 18px 20px;
}

.gallery-caption h3 {
    color: #071b38;
    font-size: 19px;
    margin-bottom: 7px;
}

.gallery-caption p {
    color: #666;
    font-size: 15px;
}


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

@media (max-width: 768px) {

    .realisation-header {
        padding: 45px 20px 35px;
    }

    .realisation-header h1 {
        font-size: 34px;
    }

    .gallery-section {
        padding: 45px 20px;
    }

    .gallery {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .gallery-item img {
        height: 240px;
    }
}
/* =========================
   FORMULAIRE DE CONTACT
========================= */

.contact-form {
    max-width: 750px;
    margin: 35px auto 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px 18px;
    border: 1px solid #d9dee7;
    border-radius: 10px;
    background: #f8f9fb;
    color: #071b38;
    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;
    outline: none;
    transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #ffc400;
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 196, 0, 0.15);
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    align-self: center;
    border: none;
    background: #ffc400;
    color: #071b38;
    padding: 16px 32px;
    border-radius: 30px;
    font-size: 17px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    transform: translateY(-3px);
    background: #ffd633;
}

.contact-info {
    margin-top: 25px;
    text-align: center;
}

.contact-info p {
    margin-bottom: 8px;
    font-weight: bold;
    color: #071b38;
}

.contact-info a {
    display: inline-block;
    margin-top: 10px;
    color: #168c45;
    font-weight: bold;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}


/* MOBILE */

@media (max-width: 768px) {

    .contact-form {
        width: 100%;
        margin-top: 30px;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 16px;
        padding: 15px;
    }

    .contact-form button {
        width: 100%;
    }
}
/* =========================
   POURQUOI NOUS CHOISIR
========================= */

.why-us {
    background: #061b3a;
    color: white;
    text-align: center;
    padding: 70px 7%;
}

.section-subtitle {
    color: #ffc400;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.why-us h2 {
    font-size: 36px;
    margin-bottom: 12px;
}

.why-intro {
    max-width: 700px;
    margin: 0 auto 40px;
    color: #dce3ed;
    font-size: 17px;
    line-height: 1.6;
}

.why-grid {
    max-width: 1100px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 22px;
}

.why-card {
    background: white;
    color: #071b38;

    padding: 30px 22px;

    border-radius: 15px;

    box-shadow: 0 8px 25px rgba(0,0,0,0.15);

    transition: 0.3s;
}

.why-card:hover {
    transform: translateY(-7px);
}

.why-icon {
    width: 65px;
    height: 65px;

    margin: 0 auto 18px;

    background: #ffc400;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 30px;
}

.why-card h3 {
    font-size: 19px;
    margin-bottom: 12px;
}

.why-card p {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}


/* MOBILE */

@media (max-width: 768px) {

    .why-us {
        padding: 55px 20px;
    }

    .why-us h2 {
        font-size: 30px;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .why-card {
        padding: 28px 22px;
    }
}
.popup-projet {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}

.popup-contenu {
    position: relative;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    text-align: center;
}

.popup-contenu img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 12px;
    object-fit: contain;
}

.popup-fermer {
    position: absolute;
    top: -45px;
    right: 0;
    background: transparent;
    border: none;
    color: white;
    font-size: 40px;
    cursor: pointer;
    line-height: 1;
}

.popup-fermer:hover {
    opacity: 0.7;
    }
.image-realisation {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    margin-bottom: 20px;
}


/* =========================
   ACCESSIBILITÉ / SEO TECHNIQUE
========================= */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

img {
    max-width: 100%;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 3px solid #ffc400;
    outline-offset: 3px;
}/* =========================================
   NEXA AFRITECH — CARTES RÉALISATIONS
   ========================================= */

.realisations-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.realisations-header {
    text-align: center;
    margin-bottom: 45px;
}

.realisations-header h1 {
    color: #071b38;
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 15px;
}

.realisations-header p {
    max-width: 800px;
    margin: 0 auto;
    color: #555;
    font-size: 17px;
    line-height: 1.7;
}

.projets-grid {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.projet-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);

    display: flex;
    flex-direction: column;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.projet-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
}

/* IMAGE — FORMAT UNIFORME 16:9 */

.projet-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #e9edf2;
}

.projet-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    cursor: pointer;

    transition: transform 0.4s ease;
}

.projet-card:hover .projet-image img {
    transform: scale(1.04);
}

/* CONTENU */

.projet-content {
    padding: 22px;

    display: flex;
    flex-direction: column;
    flex: 1;
}

.projet-content h2 {
    color: #071b38;
    text-align: left;
    font-size: 22px;

    margin: 0 0 12px;
}

.projet-content p {
    color: #555;
    font-size: 15px;
    line-height: 1.65;

    margin: 0 0 12px;
}

/* BOUTON VOIR LE PROJET */

.voir-projet {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 100%;

    margin-top: 10px;
    padding: 13px 20px;

    border: none;
    border-radius: 30px;

    background: #ffc400;
    color: #071b38;

    font-size: 15px;
    font-weight: bold;

    cursor: pointer;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.voir-projet:hover {
    background: #ffd633;
    transform: translateY(-2px);

    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.voir-projet:active {
    transform: translateY(0);
}


/* =========================================
   POPUP
   ========================================= */

.popup-projet {
    position: fixed;

    inset: 0;

    z-index: 99999;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 25px;

    background: rgba(0, 0, 0, 0.88);
}

.popup-projet[hidden] {
    display: none;
}

.popup-contenu {
    position: relative;

    width: 100%;
    max-width: 1000px;

    max-height: 90vh;

    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-contenu img {
    display: block;

    max-width: 100%;
    max-height: 82vh;

    width: auto;
    height: auto;

    object-fit: contain;

    border-radius: 12px;

    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4);
}

/* BOUTON RETOUR */

.popup-retour {
    position: absolute;

    top: -55px;
    right: 0;

    border: none;
    border-radius: 25px;

    padding: 10px 18px;

    background: #ffc400;
    color: #071b38;

    font-size: 15px;
    font-weight: bold;

    cursor: pointer;

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.popup-retour:hover {
    background: #ffd633;
    transform: translateY(-2px);
}


/* =========================================
   TABLETTE
   ========================================= */

@media (max-width: 900px) {

    .projets-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 25px;
    }
}


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

@media (max-width: 600px) {

    .realisations-page {
        padding: 45px 15px;
    }

    .realisations-header {
        margin-bottom: 35px;
    }

    .realisations-header h1 {
        font-size: 34px;
    }

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

    .projets-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .projet-card {
        border-radius: 14px;
    }

    .projet-image {
        aspect-ratio: 16 / 9;
    }

    .projet-content {
        padding: 18px;
    }

    .projet-content h2 {
        font-size: 20px;
    }

    .voir-projet {
        padding: 13px 18px;
    }

    .popup-projet {
        padding: 15px;
    }

    .popup-contenu {
        max-height: 85vh;
    }

    .popup-contenu img {
        max-height: 75vh;
        border-radius: 10px;
    }

    .popup-retour {
        top: -50px;
        right: 0;

        padding: 9px 15px;
        font-size: 14px;
    }
/* =========================================
   CONTACT — PAGE RÉALISATIONS
========================================= */

.realisations-contact {
    background: #061b3a;
    color: white;
    padding: 70px 20px;
    text-align: center;
}

.realisations-contact-content {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-label {
    color: #ffc400;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.realisations-contact h2 {
    color: white;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.2;
    margin: 0 0 15px;
}

.contact-description {
    max-width: 750px;
    margin: 0 auto 35px;
    color: #dce3ed;
    font-size: 17px;
    line-height: 1.7;
}


/* =========================================
   INFORMATIONS DE CONTACT
========================================= */

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    max-width: 900px;
    margin: 0 auto 40px;
}

.contact-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 220px;
    min-height: 52px;

    padding: 13px 22px;

    border-radius: 30px;
    border: 2px solid transparent;

    font-size: 15px;
    font-weight: bold;

    text-decoration: none;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}


/* TÉLÉPHONE */

.contact-action.call {
    background: #ffc400;
    color: #071b38;
}

.contact-action.call:hover {
    background: #ffd633;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}


/* WHATSAPP */

.contact-action.whatsapp-btn {
    background: #20d366;
    color: white;
}

.contact-action.whatsapp-btn:hover {
    background: #18b957;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}


/* EMAIL */

.contact-action.email {
    background: white;
    color: #071b38;
}

.contact-action.email:hover {
    background: #f1f3f6;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}


/* =========================================
   FORMULAIRE CLIENT
========================================= */

.contact-form-realisation {
    max-width: 760px;
    margin: 10px auto 0;

    padding: 30px;

    background: white;

    border-radius: 18px;

    box-shadow:
        0 12px 35px rgba(0,0,0,0.22);

    text-align: left;
}

.contact-form-realisation h3 {
    color: #071b38;
    text-align: center;

    font-size: 24px;

    margin-bottom: 8px;
}

.contact-form-realisation .form-intro {
    color: #666;

    text-align: center;

    font-size: 15px;

    line-height: 1.6;

    margin-bottom: 25px;
}


/* GRILLE DES CHAMPS */

.contact-form-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 16px;
}


/* GROUPE */

.form-group {
    display: flex;
    flex-direction: column;

    gap: 7px;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    color: #071b38;

    font-size: 14px;

    font-weight: bold;
}


/* CHAMPS */

.form-group input,
.form-group textarea {
    width: 100%;

    padding: 14px 16px;

    border: 1px solid #d9dee7;

    border-radius: 10px;

    background: #f8f9fb;

    color: #071b38;

    font-size: 16px;

    outline: none;

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

.form-group input {
    height: 52px;
}

.form-group textarea {
    min-height: 150px;

    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #ffc400;

    background: white;

    box-shadow:
        0 0 0 3px rgba(255,196,0,0.15);
}


/* BOUTON ENVOYER */

.contact-submit {
    width: 100%;

    margin-top: 20px;

    padding: 15px 25px;

    border: none;

    border-radius: 30px;

    background: #ffc400;

    color: #071b38;

    font-size: 17px;

    font-weight: bold;

    cursor: pointer;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.contact-submit:hover {
    background: #ffd633;

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(0,0,0,0.18);
}


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

@media (max-width: 768px) {

    .realisations-contact {
        padding: 55px 16px;
    }

    .realisations-contact h2 {
        font-size: 30px;
    }

    .contact-description {
        font-size: 16px;
    }

    .contact-actions {
        flex-direction: column;
        gap: 12px;
    }

    .contact-action {
        width: 100%;
        min-width: 0;
    }

    .contact-form-realisation {
        padding: 22px 18px;
        border-radius: 15px;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .form-group.full {
        grid-column: auto;
    }

    .contact-form-realisation h3 {
        font-size: 21px;
    }

}/* =========================
   AVIS GOOGLE
========================= */

.google-reviews {
    padding: 70px 20px;
    text-align: center;
    background: #f7f9fc;
}

.google-reviews h2 {
    margin: 10px auto 0;
    font-size: 2rem;
    color: #061b3a;
}

.google-reviews-text {
    max-width: 700px;
    margin: 20px auto 30px;
    line-height: 1.7;
    color: #555;
}

.google-review-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: 8px;
    background: #061b3a;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.google-review-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(6, 27, 58, 0.25);
}

.google-review-button:focus-visible {
    outline: 3px solid #f4c400;
    outline-offset: 3px;
}

/* Adaptation mobile */

@media (max-width: 600px) {

    .google-reviews {
        padding: 55px 18px;
    }

    .google-reviews h2 {
        font-size: 1.6rem;
    }

    .google-reviews-text {
        font-size: 0.95rem;
    }

    .google-review-button {
        width: 100%;
        max-width: 320px;
    }

        }/* =========================
   AVIS GOOGLE + QR CODE
========================= */

.google-review {
    max-width: 620px;
    margin: 60px auto 20px;
    padding: 35px 25px;
    text-align: center;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

.google-review h3 {
    margin-bottom: 15px;
    font-size: 1.7rem;
    color: #061b3a;
}

.google-review p {
    max-width: 500px;
    margin: 0 auto 25px;
    line-height: 1.7;
    color: #555;
}

.qr-code-box {
    width: min(100%, 360px);
    margin: 25px auto;
    padding: 12px;
    background: #ffffff;
    border: 3px solid #061b3a;
    border-radius: 18px;
}

.qr-code-box img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.google-review-button {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 25px;
    background: #061b3a;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 30px;
    transition: 0.3s ease;
}

.google-review-button:hover {
    background: #f5c400;
    color: #061b3a;
    transform: translateY(-2px);
}

/* MOBILE */
@media (max-width: 600px) {

    .google-review {
        margin: 40px 15px 20px;
        padding: 28px 15px;
        border-radius: 16px;
    }

    .google-review h3 {
        font-size: 1.4rem;
    }

    .google-review p {
        font-size: 0.95rem;
    }

    .qr-code-box {
        width: min(100%, 300px);
        padding: 8px;
    }

    .google-review-button {
        width: 100%;
        box-sizing: border-box;
        padding: 13px 15px;
    }
}/* =========================================
   BOUTON PHOTOS - WHATSAPP
========================================= */

.photos-projet {
    margin-top: 25px;
    padding: 20px;
    text-align: center;
    border-radius: 14px;
    background: #f5f7fa;
}

.photos-projet-title {
    margin: 0 0 8px;
    font-size: 1rem;
    font-weight: 700;
    color: #071b38;
}

.photos-projet-text {
    margin: 0 auto 16px;
    max-width: 600px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #555;
}

.photos-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    padding: 13px 22px;
    border-radius: 10px;

    background: #25D366;
    color: #ffffff;

    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;

    box-shadow: 0 5px 14px rgba(37, 211, 102, 0.25);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.photos-whatsapp:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(37, 211, 102, 0.32);
}

.photos-whatsapp:active {
    transform: scale(0.97);
}


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

@media (max-width: 768px) {

    .photos-projet {
        padding: 18px 14px;
    }

    .photos-whatsapp {
        width: 100%;
        box-sizing: border-box;
        padding: 14px 16px;
    }

}
    /* =========================================
   BOUTON ENVOYER LE MESSAGE
========================================= */

.contact-form button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    padding: 14px 20px;

    border: none;
    border-radius: 10px;

    background: #061b3a;
    color: #ffffff;

    font-size: 0.95rem;
    font-weight: 700;

    cursor: pointer;

    box-shadow: 0 5px 14px rgba(6, 27, 58, 0.22);

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.contact-form button:hover {
    background: #0b2d5c;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(6, 27, 58, 0.28);
}

.contact-form button:active {
    transform: scale(0.97);
}

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

@media (max-width: 768px) {

    .contact-form button {
        padding: 15px 18px;
        font-size: 1rem;
    }

}
    /* =========================================
   CHAMPS DU FORMULAIRE DE CONTACT
========================================= */

.contact-form input,
.contact-form textarea {
    width: 100%;
    box-sizing: border-box;

    padding: 14px 16px;

    border: 1px solid #d5dbe3;
    border-radius: 10px;

    background: #ffffff;
    color: #071b38;

    font-family: inherit;
    font-size: 0.95rem;

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #888;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #061b3a;
    box-shadow: 0 0 0 3px rgba(6, 27, 58, 0.10);
}

.contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

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

@media (max-width: 768px) {

    .contact-form input,
    .contact-form textarea {
        padding: 15px 14px;
        font-size: 1rem;
    }

}
    /* =========================================
   BOUTON APPELEZ-NOUS - HERO
========================================= */

.call-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-top: 20px;
    padding: 14px 24px;

    border-radius: 10px;
    border: 2px solid #ffffff;

    background: #ffffff;
    color: #061b3a;

    font-size: 0.95rem;
    font-weight: 700;

    text-decoration: none;

    box-shadow: 0 5px 14px rgba(0, 0, 0, 0.18);

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease;
}

.call-button:hover {
    background: #061b3a;
    color: #ffffff;

    transform: translateY(-2px);

    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

.call-button:active {
    transform: scale(0.97);
}

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

@media (max-width: 768px) {

    .call-button {
        width: 100%;
        box-sizing: border-box;

        padding: 15px 18px;

        font-size: 1rem;
    }

        }
    /* =========================================
   BOUTON WHATSAPP - HERO
========================================= */

.hero-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-top: 20px;
    margin-left: 10px;
    padding: 14px 24px;

    border-radius: 10px;
    border: 2px solid #25D366;

    background: #25D366;
    color: #ffffff;

    font-size: 0.95rem;
    font-weight: 700;

    text-decoration: none;

    box-shadow: 0 5px 14px rgba(37, 211, 102, 0.25);

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.hero-whatsapp:hover {
    background: #1ebe5d;
    border-color: #1ebe5d;

    transform: translateY(-2px);

    box-shadow: 0 8px 18px rgba(37, 211, 102, 0.32);
}

.hero-whatsapp:active {
    transform: scale(0.97);
}

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

@media (max-width: 768px) {

    .hero-whatsapp {
        width: 100%;
        box-sizing: border-box;

        margin-left: 0;
        margin-top: 12px;

        padding: 15px 18px;

        font-size: 1rem;
    }

}
    /* =========================================
   FOOTER - DESIGN PROFESSIONNEL
========================================= */

footer {
    margin-top: 40px;
    padding: 35px 20px 25px;

    background: #061b3a;
    color: #ffffff;

    text-align: center;

    border-top: 3px solid #f2c94c;
}

footer img {
    width: 90px;
    height: 90px;

    object-fit: contain;

    margin-bottom: 15px;

    border-radius: 50%;
}

footer p {
    max-width: 700px;
    margin: 0 auto;

    font-size: 0.9rem;
    line-height: 1.7;

    color: #e6ebf2;
}

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

@media (max-width: 768px) {

    footer {
        margin-top: 30px;
        padding: 30px 15px 22px;
    }

    footer img {
        width: 80px;
        height: 80px;
    }

    footer p {
        font-size: 0.85rem;
        line-height: 1.6;
    }

}
    /* =========================================
   BOUTONS CONTACT - DOMAINES
========================================= */

.contact-call-button,
.contact-whatsapp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
    padding: 14px 18px;
    margin-bottom: 12px;
    border-radius: 10px;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        opacity 0.2s ease;
}

.contact-call-button {
    background: #061b3a;
    box-shadow: 0 5px 14px rgba(6, 27, 58, 0.22);
}

.contact-whatsapp-button {
    background: #25D366;
    box-shadow: 0 5px 14px rgba(37, 211, 102, 0.25);
}

.contact-call-button:hover,
.contact-whatsapp-button:hover {
    transform: translateY(-2px);
}

.contact-call-button:active,
.contact-whatsapp-button:active {
    transform: scale(0.97);
}

.contact-phone {
    margin: 8px 0;
}
    /* =========================================
   FORMULAIRE CLIENT — NEXA AFRITECH
========================================= */

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 15px 16px;
    margin-bottom: 15px;
    border: 1px solid #d7dce3;
    border-radius: 10px;
    background: #ffffff;
    color: #071b38;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    outline: none;
    transition: 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #f5c400;
    box-shadow: 0 0 0 3px rgba(245, 196, 0, 0.15);
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form select {
    appearance: auto;
    cursor: pointer;
}

.contact-form button {
    width: 100%;
    padding: 15px 20px;
    border: none;
    border-radius: 10px;
    background: #f5c400;
    color: #061b3a;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease;
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}


/* =========================================
   ENVOI DES PHOTOS SUR WHATSAPP
========================================= */

.photo-whatsapp {
    margin-top: 30px;
    padding: 25px 20px;
    text-align: center;
    background: #f5f7fa;
    border: 1px solid #e1e5ea;
    border-radius: 15px;
}

.photo-whatsapp h3 {
    margin-bottom: 10px;
    color: #061b3a;
    font-size: 20px;
}

.photo-whatsapp p {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.6;
}

.photo-whatsapp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 22px;
    background: #25D366;
    color: #ffffff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
    font-size: 15px;
    transition: 0.3s ease;
}

.photo-whatsapp-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.30);
}


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

@media (max-width: 768px) {

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        font-size: 16px;
        padding: 14px;
    }

    .photo-whatsapp {
        padding: 22px 15px;
    }

    .photo-whatsapp-button {
        width: 100%;
        box-sizing: border-box;
    }
}
    /* Titre des champs du formulaire */
.form-label {
    display: block;
    margin-bottom: 8px;
    color: #071b38;
    font-weight: bold;
    font-size: 15px;
}
/* =========================================
   PAGE RECRUTEMENT — NEXA AFRITECH
========================================= */

/* =========================
   EN-TÊTE RECRUTEMENT
========================= */

.recrutement-header {
    background: #061b3a;
    color: #ffffff;
    text-align: center;
    padding: 70px 20px 60px;
}

.recrutement-header h1 {
    max-width: 850px;
    margin: 0 auto 15px;
    font-size: clamp(32px, 5vw, 48px);
    line-height: 1.2;
}

.recrutement-header > p:last-child {
    max-width: 750px;
    margin: 0 auto;
    color: #dce3ed;
    font-size: 17px;
    line-height: 1.7;
}


/* =========================
   PRÉSENTATION RECRUTEMENT
========================= */

.recrutement-info {
    padding: 70px 7%;
    background: #f5f7fa;
    text-align: center;
}

.recrutement-info-content {
    max-width: 800px;
    margin: 0 auto 45px;
}

.recrutement-info-content h2 {
    margin-bottom: 15px;
    color: #071b38;
    font-size: clamp(28px, 4vw, 38px);
}

.recrutement-info-content p {
    color: #555;
    font-size: 17px;
    line-height: 1.7;
}


/* =========================
   CARTES RECRUTEMENT
========================= */

.recrutement-cards {
    max-width: 1100px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 25px;
}

.recrutement-card {
    padding: 30px 25px;

    background: #ffffff;
    border-radius: 16px;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.10);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.recrutement-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.16);
}

.recrutement-icon {
    width: 65px;
    height: 65px;

    margin: 0 auto 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffc400;
    color: #071b38;

    border-radius: 50%;

    font-size: 30px;
}

.recrutement-card h3 {
    margin-bottom: 12px;
    color: #071b38;
    font-size: 20px;
}

.recrutement-card p {
    color: #555;
    font-size: 15px;
    line-height: 1.65;
}


/* =========================
   SECTION CANDIDATURE
========================= */

.recrutement-section {
    padding: 70px 20px;
    background: #ffffff;
}

.recrutement-form-container {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.recrutement-form-container h2 {
    margin-bottom: 12px;
    color: #071b38;
    font-size: clamp(28px, 4vw, 40px);
}

.recrutement-intro {
    max-width: 700px;
    margin: 0 auto 35px;
    color: #555;
    font-size: 17px;
    line-height: 1.7;
}


/* =========================
   FORMULAIRE RECRUTEMENT
========================= */

.recrutement-form {
    padding: 35px 30px;

    background: #f5f7fa;
    border-radius: 18px;

    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.10);

    text-align: left;
}

.recrutement-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.recrutement-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.recrutement-form-group.full {
    grid-column: 1 / -1;
}


/* =========================
   LABELS
========================= */

.recrutement-form-group label {
    color: #071b38;
    font-size: 15px;
    font-weight: bold;
}


/* =========================
   CHAMPS
========================= */

.recrutement-form input[type="text"],
.recrutement-form input[type="email"],
.recrutement-form input[type="tel"],
.recrutement-form select,
.recrutement-form textarea {
    width: 100%;
    box-sizing: border-box;

    padding: 14px 16px;

    border: 1px solid #d7dce3;
    border-radius: 10px;

    background: #ffffff;
    color: #071b38;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;

    outline: none;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.recrutement-form textarea {
    min-height: 170px;
    resize: vertical;
}

.recrutement-form select {
    cursor: pointer;
}

.recrutement-form input[type="text"]:focus,
.recrutement-form input[type="email"]:focus,
.recrutement-form input[type="tel"]:focus,
.recrutement-form select:focus,
.recrutement-form textarea:focus {
    border-color: #ffc400;

    box-shadow:
        0 0 0 3px rgba(255, 196, 0, 0.15);
}


/* =========================
   CHAMP CV
========================= */

.recrutement-form input[type="file"] {
    width: 100%;
    box-sizing: border-box;

    padding: 12px;

    border: 1px dashed #9aa7b8;
    border-radius: 10px;

    background: #ffffff;

    color: #071b38;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;

    cursor: pointer;
}

.recrutement-form-group small {
    color: #666;
    font-size: 13px;
    line-height: 1.5;
}


/* =========================
   CONSENTEMENT
========================= */

.recrutement-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;

    margin-top: 25px;

    color: #555;

    font-size: 14px;
    line-height: 1.6;

    cursor: pointer;
}

.recrutement-consent input {
    width: 18px;
    height: 18px;

    flex: 0 0 auto;

    margin-top: 2px;

    accent-color: #061b3a;

    cursor: pointer;
}


/* =========================
   BOUTON ENVOI
========================= */

.recrutement-submit {
    width: 100%;
    margin-top: 25px;

    padding: 16px 25px;

    border: none;
    border-radius: 10px;

    background: #ffc400;
    color: #071b38;

    font-size: 17px;
    font-weight: bold;

    cursor: pointer;

    box-shadow: 0 5px 14px rgba(0, 0, 0, 0.15);

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.recrutement-submit:hover {
    background: #ffd633;

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.20);
}

.recrutement-submit:active {
    transform: scale(0.98);
}


/* =========================
   NOTE CONFIDENTIALITÉ
========================= */

.recrutement-note {
    margin: 18px 0 0;

    text-align: center;

    color: #666;

    font-size: 13px;
    line-height: 1.6;
}


/* =========================
   ACCESSIBILITÉ
========================= */

.recrutement-form input:focus-visible,
.recrutement-form select:focus-visible,
.recrutement-form textarea:focus-visible,
.recrutement-submit:focus-visible {
    outline: 3px solid #ffc400;
    outline-offset: 3px;
}


/* =========================
   TABLETTE
========================= */

@media (max-width: 900px) {

    .recrutement-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


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

@media (max-width: 768px) {

    .recrutement-header {
        padding: 55px 20px 45px;
    }

    .recrutement-header h1 {
        font-size: 34px;
    }

    .recrutement-header > p:last-child {
        font-size: 16px;
    }

    .recrutement-info {
        padding: 55px 20px;
    }

    .recrutement-info-content h2 {
        font-size: 30px;
    }

    .recrutement-info-content p {
        font-size: 16px;
    }

    .recrutement-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .recrutement-section {
        padding: 55px 15px;
    }

    .recrutement-form-container h2 {
        font-size: 30px;
    }

    .recrutement-intro {
        font-size: 16px;
    }

    .recrutement-form {
        padding: 25px 18px;
        border-radius: 15px;
    }

    .recrutement-form-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .recrutement-form-group.full {
        grid-column: auto;
    }

    .recrutement-form input[type="text"],
    .recrutement-form input[type="email"],
    .recrutement-form input[type="tel"],
    .recrutement-form select,
    .recrutement-form textarea {
        font-size: 16px;
        padding: 15px 14px;
    }

    .recrutement-submit {
        padding: 16px 18px;
        font-size: 16px;
    }

                     }

    
    /* =========================
   BOUTON CV WHATSAPP
========================= */

.whatsapp-cv-button {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 100%;

    padding: 15px 20px;

    background: #25D366;
    color: #ffffff;

    border-radius: 10px;

    text-decoration: none;

    font-size: 16px;
    font-weight: bold;

    transition: 0.3s;
}

.whatsapp-cv-button:hover {
    background: #1ebe5d;

    transform: translateY(-2px);
}
    /* =========================================
   PAGE À PROPOS — NEXA AFRITECH
========================================= */

/* =========================
   EN-TÊTE
========================= */

.apropos-header {
    background: #061b3a;
    color: #ffffff;
    text-align: center;
    padding: 70px 20px 60px;
}

.apropos-header h1 {
    max-width: 850px;
    margin: 0 auto 15px;
    font-size: clamp(32px, 5vw, 48px);
    line-height: 1.2;
}

.apropos-header > p:last-child {
    max-width: 780px;
    margin: 0 auto;
    color: #dce3ed;
    font-size: 17px;
    line-height: 1.7;
}


/* =========================
   PRÉSENTATION
========================= */

.apropos-presentation {
    padding: 75px 7%;
    background: #ffffff;
}

.apropos-presentation-content {
    max-width: 900px;
    margin: 0 auto;
}

.apropos-text {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.apropos-text h2 {
    margin-bottom: 15px;
    color: #071b38;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.3;
}

.apropos-text p:not(.section-subtitle) {
    margin: 0 auto 18px;
    color: #555;
    font-size: 17px;
    line-height: 1.8;
}


/* =========================
   DOMAINES D'ACTIVITÉ
========================= */

.apropos-domains {
    padding: 75px 7%;
    background: #f5f7fa;
}

.apropos-section-intro {
    max-width: 800px;
    margin: 0 auto 45px;
    text-align: center;
}

.apropos-section-intro h2 {
    margin-bottom: 15px;
    color: #071b38;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.3;
}

.apropos-section-intro p:last-child {
    color: #555;
    font-size: 17px;
    line-height: 1.7;
}

.apropos-domains-grid {
    max-width: 1150px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 25px;
}

.apropos-domain-card {
    padding: 30px 22px;
    background: #ffffff;
    border-radius: 16px;
    text-align: center;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.10);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.apropos-domain-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 14px 32px rgba(0, 0, 0, 0.16);
}

.apropos-domain-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffc400;
    border-radius: 50%;

    font-size: 30px;
}

.apropos-domain-card h3 {
    margin-bottom: 12px;
    color: #071b38;
    font-size: 20px;
}

.apropos-domain-card p {
    color: #555;
    font-size: 15px;
    line-height: 1.65;
}


/* =========================
   NOTRE APPROCHE
========================= */

.apropos-work {
    padding: 75px 7%;
    background: #ffffff;
}

.apropos-work-content {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.apropos-work h2 {
    margin-bottom: 35px;
    color: #071b38;
    font-size: clamp(28px, 4vw, 40px);
}

.apropos-work-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 25px;
}

.apropos-work-item {
    padding: 30px 25px;
    border-radius: 16px;
    background: #f5f7fa;
    text-align: left;
}

.apropos-work-item span {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 46px;
    height: 46px;
    margin-bottom: 18px;

    border-radius: 50%;

    background: #ffc400;
    color: #071b38;

    font-size: 16px;
    font-weight: bold;
}

.apropos-work-item h3 {
    margin-bottom: 10px;
    color: #071b38;
    font-size: 20px;
}

.apropos-work-item p {
    margin: 0;
    color: #555;
    font-size: 15px;
    line-height: 1.7;
}


/* =========================
   NOS ENGAGEMENTS
========================= */

.apropos-engagements {
    padding: 75px 7%;
    background: #f5f7fa;
}

.apropos-engagements-grid {
    max-width: 1100px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.apropos-engagement {
    padding: 28px 22px;
    background: #ffffff;
    border-radius: 14px;
    text-align: center;

    border-top: 4px solid #ffc400;
}

.apropos-engagement h3 {
    margin-bottom: 10px;
    color: #071b38;
    font-size: 19px;
}

.apropos-engagement p {
    margin: 0;
    color: #555;
    font-size: 15px;
    line-height: 1.65;
}


/* =========================
   CONCLUSION
========================= */

.apropos-conclusion {
    padding: 80px 20px;
    background: #061b3a;
    text-align: center;
}

.apropos-conclusion-content {
    max-width: 800px;
    margin: 0 auto;
}

.apropos-conclusion h2 {
    margin-bottom: 18px;
    color: #ffffff;
    font-size: clamp(28px, 4vw, 40px);
}

.apropos-conclusion p {
    margin: 0 auto 30px;
    color: #dce3ed;
    font-size: 17px;
    line-height: 1.8;
}

.apropos-contact-button {
    display: inline-block;

    padding: 15px 28px;

    background: #ffc400;
    color: #071b38;

    border-radius: 10px;

    font-size: 16px;
    font-weight: bold;
    text-decoration: none;

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.apropos-contact-button:hover {
    background: #ffd633;
    transform: translateY(-2px);
}


/* =========================
   TABLETTE
========================= */

@media (max-width: 1000px) {

    .apropos-domains-grid,
    .apropos-engagements-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


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

@media (max-width: 768px) {

    .apropos-header {
        padding: 55px 20px 45px;
    }

    .apropos-header h1 {
        font-size: 34px;
    }

    .apropos-header > p:last-child {
        font-size: 16px;
    }

    .apropos-presentation,
    .apropos-domains,
    .apropos-work,
    .apropos-engagements {
        padding: 55px 20px;
    }

    .apropos-text h2,
    .apropos-section-intro h2,
    .apropos-work h2,
    .apropos-conclusion h2 {
        font-size: 30px;
    }

    .apropos-text p:not(.section-subtitle),
    .apropos-section-intro p:last-child,
    .apropos-conclusion p {
        font-size: 16px;
    }

    .apropos-domains-grid,
    .apropos-work-grid,
    .apropos-engagements-grid {
        grid-template-columns: 1fr;
    }

    .apropos-work-item {
        text-align: center;
    }

    .apropos-conclusion {
        padding: 60px 20px;
    }

        }
    /* =========================================
   PAGE POLITIQUE DE CONFIDENTIALITÉ
========================================= */

/* =========================
   EN-TÊTE
========================= */

.confidentialite-header {
    background: #061b3a;
    color: #ffffff;
    text-align: center;
    padding: 70px 20px 60px;
}

.confidentialite-header h1 {
    max-width: 900px;
    margin: 0 auto 15px;
    font-size: clamp(32px, 5vw, 48px);
    line-height: 1.2;
}

.confidentialite-header > p:last-child {
    max-width: 780px;
    margin: 0 auto;
    color: #dce3ed;
    font-size: 17px;
    line-height: 1.7;
}


/* =========================
   CONTENU
========================= */

.confidentialite-content {
    padding: 75px 7%;
    background: #f5f7fa;
}

.confidentialite-container {
    max-width: 950px;
    margin: 0 auto;
}

.confidentialite-block {
    margin-bottom: 22px;
    padding: 30px;
    background: #ffffff;
    border-radius: 14px;

    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
}

.confidentialite-block h2 {
    margin: 0 0 16px;
    color: #071b38;
    font-size: 23px;
    line-height: 1.35;
}

.confidentialite-block p {
    margin: 0 0 14px;
    color: #555;
    font-size: 16px;
    line-height: 1.8;
}

.confidentialite-block p:last-child {
    margin-bottom: 0;
}


/* =========================
   BLOC CONTACT
========================= */

.confidentialite-contact {
    margin-top: 40px;
    text-align: center;
    border-top: 4px solid #ffc400;
}

.confidentialite-contact h2 {
    font-size: 28px;
}

.confidentialite-contact p {
    max-width: 700px;
    margin-right: auto;
    margin-left: auto;
}

.confidentialite-button {
    display: inline-block;
    margin-top: 10px;
    padding: 14px 28px;

    background: #ffc400;
    color: #071b38;

    border-radius: 10px;

    font-size: 16px;
    font-weight: bold;
    text-decoration: none;

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.confidentialite-button:hover {
    background: #ffd633;
    transform: translateY(-2px);
}


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

@media (max-width: 768px) {

    .confidentialite-header {
        padding: 55px 20px 45px;
    }

    .confidentialite-header h1 {
        font-size: 34px;
    }

    .confidentialite-header > p:last-child {
        font-size: 16px;
    }

    .confidentialite-content {
        padding: 50px 20px;
    }

    .confidentialite-block {
        padding: 24px 20px;
        margin-bottom: 18px;
    }

    .confidentialite-block h2 {
        font-size: 21px;
    }

    .confidentialite-block p {
        font-size: 15.5px;
        line-height: 1.75;
    }

        }
    /* =========================================
   RÉSEAUX SOCIAUX - FOOTER
========================================= */

footer .footer-separator {
    width: 80%;
    max-width: 450px;
    margin: 25px auto 22px;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.35);
}

footer .footer-social-links {
    width: 100%;
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    gap: 12px;
    margin: 0 auto;
    padding: 0 20px 25px;
    box-sizing: border-box;
}

footer .footer-social-links a {
    display: block !important;
    text-align: center;
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
}

footer .footer-social-links a:hover {
    color: #ffc400 !important;
}


/* =========================
   PETITS ÉCRANS
========================= */

@media (max-width: 480px) {

    footer .footer-social-links {
        gap: 8px;
        padding-right: 15px;
        padding-left: 15px;
    }

    footer .footer-social-links a {
        font-size: 16px;
    }

}
    /* ÉNORME LOGO DISCRET EN ARRIÈRE-PLAN DE L'ACCUEIL */

.hero-logo {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;

    width: 900px !important;
    height: 900px !important;

    opacity: 0.09 !important;
    pointer-events: none !important;
    z-index: 1 !important;
}

.hero-logo img {
    width: 100% !important;
    height: 100% !important;

    object-fit: contain !important;
    background: transparent !important;
    border-radius: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
}


/* VERSION TÉLÉPHONE */

@media (max-width: 768px) {

    .hero-logo {
        left: 50% !important;
        top: 50% !important;

        width: 700px !important;
        height: 700px !important;

        opacity: 0.08 !important;
    }

}

    /* LOGO DISCRET EN ARRIÈRE-PLAN — SECTION BIENVENUE */

.why-us {
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: "";
    position: absolute;
    width: 650px;
    height: 650px;
    background-image: url("logo.webp");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.07;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}

.why-us > * {
    position: relative;
    z-index: 1;
}


/* VERSION TÉLÉPHONE */

@media (max-width: 768px) {

    .why-us::before {
        width: 520px;
        height: 520px;
        opacity: 0.06;
    }

}
    /* FORCE LE LOGO EN ARRIÈRE-PLAN — SECTION BIENVENUE */

.why-us {
    position: relative !important;
    overflow: hidden !important;
    isolation: isolate !important;
}

.why-us::before {
    content: "" !important;
    position: absolute !important;
    width: 700px !important;
    height: 700px !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;

    background-image: url("logo.webp") !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: contain !important;

    opacity: 0.12 !important;
    pointer-events: none !important;
    z-index: 0 !important;
}

.why-us > * {
    position: relative !important;
    z-index: 1 !important;
}

@media (max-width: 768px) {

    .why-us::before {
        width: 650px !important;
        height: 650px !important;
        opacity: 0.10 !important;
    }

}
