/* ================================
   VARIABLES
================================ */

:root {
    --primary-blue: #123f7a;
    --dark-blue: #0a2854;
    --light-blue: #eaf3ff;
    --white: #ffffff;
    --text-dark: #172033;
    --border-color: #e8edf4;

    --header-height: 76px;

    --transition: 0.3s ease;
}


/* ================================
   HEADER
================================ */

.site-header {
    position: sticky;
    top: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid transparent;
    z-index: 1000;

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    transition: 
        box-shadow var(--transition),
        border-color var(--transition);
}

.site-header.scrolled {
    border-color: var(--border-color);
    box-shadow: 0 8px 30px rgba(10, 40, 84, 0.08);
}


.header-container {
    width: min(100% - 32px, 1200px);
    height: 100%;
    margin: auto;

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

    gap: 20px;
}


/* ================================
   LOGO
================================ */

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo img {
    display: block;
    width: 150px;
    height: auto;
}


/* ================================
   DESKTOP NAV
================================ */

.desktop-nav {
    display: none;
    align-items: center;
    gap: 32px;
}

.nav-link {
    position: relative;

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

    color: #5d6675;
    text-decoration: none;

    transition: color var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-blue);
}

.nav-link.active::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -10px;

    width: 100%;
    height: 2px;

    background: var(--primary-blue);
    border-radius: 20px;
}


/* ================================
   HEADER ACTIONS
================================ */

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}


.whatsapp-btn {
    display: none;

    align-items: center;
    justify-content: center;
    gap: 8px;

    padding: 12px 18px;

    background: var(--primary-blue);
    color: var(--white);

    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;

    border-radius: 10px;

    transition:
        transform var(--transition),
        background var(--transition),
        box-shadow var(--transition);
}

.whatsapp-btn:hover {
    background: var(--dark-blue);

    transform: translateY(-2px);

    box-shadow: 0 8px 20px rgba(18, 63, 122, 0.22);
}

.whatsapp-btn svg {
    width: 18px;
    height: 18px;
}


/* ================================
   MENU MOBILE BUTTON
================================ */

.menu-toggle {
    width: 46px;
    height: 46px;

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

    background: var(--light-blue);
    color: var(--primary-blue);

    border: 1px solid transparent;
    border-radius: 12px;

    cursor: pointer;

    transition: all var(--transition);
}

.menu-toggle:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.menu-toggle svg {
    width: 22px;
    height: 22px;
}


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

.mobile-menu {
    position: fixed;

    top: var(--header-height);
    left: 0;

    width: 100%;
    height: calc(100vh - var(--header-height));

    background: rgba(255, 255, 255, 0.98);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    z-index: 999;

    opacity: 0;
    visibility: hidden;

    transform: translateY(-10px);

    transition:
        opacity var(--transition),
        visibility var(--transition),
        transform var(--transition);
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}


.mobile-menu-content {
    width: min(100% - 40px, 500px);
    height: 100%;

    margin: auto;

    padding: 35px 0 40px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


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

.mobile-nav {
    display: flex;
    flex-direction: column;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 20px 0;

    border-bottom: 1px solid var(--border-color);

    color: var(--text-dark);
    text-decoration: none;

    font-size: 1.25rem;
    font-weight: 600;

    transition: color var(--transition);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--primary-blue);
}

.mobile-nav-link svg {
    width: 20px;
    height: 20px;
}


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

.mobile-contact {
    padding: 20px;

    background: var(--light-blue);

    border-radius: 16px;
}

.mobile-contact p {
    margin-bottom: 14px;

    color: #667085;

    font-size: 0.9rem;
}


.mobile-whatsapp {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 15px;

    background: var(--primary-blue);
    color: var(--white);

    border-radius: 10px;

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

    text-decoration: none;
}

.mobile-whatsapp svg {
    width: 20px;
    height: 20px;
}


/* ================================
   DESKTOP
================================ */

@media (min-width: 900px) {

    .logo img {
        width: 175px;
    }

    .desktop-nav {
        display: flex;
    }

    .whatsapp-btn {
        display: flex;
    }

    .menu-toggle {
        display: none;
    }

    .mobile-menu {
        display: none;
    }

}

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

.site-footer {
    margin-top: 80px;
    background: #0a2854;
    color: #ffffff;
}


/* =========================================
   CONTAINER
========================================= */

.footer-container {
    width: min(100% - 40px, 1200px);
    margin: 0 auto;
    padding: 60px 0 45px;

    display: grid;
    grid-template-columns: 1fr;
    gap: 45px;
}


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

.footer-brand {
    max-width: 380px;
}

.footer-logo {
    display: inline-flex;
    margin-bottom: 22px;
}

.footer-logo img {
    width: 170px;
    height: auto;
    display: block;
}

.footer-brand p {
    margin: 0;

    color: rgba(255, 255, 255, 0.72);

    font-size: 0.95rem;
    line-height: 1.8;
}


/* =========================================
   SOCIAL LINKS
========================================= */

.footer-socials {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-top: 25px;
}

.footer-socials a {
    width: 42px;
    height: 42px;

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

    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;

    color: #ffffff;
    text-decoration: none;

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

.footer-socials a:hover {
    background: #1d5da8;
    border-color: #1d5da8;

    transform: translateY(-3px);
}

.footer-socials svg {
    width: 19px;
    height: 19px;
}


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

.footer-column h3 {
    margin: 0 0 22px;

    color: #ffffff;

    font-size: 1.05rem;
    font-weight: 600;
}

.footer-column ul {
    padding: 0;
    margin: 0;

    list-style: none;
}

.footer-column ul li {
    margin-bottom: 15px;
}

.footer-column ul a {
    color: rgba(255, 255, 255, 0.7);

    font-size: 0.95rem;

    text-decoration: none;

    transition:
        color 0.3s ease,
        padding-left 0.3s ease;
}

.footer-column ul a:hover {
    color: #ffffff;
    padding-left: 5px;
}


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

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

    gap: 16px;
}

.footer-contact h3 {
    width: 100%;
}

.footer-contact a,
.footer-address {
    display: flex;
    align-items: flex-start;

    gap: 12px;

    color: rgba(255, 255, 255, 0.72);

    font-size: 0.92rem;
    line-height: 1.65;

    text-decoration: none;

    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #ffffff;
}

.footer-contact svg,
.footer-address svg {
    width: 19px;
    height: 19px;

    min-width: 19px;

    margin-top: 3px;

    color: #7fb8ff;
}


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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom-container {
    width: min(100% - 40px, 1200px);
    margin: 0 auto;

    padding: 25px 0;

    display: flex;
    flex-direction: column;

    gap: 12px;

    color: rgba(255, 255, 255, 0.6);

    font-size: 0.82rem;
    line-height: 1.6;
}

.footer-bottom p {
    margin: 0;
}


/* =========================================
   DEVELOPER CREDIT
========================================= */

.developer-credit span {
    color: #ffffff;
    font-weight: 600;
}

.developer-credit strong {
    color: #7fb8ff;
    font-weight: 600;
}


/* =========================================
   TABLET
========================================= */

@media (min-width: 700px) {

    .footer-container {
        grid-template-columns: 1.4fr 0.8fr 1.2fr;
        gap: 50px;
    }

}


/* =========================================
   DESKTOP
========================================= */

@media (min-width: 900px) {

    .footer-container {
        padding: 75px 0 55px;
    }

    .footer-bottom-container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

}

/* =====================================
   VARIABLES
===================================== */

:root {
    --primary-blue: #0d4d9c;
    --dark-blue: #062b5c;
    --light-blue: #eaf3ff;

    --white: #ffffff;
    --text-dark: #172033;
    --text-light: #667085;

    --transition: 0.3s ease;
}


/* =====================================
   BASE
===================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--white);
    color: var(--text-dark);
    font-family: Arial, sans-serif;
}

.container {
    width: min(100% - 40px, 1200px);
    margin: 0 auto;
}


/* =====================================
   HERO
===================================== */

.hero {
    position: relative;
    min-height: 720px;

    display: flex;
    align-items: center;

    overflow: hidden;
    background: var(--dark-blue);
}

.hero-image {
    position: absolute;
    inset: 0;

    background-image: url("../assets/images/accueil.png");
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(
        90deg,
        rgba(6, 43, 92, 0.97) 0%,
        rgba(6, 43, 92, 0.88) 55%,
        rgba(6, 43, 92, 0.35) 100%
    );
}

.hero-container {
    position: relative;
    z-index: 1;

    padding: 100px 0;
}

.hero-content {
    max-width: 720px;
}

.hero-label,
.section-label {
    margin-bottom: 16px;

    color: #8fc2ff;

    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero h1 {
    color: var(--white);

    font-size: clamp(2.7rem, 10vw, 5.5rem);
    line-height: 1.05;

    letter-spacing: -0.04em;
}

.hero h1 span {
    color: #8fc2ff;
}

.hero-description {
    max-width: 620px;

    margin-top: 24px;

    color: rgba(255, 255, 255, 0.8);

    font-size: 1rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;

    margin-top: 32px;
}

.btn-primary,
.btn-secondary {
    min-height: 54px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 0 22px;

    border-radius: 10px;

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

    text-decoration: none;

    transition: transform var(--transition);
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--white);
    color: var(--dark-blue);
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.3);

    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
}


/* =====================================
   INTRODUCTION
===================================== */

.intro-section {
    padding: 90px 0;
}

.intro-container {
    display: grid;
    gap: 45px;
}

.intro-image {
    overflow: hidden;
    border-radius: 20px;
}

.intro-image img {
    width: 100%;
    height: 100%;

    min-height: 320px;

    display: block;

    object-fit: cover;
}

.intro-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.intro-content h2 {
    max-width: 650px;

    font-size: clamp(2rem, 8vw, 3.5rem);
    line-height: 1.15;

    letter-spacing: -0.03em;
}

.intro-content h2 span {
    color: var(--primary-blue);
}

.intro-content p {
    margin-top: 20px;

    color: var(--text-light);

    line-height: 1.8;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-top: 28px;

    color: var(--primary-blue);

    font-weight: 700;
    text-decoration: none;
}

.text-link svg {
    width: 18px;
}


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

@media (min-width: 600px) {

    .hero-actions {
        flex-direction: row;
    }

}


/* =====================================
   DESKTOP
===================================== */

@media (min-width: 900px) {

    .intro-container {
        grid-template-columns: 1fr 1fr;
        align-items: center;

        gap: 80px;
    }

    .intro-image {
        min-height: 550px;
    }

}


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

.services-section {
    padding: 90px 0;
    background: #f5f8fc;
}

.section-heading {
    margin-bottom: 40px;
}

.section-heading-main h2 {
    margin-top: 10px;
    max-width: 760px;

    font-size: clamp(2rem, 8vw, 3.7rem);
    line-height: 1.12;
    letter-spacing: -0.04em;
}

.section-heading-main h2 span {
    color: var(--primary-blue);
}

.section-description {
    max-width: 580px;
    margin-top: 22px;

    color: var(--text-light);
    line-height: 1.8;
}


/* GRID */

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


/* CARD */

.service-card {
    padding: 28px;

    display: flex;
    flex-direction: column;

    background: var(--white);
    border: 1px solid rgba(13, 77, 156, 0.08);
    border-radius: 18px;

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 50px rgba(13, 77, 156, 0.10);
}


.service-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 24px;
}


.service-icon {
    width: 54px;
    height: 54px;

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

    background: var(--light-blue);
    color: var(--primary-blue);

    border-radius: 14px;
}

.service-icon svg {
    width: 25px;
    height: 25px;
}


.service-number {
    color: #aab5c5;

    font-size: 0.85rem;
    font-weight: 700;
}


.service-card h3 {
    font-size: 1.35rem;
    line-height: 1.3;

    margin-bottom: 14px;
}


.service-card > p {
    color: var(--text-light);
    line-height: 1.75;
}


/* LISTE DES PRESTATIONS */

.service-preview {
    list-style: none;

    margin-top: 24px;

    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-preview li {
    position: relative;

    padding-left: 20px;

    color: var(--text-dark);
    font-size: 0.93rem;
    line-height: 1.5;
}

.service-preview li::before {
    content: "";

    position: absolute;
    left: 0;
    top: 0.55em;

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--primary-blue);
}


/* LIEN */

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    width: fit-content;

    margin-top: 28px;

    color: var(--primary-blue);

    font-weight: 700;
    text-decoration: none;
}

.service-link svg {
    width: 17px;
    height: 17px;

    transition: transform var(--transition);
}

.service-link:hover svg {
    transform: translate(3px, -3px);
}


/* BOTTOM CTA */

.services-bottom {
    margin-top: 24px;
    padding: 28px;

    display: flex;
    flex-direction: column;
    gap: 24px;

    background: var(--dark-blue);
    border-radius: 18px;

    color: var(--white);
}

.services-bottom p {
    margin-bottom: 8px;

    color: #a9c9f4;
}

.services-bottom h3 {
    max-width: 550px;

    font-size: 1.35rem;
    line-height: 1.4;
}


/* TABLETTE */

@media (min-width: 650px) {

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* DESKTOP */

@media (min-width: 900px) {

    .section-heading {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        gap: 60px;
    }

    .section-description {
        margin-top: 0;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .service-card:last-child {
        grid-column: 2 / 3;
    }

    .services-bottom {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;

        padding: 40px;
    }

}


/* =====================================
   CHIFFRES CLÉS
===================================== */

.stats-section {
    padding: 90px 0;
    background: var(--dark-blue);
}

.stats-intro {
    max-width: 750px;
    margin-bottom: 45px;
}

.stats-intro .section-label {
    color: #8fc2ff;
}

.stats-intro h2 {
    margin-top: 10px;

    color: var(--white);

    font-size: clamp(2rem, 8vw, 3.7rem);
    line-height: 1.12;

    letter-spacing: -0.04em;
}

.stats-intro h2 span {
    color: #8fc2ff;
}

.stats-intro > p:last-child {
    margin-top: 20px;

    max-width: 600px;

    color: rgba(255, 255, 255, 0.72);

    line-height: 1.8;
}


/* GRID */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}


/* CARD */

.stat-card {
    padding: 24px 18px;

    display: flex;
    flex-direction: column;

    background: rgba(255, 255, 255, 0.07);

    border: 1px solid rgba(255, 255, 255, 0.1);

    border-radius: 16px;
}


/* ICON */

.stat-icon {
    width: 42px;
    height: 42px;

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

    margin-bottom: 22px;

    background: rgba(143, 194, 255, 0.12);

    border-radius: 12px;

    color: #8fc2ff;
}

.stat-icon svg {
    width: 21px;
    height: 21px;
}


/* NUMBER */

.stat-card strong {
    color: var(--white);

    font-size: clamp(2rem, 8vw, 3.5rem);
    line-height: 1;

    letter-spacing: -0.04em;
}


/* TEXT */

.stat-card span {
    margin-top: 10px;

    color: rgba(255, 255, 255, 0.65);

    font-size: 0.85rem;

    line-height: 1.5;
}


/* TABLET */

@media (min-width: 650px) {

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }

}


/* DESKTOP */

@media (min-width: 900px) {

    .stats-section {
        padding: 120px 0;
    }

    .stat-card {
        padding: 32px 28px;
    }

}

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

.why-us-section {
    padding: 90px 0;
    background: var(--white);
}

.why-us-container {
    display: grid;
    gap: 50px;
}


/* TITRE */

.why-us-content h2 {
    margin-top: 10px;

    max-width: 700px;

    font-size: clamp(2rem, 8vw, 3.7rem);
    line-height: 1.12;

    letter-spacing: -0.04em;
}

.why-us-content h2 span {
    color: var(--primary-blue);
}


/* DESCRIPTION */

.why-us-description {
    margin-top: 22px;

    max-width: 650px;

    color: var(--text-light);
    line-height: 1.8;
}


/* POINTS */

.why-us-points {
    margin-top: 35px;

    display: flex;
    flex-direction: column;
    gap: 26px;
}

.why-us-point {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}


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

    flex-shrink: 0;

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

    background: var(--light-blue);
    color: var(--primary-blue);

    border-radius: 13px;
}

.why-icon svg {
    width: 23px;
    height: 23px;
}


.why-us-point h3 {
    margin-bottom: 7px;

    font-size: 1.1rem;
}

.why-us-point p {
    color: var(--text-light);

    font-size: 0.93rem;
    line-height: 1.7;
}


/* BOUTON */

.why-us-content .btn-primary {
    margin-top: 38px;
}


/* VISUEL */

.why-us-visual {
    position: relative;

    min-height: 430px;

    overflow: hidden;

    border-radius: 22px;

    background: var(--light-blue);
}

.why-us-visual img {
    width: 100%;
    height: 100%;

    position: absolute;
    inset: 0;

    object-fit: cover;
}


/* BADGE */

.why-us-badge {
    position: absolute;

    left: 18px;
    right: 18px;
    bottom: 18px;

    display: flex;
    align-items: center;
    gap: 13px;

    padding: 17px;

    background: rgba(255, 255, 255, 0.95);

    border-radius: 15px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.why-us-badge > svg {
    width: 35px;
    height: 35px;

    padding: 7px;

    color: var(--primary-blue);

    background: var(--light-blue);

    border-radius: 10px;
}

.why-us-badge strong,
.why-us-badge span {
    display: block;
}

.why-us-badge strong {
    font-size: 0.95rem;
}

.why-us-badge span {
    margin-top: 3px;

    color: var(--text-light);

    font-size: 0.8rem;
}


/* DESKTOP */

@media (min-width: 900px) {

    .why-us-section {
        padding: 120px 0;
    }

    .why-us-container {
        grid-template-columns: 1fr 0.9fr;

        align-items: center;
        gap: 80px;
    }

    .why-us-visual {
        min-height: 650px;
    }

}

/* =====================================
   ZONE D'INTERVENTION
===================================== */

.coverage-section {
    padding: 70px 0;
    background: var(--light-blue);
}

.coverage-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}


.coverage-icon {
    width: 62px;
    height: 62px;

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

    background: var(--primary-blue);
    color: var(--white);

    border-radius: 18px;
}

.coverage-icon svg {
    width: 29px;
    height: 29px;
}


.coverage-content h2 {
    margin-top: 8px;

    font-size: clamp(2rem, 7vw, 3.2rem);
    line-height: 1.15;
}

.coverage-content h2 span {
    color: var(--primary-blue);
}

.coverage-content p:last-child {
    margin-top: 16px;

    max-width: 750px;

    color: var(--text-light);
    line-height: 1.8;
}


/* TABLETTE ET DESKTOP */

@media (min-width: 700px) {

    .coverage-section {
        padding: 80px 0;
    }

    .coverage-container {
        flex-direction: row;
        align-items: center;
        gap: 35px;
    }

}

/* =====================================
   TÉMOIGNAGES
===================================== */

.testimonials-section {
    padding: 90px 0;
    background: var(--white);
}

.testimonials-heading {
    max-width: 650px;
    margin-bottom: 40px;
}

.testimonials-heading h2 {
    margin-top: 10px;

    font-size: clamp(2rem, 8vw, 3.5rem);
    line-height: 1.12;

    letter-spacing: -0.04em;
}

.testimonials-heading h2 span {
    color: var(--primary-blue);
}

.testimonials-heading > p:last-child {
    margin-top: 18px;

    color: var(--text-light);
    line-height: 1.8;
}


/* GRID */

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


/* CARTE */

.testimonial-card {
    padding: 28px;

    display: flex;
    flex-direction: column;

    min-height: 280px;

    background: #f5f8fc;

    border: 1px solid rgba(13, 77, 156, 0.08);
    border-radius: 20px;
}

.quote-icon {
    width: 46px;
    height: 46px;

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

    margin-bottom: 22px;

    background: var(--primary-blue);
    color: var(--white);

    border-radius: 13px;
}

.quote-icon svg {
    width: 22px;
    height: 22px;
}


/* TEXTE */

.testimonial-text {
    color: var(--text-dark);

    font-size: 1rem;
    line-height: 1.8;
}


/* AUTEUR */

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-top: auto;
    padding-top: 28px;
}

.testimonial-avatar {
    width: 46px;
    height: 46px;

    flex-shrink: 0;

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

    background: var(--light-blue);
    color: var(--primary-blue);

    border-radius: 50%;

    font-size: 0.8rem;
    font-weight: 800;
}

.testimonial-author h3 {
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.8rem;
}


/* TABLETTE */

@media (min-width: 700px) {

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* DESKTOP */

@media (min-width: 1000px) {

    .testimonials-section {
        padding: 120px 0;
    }

    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}

/* =====================================
   CTA FINAL
===================================== */

.final-cta {
    padding: 90px 0;
    background: var(--dark-blue);
}

.final-cta-content {
    max-width: 800px;
}

.final-cta .section-label {
    color: #8fc2ff;
}

.final-cta h2 {
    margin-top: 10px;

    max-width: 700px;

    color: var(--white);

    font-size: clamp(2.3rem, 9vw, 4.5rem);
    line-height: 1.08;

    letter-spacing: -0.04em;
}

.final-cta h2 span {
    color: #8fc2ff;
}

.final-cta-content > p:last-of-type {
    max-width: 620px;
    margin-top: 22px;

    color: rgba(255, 255, 255, 0.72);

    line-height: 1.8;
}

.final-cta-buttons {
    display: flex;
    flex-direction: column;

    gap: 14px;

    margin-top: 32px;
}

.final-cta-buttons a {
    justify-content: center;
}


/* BOUTON WHATSAPP */

.btn-outline-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    padding: 15px 22px;

    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 10px;

    color: var(--white);

    font-weight: 700;
    text-decoration: none;

    transition: var(--transition);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--dark-blue);
}

.btn-outline-light svg {
    width: 19px;
    height: 19px;
}


/* TABLETTE */

@media (min-width: 650px) {

    .final-cta-buttons {
        flex-direction: row;
        align-items: center;
    }

    .final-cta-buttons a {
        width: auto;
    }

}


/* DESKTOP */

@media (min-width: 900px) {

    .final-cta {
        padding: 120px 0;
    }

}

/* =====================================
   EFFET INTERACTIF SUR LES CARTES
===================================== */

.service-card,
.stat-card,
.testimonial-card {
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


/* SURVOL - ORDINATEUR */

@media (hover: hover) {

    .service-card:hover,
    .stat-card:hover,
    .testimonial-card:hover {
        transform: translateY(-8px);

        box-shadow:
            0 20px 45px
            rgba(13, 77, 156, 0.15);

        border-color:
            rgba(13, 77, 156, 0.25);
    }

}


/* TOUCHER / CLIC - MOBILE ET ORDINATEUR */

.service-card:active,
.stat-card:active,
.testimonial-card:active {
    transform: scale(0.97);

    transition: transform 0.1s ease;
}

/* =====================================
   PAGE À PROPOS
===================================== */


/* =====================================
   HERO PAGE
===================================== */

.page-hero {
    padding: 150px 0 90px;
    background: var(--light-blue);
}

.page-hero-content {
    max-width: 850px;
}

.page-hero-content h1 {
    margin-top: 12px;
    max-width: 850px;

    font-size: clamp(2.5rem, 10vw, 5rem);
    line-height: 1.08;
    letter-spacing: -0.05em;
}

.page-hero-content h1 span {
    color: var(--primary-blue);
}

.page-hero-content > p:last-child {
    max-width: 650px;
    margin-top: 24px;

    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
}


/* =====================================
   NOTRE HISTOIRE
===================================== */

.about-story {
    padding: 90px 0;
    background: var(--white);
}

.about-story-container {
    display: grid;
    gap: 50px;
}


/* IMAGE */

.about-story-visual {
    position: relative;

    min-height: 420px;

    overflow: hidden;
    border-radius: 22px;

    background: var(--light-blue);
}

.about-story-visual img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* BADGE ANNÉE */

.about-year {
    position: absolute;

    left: 18px;
    bottom: 18px;

    display: flex;
    flex-direction: column;

    padding: 18px 22px;

    background: var(--primary-blue);
    color: var(--white);

    border-radius: 16px;
}

.about-year span {
    font-size: 0.8rem;
    opacity: 0.75;
}

.about-year strong {
    margin-top: 2px;

    font-size: 2rem;
    line-height: 1;
}


/* CONTENU */

.about-story-content h2 {
    margin-top: 10px;

    font-size: clamp(2rem, 8vw, 3.7rem);
    line-height: 1.12;

    letter-spacing: -0.04em;
}

.about-story-content h2 span {
    color: var(--primary-blue);
}

.about-story-content > p {
    margin-top: 18px;

    color: var(--text-light);
    line-height: 1.8;
}


/* HIGHLIGHT */

.about-story-highlight {
    display: flex;
    align-items: center;
    gap: 15px;

    margin-top: 30px;
    padding: 18px;

    background: var(--light-blue);

    border-radius: 16px;
}

.about-story-highlight > svg {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

    padding: 10px;

    background: var(--primary-blue);
    color: var(--white);

    border-radius: 12px;
}

.about-story-highlight strong,
.about-story-highlight span {
    display: block;
}

.about-story-highlight strong {
    margin-bottom: 4px;
}

.about-story-highlight span {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.5;
}


/* =====================================
   MISSION & VISION
===================================== */

.mission-vision {
    padding: 90px 0;
    background: #f5f8fc;
}

.mission-vision-heading {
    max-width: 750px;
    margin-bottom: 40px;
}

.mission-vision-heading h2 {
    margin-top: 10px;

    font-size: clamp(2rem, 8vw, 3.7rem);
    line-height: 1.12;

    letter-spacing: -0.04em;
}

.mission-vision-heading h2 span {
    color: var(--primary-blue);
}


/* GRID */

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}


/* CARD */

.mission-card {
    position: relative;

    padding: 30px;

    overflow: hidden;

    background: var(--white);

    border: 1px solid rgba(13, 77, 156, 0.08);
    border-radius: 20px;

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

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

    box-shadow:
        0 20px 45px
        rgba(13, 77, 156, 0.10);
}

.mission-icon {
    width: 56px;
    height: 56px;

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

    margin-bottom: 28px;

    background: var(--light-blue);
    color: var(--primary-blue);

    border-radius: 15px;
}

.mission-icon svg {
    width: 26px;
    height: 26px;
}


/* NUMÉRO */

.card-number {
    position: absolute;

    top: 30px;
    right: 30px;

    color: #b5c0ce;

    font-size: 0.85rem;
    font-weight: 700;
}


.mission-card h3 {
    margin-bottom: 12px;

    font-size: 1.4rem;
}

.mission-card p {
    color: var(--text-light);
    line-height: 1.8;
}


/* =====================================
   NOS CLIENTS
===================================== */

.about-clients {
    padding: 90px 0;
    background: var(--white);
}

.about-clients-content {
    max-width: 650px;
}

.about-clients-content h2 {
    margin-top: 10px;

    font-size: clamp(2rem, 8vw, 3.7rem);
    line-height: 1.12;

    letter-spacing: -0.04em;
}

.about-clients-content h2 span {
    color: var(--primary-blue);
}

.about-clients-content > p:last-child {
    margin-top: 18px;

    color: var(--text-light);
    line-height: 1.8;
}


/* CLIENTS GRID */

.clients-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 14px;

    margin-top: 35px;
}

.client-type {
    padding: 24px 16px;

    text-align: center;

    background: var(--light-blue);

    border-radius: 18px;

    transition: transform 0.3s ease;
}

.client-type:hover {
    transform: translateY(-5px);
}

.client-type svg {
    width: 28px;
    height: 28px;

    margin-bottom: 15px;

    color: var(--primary-blue);
}

.client-type h3 {
    font-size: 0.95rem;
    line-height: 1.4;
}


/* =====================================
   NOTRE ÉQUIPE
===================================== */

.team-section {
    padding: 90px 0;
    background: #f5f8fc;
}

.team-heading {
    max-width: 650px;
    margin-bottom: 40px;
}

.team-heading h2 {
    margin-top: 10px;

    font-size: clamp(2rem, 8vw, 3.7rem);
    line-height: 1.12;

    letter-spacing: -0.04em;
}

.team-heading h2 span {
    color: var(--primary-blue);
}

.team-heading > p:last-child {
    margin-top: 18px;

    color: var(--text-light);
    line-height: 1.8;
}


/* TEAM GRID */

.team-grid {
    display: grid;
    grid-template-columns: 1fr;

    gap: 20px;
}


/* TEAM CARD */

.team-card {
    overflow: hidden;

    background: var(--white);

    border: 1px solid rgba(13, 77, 156, 0.08);
    border-radius: 20px;

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

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

    box-shadow:
        0 20px 45px
        rgba(13, 77, 156, 0.10);
}

.team-image {
    height: 360px;

    overflow: hidden;

    background: var(--light-blue);
}

.team-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;
}

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


/* INFO */

.team-info {
    padding: 22px;
}

.team-info h3 {
    margin-bottom: 5px;

    font-size: 1.25rem;
}

.team-info span {
    color: var(--primary-blue);

    font-size: 0.9rem;
    font-weight: 600;
}


/* =====================================
   CTA À PROPOS
===================================== */

.about-cta {
    padding: 90px 0;
    background: var(--dark-blue);
}

.about-cta-content {
    max-width: 800px;
}

.about-cta .section-label {
    color: #8fc2ff;
}

.about-cta h2 {
    margin-top: 10px;

    color: var(--white);

    font-size: clamp(2.3rem, 9vw, 4.5rem);
    line-height: 1.08;

    letter-spacing: -0.04em;
}

.about-cta h2 span {
    color: #8fc2ff;
}

.about-cta-content > p:last-of-type {
    max-width: 620px;
    margin-top: 20px;

    color: rgba(255, 255, 255, 0.72);

    line-height: 1.8;
}


/* BOUTONS */

.about-cta-buttons {
    display: flex;
    flex-direction: column;

    gap: 14px;

    margin-top: 32px;
}

.about-cta-buttons a {
    justify-content: center;
}


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

@media (min-width: 650px) {

    .mission-vision-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .clients-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-cta-buttons {
        flex-direction: row;
    }

    .about-cta-buttons a {
        width: auto;
    }

}


/* =====================================
   DESKTOP
===================================== */

@media (min-width: 900px) {

    .page-hero {
        padding: 180px 0 110px;
    }

    .about-story {
        padding: 120px 0;
    }

    .about-story-container {
        grid-template-columns: 0.9fr 1fr;

        align-items: center;

        gap: 80px;
    }

    .about-story-visual {
        min-height: 620px;
    }

    .mission-vision,
    .about-clients,
    .team-section,
    .about-cta {
        padding: 120px 0;
    }

    .team-image {
        height: 430px;
    }

}

.mission-card:active,
.client-type:active,
.team-card:active {
    transform: scale(0.98);
}

.about-cta {
    margin-bottom: 0 !important;
}

#footer {
    margin-top: 0 !important;
    padding-top: 0;
}

.site-footer {
    margin-top: 0 !important;
}

/* =====================================
   PAGE NOS SERVICES
===================================== */


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

.services-hero {
    background: var(--light-blue);
}


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

.services-intro {
    padding: 80px 0;
    background: var(--white);
}

.services-intro-container {
    display: grid;
    gap: 25px;
}

.services-intro h2 {
    margin-top: 10px;

    font-size: clamp(2rem, 8vw, 3.7rem);
    line-height: 1.12;

    letter-spacing: -0.04em;
}

.services-intro h2 span {
    color: var(--primary-blue);
}

.services-intro-container > p {
    color: var(--text-light);
    line-height: 1.8;
}


/* =====================================
   LISTE DES SERVICES
===================================== */

.services-list {
    padding: 20px 0 90px;
    background: var(--white);
}

.services-list .container {
    display: grid;
    gap: 16px;
}


/* =====================================
   CARTE SERVICE
===================================== */

.service-detail-card {
    position: relative;

    display: grid;
    gap: 20px;

    padding: 28px;

    background: var(--light-blue);

    border: 1px solid rgba(13, 77, 156, 0.08);
    border-radius: 20px;

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


/* NUMÉRO */

.service-detail-number {
    position: absolute;

    top: 22px;
    right: 24px;

    color: rgba(13, 77, 156, 0.25);

    font-size: 0.85rem;
    font-weight: 700;
}


/* ICÔNE */

.service-detail-icon {
    width: 58px;
    height: 58px;

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

    background: var(--primary-blue);
    color: var(--white);

    border-radius: 16px;
}

.service-detail-icon svg {
    width: 27px;
    height: 27px;
}


/* CONTENU */

.service-detail-content h2 {
    margin-bottom: 12px;

    font-size: 1.35rem;
    line-height: 1.3;
}

.service-detail-content p {
    max-width: 750px;

    color: var(--text-light);
    line-height: 1.8;
}


/* EFFET SURVOL */

@media (hover: hover) {

    .service-detail-card:hover {
        transform: translateY(-6px);

        background: var(--white);

        box-shadow:
            0 20px 45px
            rgba(13, 77, 156, 0.10);
    }

}


/* EFFET TOUCHER MOBILE */

.service-detail-card:active {
    transform: scale(0.98);
}


/* =====================================
   NOTRE MÉTHODE
===================================== */

.work-process {
    padding: 90px 0;

    background: #f5f8fc;
}

.process-heading {
    max-width: 700px;

    margin-bottom: 40px;
}

.process-heading h2 {
    margin-top: 10px;

    font-size: clamp(2rem, 8vw, 3.7rem);
    line-height: 1.12;

    letter-spacing: -0.04em;
}

.process-heading h2 span {
    color: var(--primary-blue);
}


/* PROCESS GRID */

.process-grid {
    display: grid;
    grid-template-columns: 1fr;

    gap: 16px;
}


/* PROCESS CARD */

.process-card {
    position: relative;

    padding: 28px;

    overflow: hidden;

    background: var(--white);

    border: 1px solid rgba(13, 77, 156, 0.08);
    border-radius: 20px;

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


/* NUMÉRO */

.process-card > span {
    position: absolute;

    top: 20px;
    right: 22px;

    color: rgba(13, 77, 156, 0.20);

    font-size: 0.85rem;
    font-weight: 700;
}


/* ICÔNE */

.process-card > svg {
    width: 30px;
    height: 30px;

    margin-bottom: 22px;

    color: var(--primary-blue);
}


.process-card h3 {
    margin-bottom: 10px;

    font-size: 1.2rem;
}

.process-card p {
    color: var(--text-light);

    font-size: 0.95rem;
    line-height: 1.7;
}


/* INTERACTION */

@media (hover: hover) {

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

        box-shadow:
            0 18px 40px
            rgba(13, 77, 156, 0.10);
    }

}

.process-card:active {
    transform: scale(0.98);
}


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

.services-cta {
    padding: 90px 0;

    background: var(--dark-blue);
}

.services-cta-content {
    max-width: 800px;
}

.services-cta .section-label {
    color: #8fc2ff;
}

.services-cta h2 {
    margin-top: 10px;

    color: var(--white);

    font-size: clamp(2.3rem, 9vw, 4.5rem);
    line-height: 1.08;

    letter-spacing: -0.04em;
}

.services-cta h2 span {
    color: #8fc2ff;
}

.services-cta-content > p:last-of-type {
    max-width: 620px;

    margin-top: 20px;

    color: rgba(255, 255, 255, 0.72);

    line-height: 1.8;
}


/* BOUTONS */

.services-cta-buttons {
    display: flex;
    flex-direction: column;

    gap: 14px;

    margin-top: 32px;
}

.services-cta-buttons a {
    justify-content: center;
}


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

@media (min-width: 650px) {

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-cta-buttons {
        flex-direction: row;
    }

    .services-cta-buttons a {
        width: auto;
    }

}


/* =====================================
   DESKTOP
===================================== */

@media (min-width: 900px) {

    .services-intro {
        padding: 120px 0 90px;
    }

    .services-intro-container {
        grid-template-columns: 1fr 0.8fr;

        align-items: end;

        gap: 80px;
    }


    .services-list {
        padding: 30px 0 120px;
    }


    /* SERVICE EN LIGNE */

    .service-detail-card {
        grid-template-columns: 80px 1fr;

        align-items: center;

        gap: 30px;

        padding: 35px 45px;
    }

    .service-detail-icon {
        width: 64px;
        height: 64px;
    }


    .work-process {
        padding: 120px 0;
    }


    /* 4 CARTES */

    .process-grid {
        grid-template-columns: repeat(4, 1fr);
    }


    .services-cta {
        padding: 120px 0;
    }

}

/* =====================================
   HERO PAGES AVEC IMAGE DE FOND
===================================== */

.page-hero {
    position: relative;
    overflow: hidden;

    isolation: isolate;

    background: var(--dark-blue);
}

.page-hero-bg {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: -2;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(4, 31, 70, 0.96) 0%,
            rgba(4, 31, 70, 0.82) 55%,
            rgba(4, 31, 70, 0.55) 100%
        );

    z-index: -1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero-content h1 {
    color: var(--white);
}

.page-hero-content h1 span {
    color: #8fc2ff;
}

.page-hero-content > p:last-child {
    color: rgba(255, 255, 255, 0.8);
}

.page-hero .section-label {
    color: #8fc2ff;
}


/* =====================================
   HERO GLOBAL - VERSION FORCÉE
===================================== */

.page-hero {
    position: relative !important;
    overflow: hidden !important;
    isolation: isolate !important;

    display: flex !important;
    align-items: center !important;

    min-height: 580px !important;

    background: var(--dark-blue) !important;
}


/* IMAGE */

.page-hero .page-hero-bg {
    position: absolute !important;
    inset: 0 !important;

    width: 100% !important;
    height: 100% !important;

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

    z-index: 0 !important;

    animation: heroCinematicZoom 18s ease-out forwards !important;
}


/* OVERLAY */

.page-hero .page-hero-overlay {
    position: absolute !important;
    inset: 0 !important;

    background: linear-gradient(
        90deg,
        rgba(4, 31, 70, 0.95) 0%,
        rgba(4, 31, 70, 0.80) 55%,
        rgba(4, 31, 70, 0.55) 100%
    ) !important;

    z-index: 1 !important;
}


/* CONTENU AU-DESSUS */

.page-hero .container {
    position: relative !important;
    z-index: 2 !important;

    width: 100%;
}


.page-hero-content {
    position: relative;
    z-index: 3;
}


/* TEXTE */

.page-hero-content h1 {
    color: var(--white) !important;
}

.page-hero-content h1 span {
    color: #8fc2ff !important;
}

.page-hero-content > p:last-child {
    color: rgba(255, 255, 255, 0.82) !important;
}

.page-hero .section-label {
    color: #8fc2ff !important;
}


/* =====================================
   ANIMATION ZOOM
===================================== */

@keyframes heroCinematicZoom {

    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.15);
    }

}


/* =====================================
   DESKTOP
===================================== */

@media (min-width: 900px) {

    .page-hero {
        min-height: 650px !important;
    }

}

/* =====================================
   HERO ACCUEIL - ZOOM CINÉMATOGRAPHIQUE
===================================== */

.hero {
    position: relative;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    background-size: cover;
    background-position: center;

    transform-origin: center;

    animation: heroCinematicZoom 18s ease-out forwards;
}

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


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

.contact-hero .page-hero-content {
    max-width: 820px;
}


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

.contact-main {
    padding: 90px 0;
    background: var(--white);
}

.contact-main-container {
    display: grid;
    gap: 50px;
}


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

.contact-info h2 {
    margin-top: 12px;

    font-size: clamp(2.2rem, 8vw, 4rem);
    line-height: 1.1;

    letter-spacing: -0.04em;
}

.contact-info h2 span {
    color: var(--primary-blue);
}

.contact-intro {
    margin-top: 20px;
    max-width: 580px;

    color: var(--text-light);
    line-height: 1.8;
}


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

.contact-details {
    display: grid;
    gap: 14px;

    margin-top: 35px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 16px;

    padding: 18px;

    text-decoration: none;

    background: var(--light-blue);

    border: 1px solid rgba(13, 77, 156, 0.08);
    border-radius: 16px;

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

.contact-detail:hover {
    transform: translateX(5px);

    background: var(--white);

    box-shadow:
        0 15px 35px
        rgba(13, 77, 156, 0.08);
}


/* ICONES */

.contact-detail-icon {
    flex-shrink: 0;

    width: 48px;
    height: 48px;

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

    color: var(--primary-blue);

    background: var(--white);

    border-radius: 14px;
}

.contact-detail-icon svg {
    width: 22px;
    height: 22px;
}


/* TEXTE */

.contact-detail span {
    display: block;

    margin-bottom: 4px;

    color: var(--text-light);

    font-size: 0.82rem;
}

.contact-detail strong {
    display: block;

    color: var(--text-dark);

    font-size: 0.95rem;
    line-height: 1.5;
}


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

.contact-whatsapp {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

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

    color: var(--white);
    text-decoration: none;

    background: var(--dark-blue);

    border-radius: 16px;

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

.contact-whatsapp:hover {
    transform: translateY(-4px);

    box-shadow:
        0 18px 35px
        rgba(4, 31, 70, 0.20);
}

.contact-whatsapp > svg:first-child {
    flex-shrink: 0;
}

.contact-whatsapp span {
    flex: 1;

    font-weight: 600;
}

.contact-arrow {
    width: 20px;
    height: 20px;
}


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

.contact-form-wrapper {
    padding: 28px;

    background: #f5f8fc;

    border: 1px solid rgba(13, 77, 156, 0.08);
    border-radius: 24px;
}

.contact-form-heading {
    margin-bottom: 28px;
}

.contact-form-heading h2 {
    margin-bottom: 10px;

    font-size: 1.7rem;
    line-height: 1.2;
}

.contact-form-heading p {
    color: var(--text-light);
    line-height: 1.7;
}


/* FORMULAIRE */

.contact-form {
    display: grid;
    gap: 18px;
}

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

    gap: 8px;
}

.form-group label {
    color: var(--text-dark);

    font-size: 0.9rem;
    font-weight: 600;
}


/* INPUTS */

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

    padding: 15px 16px;

    color: var(--text-dark);

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

    background: var(--white);

    border: 1px solid rgba(13, 77, 156, 0.14);
    border-radius: 12px;

    outline: none;

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

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

    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9aa7b8;
}


/* FOCUS */

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-blue);

    box-shadow:
        0 0 0 4px
        rgba(13, 77, 156, 0.08);
}


/* =====================================
   BOUTON ENVOYER
===================================== */

.contact-submit {
    width: 100%;

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

    gap: 12px;

    margin-top: 5px;
    padding: 17px 22px;

    color: var(--white);

    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;

    background: var(--primary-blue);

    border: none;
    border-radius: 12px;

    cursor: pointer;

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

.contact-submit:hover {
    transform: translateY(-3px);

    background: var(--dark-blue);

    box-shadow:
        0 15px 30px
        rgba(13, 77, 156, 0.20);
}

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

.contact-submit svg {
    width: 20px;
    height: 20px;
}


/* STATUS */

.form-status {
    display: none;

    margin: 0;

    text-align: center;

    color: var(--primary-blue);

    font-size: 0.9rem;
    font-weight: 600;
}

.form-status.show {
    display: block;
}


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

@media (min-width: 650px) {

    .contact-form {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-group {
        grid-column: span 1;
    }

    .form-message,
    .contact-submit,
    .form-status {
        grid-column: 1 / -1;
    }

}


/* =====================================
   DESKTOP
===================================== */

@media (min-width: 900px) {

    .contact-main {
        padding: 120px 0;
    }

    .contact-main-container {
        grid-template-columns: 0.9fr 1.1fr;

        align-items: start;

        gap: 90px;
    }

    .contact-form-wrapper {
        padding: 42px;
    }

}

/* =====================================
   POURQUOI NOUS CONTACTER
===================================== */

.contact-benefits {
    padding: 90px 0;

    background: #f5f8fc;
}


.contact-benefits-heading {
    max-width: 750px;

    margin-bottom: 40px;
}


.contact-benefits-heading h2 {
    margin-top: 12px;

    font-size: clamp(2rem, 8vw, 4rem);
    line-height: 1.1;

    letter-spacing: -0.04em;
}


.contact-benefits-heading h2 span {
    color: var(--primary-blue);
}


/* GRILLE */

.contact-benefits-grid {
    display: grid;
    gap: 16px;
}


/* CARTE */

.contact-benefit-card {
    padding: 30px;

    background: var(--white);

    border: 1px solid rgba(13, 77, 156, 0.08);
    border-radius: 20px;

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


.contact-benefit-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 20px 40px
        rgba(13, 77, 156, 0.10);
}


.contact-benefit-icon {
    width: 56px;
    height: 56px;

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

    margin-bottom: 22px;

    color: var(--white);

    background: var(--primary-blue);

    border-radius: 16px;
}


.contact-benefit-icon svg {
    width: 25px;
    height: 25px;
}


.contact-benefit-card h3 {
    margin-bottom: 10px;

    font-size: 1.25rem;
}


.contact-benefit-card p {
    color: var(--text-light);

    line-height: 1.75;
}


/* =====================================
   LOCALISATION
===================================== */

.contact-location {
    padding: 90px 0;

    background: var(--white);
}


.contact-location-heading {
    display: grid;
    gap: 24px;

    margin-bottom: 40px;
}


.contact-location-heading h2 {
    margin-top: 12px;

    font-size: clamp(2rem, 8vw, 4rem);
    line-height: 1.1;

    letter-spacing: -0.04em;
}


.contact-location-heading h2 span {
    color: var(--primary-blue);
}


.contact-location-heading > p {
    max-width: 560px;

    color: var(--text-light);

    line-height: 1.8;
}


/* MAP */

.contact-map {
    overflow: hidden;

    border-radius: 24px;

    border: 1px solid rgba(13, 77, 156, 0.10);

    box-shadow:
        0 20px 50px
        rgba(13, 77, 156, 0.08);
}


.contact-map iframe {
    display: block;

    width: 100%;

    filter: saturate(0.85);
}


/* ADRESSE */

.location-address {
    display: flex;
    align-items: center;

    gap: 16px;

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

    background: var(--light-blue);

    border-radius: 16px;
}


.location-address-icon {
    flex-shrink: 0;

    width: 50px;
    height: 50px;

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

    color: var(--white);

    background: var(--primary-blue);

    border-radius: 14px;
}


.location-address-icon svg {
    width: 23px;
    height: 23px;
}


.location-address span {
    display: block;

    margin-bottom: 5px;

    color: var(--text-light);

    font-size: 0.85rem;
}


.location-address strong {
    display: block;

    color: var(--text-dark);

    line-height: 1.5;
}


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

@media (min-width: 650px) {

    .contact-benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}


/* =====================================
   DESKTOP
===================================== */

@media (min-width: 900px) {

    .contact-benefits,
    .contact-location {
        padding: 120px 0;
    }


    .contact-location-heading {
        grid-template-columns: 1fr 0.8fr;

        align-items: end;

        gap: 80px;
    }

}

/* =====================================
   CTA FINAL CONTACT
===================================== */

.contact-cta {
    padding: 90px 0;

    background: var(--dark-blue);
}


.contact-cta-content {
    max-width: 850px;
}


.contact-cta .section-label {
    color: #8fc2ff;
}


.contact-cta h2 {
    margin-top: 12px;

    color: var(--white);

    font-size: clamp(2.3rem, 9vw, 4.8rem);
    line-height: 1.08;

    letter-spacing: -0.045em;
}


.contact-cta h2 span {
    color: #8fc2ff;
}


.contact-cta-content > p:last-of-type {
    max-width: 650px;

    margin-top: 22px;

    color: rgba(255, 255, 255, 0.75);

    line-height: 1.8;
}


/* BOUTONS */

.contact-cta-actions {
    display: flex;
    flex-direction: column;

    gap: 14px;

    margin-top: 32px;
}


.contact-cta-actions a {
    justify-content: center;
}


/* TABLETTE */

@media (min-width: 650px) {

    .contact-cta-actions {
        flex-direction: row;
    }

}


/* DESKTOP */

@media (min-width: 900px) {

    .contact-cta {
        padding: 120px 0;
    }

}

/* =====================================
   ANIMATION HERO - TOUTES LES PAGES
===================================== */

.hero,
.page-hero {
    position: relative;
    overflow: hidden;
}


/* Image de fond */

.hero-image,
.page-hero-bg {
    transform-origin: center center;

    animation: heroCinematicZoom 18s ease-in-out infinite alternate !important;

    will-change: transform;
}


/* Animation */

@keyframes heroCinematicZoom {

    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.15);
    }

}

/* =====================================
   ALIGNEMENT HERO - PAGES INTERNES
===================================== */

.page-hero {
    position: relative;
    overflow: hidden;
}

.page-hero .container {
    width: min(100% - 40px, 1200px);
    margin: 0 auto;
}

.page-hero-content {
    max-width: 850px;
}



