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

html,
body {
    max-width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: "Segoe UI", sans-serif;
    background-color: #EBEBEB;
    color: #1F497D;
    line-height: 1.6;
    padding-top: 70px;
    /* égal à la hauteur de la nav */
}

a {
    text-decoration: none;
    color: inherit;
}

main {
    padding: 0 1.25rem;
}

/* Animations Scroll */
.scroll-animate {
    opacity: 0;
    transform: translateY(2.5rem);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* -------------------- Navbar -------------------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    background: rgba(255, 255, 255, 0);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.logo img {
    height: 2.5rem;
    width: auto;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1.25rem;

}

nav a {
    text-decoration: none;
    color: #1F497D;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 1vw;
}

nav a:hover {
    color: #1F497D;
}

nav a.contact {
    background-color: #1F497D;
    color: white;
    padding: 0.625rem 1.25rem;
    border-radius: 1.875rem;
    font-weight: 500;
    transition: background 0.3s;
}

nav a.contact:hover {
    background-color: #1F497D;
}

/* Burger */
/* Burger par défaut */
/* Burger par défaut */
.burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    /* taille fixe */
    height: 20px;
    cursor: pointer;
    z-index: 120;
}

.burger span {
    height: 3px;
    /* épaisseur des barres */
    width: 100%;
    background-color: #1F497D;
    border-radius: 3px;
    transition: all 0.4s ease;
    transform-origin: center;
}

/* Croix parfaite */
.burger.active span:nth-child(1) {
    transform: rotate(45deg);
    position: relative;
    top: 7px;
}

.burger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg);
    position: relative;
    top: -7px;
}

/* -------------------- Hero -------------------- */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10rem;
    padding: 3.75rem 0%;
    max-width: 62.5rem;
    margin: 0 auto;
}

.hero-images {
    position: relative;
    flex-shrink: 0;
    width: 20rem;
    height: 26.25rem;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.hero-images .image-back {
    width: 100%;
    height: 100%;
    border-radius: 1.25rem;
    object-fit: cover;
    box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.445);
    position: relative;
    z-index: 1;
}

.hero-images .image-front {
    position: absolute;
    right: -6.5625rem;
    bottom: 0;
    width: 15.625rem;
    height: 15.625rem;
    border-radius: 1.25rem;
    object-fit: cover;
    box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.hero-text {
    flex: 1;
    max-width: 31.25rem;
}

.hero-text h1 {
    font-size: 2.25rem;
    font-weight: 800;
    color: #1F497D;
    line-height: 1.1;
    margin-bottom: 1.125rem;
}

.hero-text p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(31, 73, 125, 0.57);
    margin-bottom: 1.75rem;
    font-weight: 500;
}

.cta-button {
    display: inline-block;
    background-color: #1F497D;
    color: white;
    font-size: 0.9375rem;
    font-weight: bold;
    padding: 0.75rem 1.625rem;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #1F497D;
}

/* -------------------- Services -------------------- */
.services-section {
    padding: 2.5rem 0;
    font-family: 'Arial', sans-serif;
    max-width: 81.25rem;
    margin: 0 auto;
}

.services-carousel {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    padding: 0.625rem 0;
    width: 100%;
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
    padding: 0 0.9375rem;
}

.services-header h2 {
    font-size: 1.75rem;
    color: #1F497D;
    font-weight: 700;
}

.carousel-controls {
    display: flex;
    gap: 0.625rem;
}

.carousel-btn {
    background-color: #1F497D;
    color: white;
    border: none;
    border-radius: 50%;
    width: 2.1875rem;
    height: 2.1875rem;
    font-size: 1.25rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-btn:hover {
    background-color: #1F497D;
}

.carousel-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    padding: 0 0.9375rem;
}

.services-carousel::-webkit-scrollbar {
    display: none;
}

.service-card {
    border-radius: 0.75rem;
    width: 17.5rem;
    flex-shrink: 0;
    box-shadow: 0.375rem 0.375rem 0.375rem rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-0.3125rem);
    box-shadow: 0.375rem 0.625rem 0.375rem rgba(0, 0, 0, 0.1);
}

.service-card img {
    width: 100%;
    height: 10rem;
    object-fit: cover;
    border-radius: 0.75rem 0.75rem 0 0;
}

.card-content {
    padding: 0.9375rem;
    text-align: left;
}

.card-content h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.625rem;
    color: #1F497D;
}

.card-content p {
    font-size: 0.875rem;
    color: #1F497D;
}

.flyer-download {
    margin-top: 3.75rem;
    text-align: center;
}

.flyer-download h3 {
    font-size: 1.618rem;
    font-weight: 700;
    color: #1F497D;
    margin-bottom: 1.25rem;
}

.download-button {
    background-color: #1F497D;
    color: #EBEBEB;
    padding: 0.9rem 1.9rem;
    border-radius: 1.875rem;
    font-weight: bold;
    font-size: 1.2rem;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.download-button:hover {
    background-color: #1F497D;
}

/* -------- Value Proposition Text -------- */
.value-proposition-text {
    background-color: #F5F6F7;
    padding: 2.618rem 1.618rem;
    border-radius: 0.618rem;
    text-align: center;
    margin: 4.236rem auto;
}

.value-proposition-text h2 {
    font-size: 1.618rem;
    font-weight: 700;
    color: #1F497D;
    margin-bottom: 1rem;
}

.value-proposition-text p {
    font-size: 1rem;
    line-height: 1.618;
    color: #1f497dca;
    max-width: 50rem;
    margin: 0 auto;
}

/* -------------------- Value Proposition -------------------- */
.value-proposition {
    padding: 3.75rem 1.25rem;
    margin-top: 5rem;
    border-radius: 1.25rem;
}

.value-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 2.5rem;
    flex-wrap: wrap;
    min-width: 0;
}

.portrait img {
    width: 20rem;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.1);
}

.cards-wrapper {
    position: relative;
    max-width: 40.625rem;
    flex: 1;
    min-width: 18.75rem;
    min-width: 0;
}

.value-card {
    background: #EBEBEB;
    border-radius: 0.75rem;
    padding: 1.25rem;
    box-shadow: 0 0.375rem 1rem rgba(0, 0, 0, 0.1);
    max-width: 21.875rem;
    position: absolute;
    transition: all 0.3s ease;
    z-index: 1;
    box-sizing: border-box;
}

.value-card:hover {
    z-index: 10;
    transform: scale(1.05);
    box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.2);
}

.card-top {
    top: 0;
    left: 0;
}

.card-right {
    top: 3.75rem;
    left: 20rem;
}

.card-bottom {
    top: 14.375rem;
    left: 3.125rem;
}

.value-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #1F497D;
    margin-bottom: 0.625rem;
}

.value-card p {
    font-size: 0.875rem;
    color: #1F497D;
}

/* -------------------- Contact Section -------------------- */
.contact-section {
    text-align: center;
    padding: 9.375rem 1.25rem;
}

.contact-section h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #1F497D;
    margin-bottom: 3.75rem;
}

.contact-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2.5rem;
    min-width: 0;
}

.contact-card {
    background: #EBEBEB;
    padding: 3.125rem 1.25rem 1.875rem;
    border-radius: 1rem;
    box-shadow: 0 0.625rem 1.5625rem rgba(0, 0, 0, 0.08);
    max-width: 20rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    align-items: stretch;
    box-sizing: border-box;
}

.contact-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 0.9375rem 2.1875rem rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 5rem;
    height: 5rem;
    background-color: #1F497D;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -2.5rem;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0.3125rem 0.9375rem rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: translateX(-50%) scale(1.1);
    box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.3);
}

.contact-icon img {
    width: 2.5rem;
    height: 2.5rem;
}

.contact-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 1.875rem;
    margin-bottom: 0.9375rem;
    color: #1F497D;
}

.contact-card p {
    font-size: 0.9375rem;
    color: #1F497D;
}

.contact-phone a {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1F497D;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.contact-phone a:hover {
    color: #163567;
}

.email-button {
    background-color: #1F497D;
    color: white;
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 1.875rem;
    margin-top: 0.9375rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.email-button:hover {
    background-color: #163567;
    transform: scale(1.05);
    box-shadow: 0 0.3125rem 0.9375rem rgba(0, 0, 0, 0.2);
}

/* -------------------- Footer -------------------- */
.footer {
    background-color: #1F497D;
    color: #d9e1ec;
    padding: 3.75rem 3.75rem 1.875rem;
    font-family: "Arial", sans-serif;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 7.5rem;
    max-width: 75rem;
    margin: 0 auto;
}

.footer-col h4 {
    font-size: 1.0625rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #EBEBEB;
    border-bottom: 0.0625rem solid #EBEBEB;
    padding-bottom: 0.25rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a,
.footer-col p a {
    color: #EBEBEB;
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 400;
}

.footer-col ul li a:hover,
.footer-col p a:hover {
    text-decoration: underline;
    color: #EBEBEB;
}

.footer-bottom {
    max-width: 75rem;
    margin: 2.5rem auto 0;
    text-align: right;
    font-size: 0.8125rem;
    color: #EBEBEB;
}


/* RESPONSIVE 100% en vw */


@media (min-width: 1600px) {
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html,
    body {
        max-width: 100%;
        overflow-x: hidden;
        scroll-behavior: smooth;
    }

    body {
        font-family: "Segoe UI", sans-serif;
        background-color: #EBEBEB;
        color: #1F497D;
        line-height: 1.6;
        padding-top: 3.65vw;
        /* 70px */
    }

    a {
        text-decoration: none;
        color: inherit;
    }

    main {
        padding: 0 1.25vw;
        /* 24px */
    }

    /* Animations Scroll */
    .scroll-animate {
        opacity: 0;
        transform: translateY(2.6vw);
        /* 50px */
        transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .scroll-animate.visible {
        opacity: 1;
        transform: translateY(0);
    }

    /* -------------------- Navbar -------------------- */
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 5vw;
        /* 70px */
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 2.08vw;
        /* 40px */
        background: rgba(255, 255, 255, 0);
        backdrop-filter: blur(0.52vw);
        -webkit-backdrop-filter: blur(0.52vw);
        z-index: 9999;
        box-shadow: 0 0.1vw 0.52vw rgba(0, 0, 0, 0.05);
    }

    .logo img {
        height: 3.2vw;
        /* 48px */
        width: auto;
    }

    nav ul {
        list-style: none;
        display: flex;
        gap: 1.25vw;
        /* 24px */
    }

    nav a.contact {
        background-color: #1F497D;
        color: white;
        padding: 0.63vw 1.25vw;
        /* 12px 24px */
        border-radius: 1.88vw;
        /* 36px */
        font-weight: 500;
        transition: background 0.3s;
    }

    /* -------------------- Hero -------------------- */
    .hero {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10vw;
        /* 192px */
        padding: 3.75vw 0;
        max-width: 62.5vw;
        /* 1200px */
        margin: 0 auto;
    }

    .hero-images {
        position: relative;
        flex-shrink: 0;
        width: 20vw;
        /* 384px */
        height: 26.25vw;
        /* 504px */
        display: flex;
        justify-content: center;
        align-items: flex-end;
    }

    .hero-images .image-back {
        width: 100%;
        height: 100%;
        border-radius: 1.25vw;
        /* 24px */
        object-fit: cover;
        box-shadow: 0 0.52vw 1.25vw rgba(0, 0, 0, 0.445);
        position: relative;
        z-index: 1;
    }

    .hero-images .image-front {
        position: absolute;
        right: -6.56vw;
        /* -126px */
        bottom: 0;
        width: 15.63vw;
        /* 300px */
        height: 15.63vw;
        border-radius: 1.25vw;
        object-fit: cover;
        box-shadow: 0 0.52vw 1.25vw rgba(0, 0, 0, 0.2);
        z-index: 2;
    }

    .hero-text {
        flex: 1;
        max-width: 31.25vw;
        /* 600px */
    }

    .hero-text h1 {
        font-size: 2.25vw;
        /* 43px */
        font-weight: 800;
        color: #1F497D;
        line-height: 1.1;
        margin-bottom: 1.13vw;
        /* 22px */
    }

    .hero-text p {
        font-size: 0.94vw;
        /* 18px */
        line-height: 1.6;
        color: rgba(31, 73, 125, 0.57);
        margin-bottom: 1.75vw;
        /* 34px */
        font-weight: 500;
    }

    .cta-button {
        display: inline-block;
        background-color: #1F497D;
        color: white;
        font-size: 0.94vw;
        /* 18px */
        font-weight: bold;
        padding: 0.75vw 1.63vw;
        /* 14px 31px */
        border-radius: 0.75vw;
        /* 14px */
        text-decoration: none;
        transition: background-color 0.3s ease;
    }

    .cta-button:hover {
        background-color: #1F497D;
    }

    /* -------------------- Services -------------------- */
    .services-section {
        padding: 2.5vw 0;
        /* 48px */
        font-family: 'Arial', sans-serif;
        max-width: 81.25vw;
        /* 1560px */
        margin: 0 auto;
    }

    .services-carousel {
        display: flex;
        gap: 1.25vw;
        /* 24px */
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        padding: 0.63vw 0;
        /* 12px */
        width: 100%;
    }

    .services-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1.25vw;
        /* 24px */
        padding: 0 0.94vw;
        /* 18px */
    }

    .services-header h2 {
        font-size: 1.75vw;
        /* 34px */
        color: #1F497D;
        font-weight: 700;
    }

    .carousel-controls {
        display: flex;
        gap: 0.63vw;
        /* 12px */
    }

    .carousel-btn {
        background-color: #1F497D;
        color: white;
        border: none;
        border-radius: 50%;
        width: 2.19vw;
        /* 42px */
        height: 2.19vw;
        font-size: 1.25vw;
        /* 24px */
        cursor: pointer;
        transition: background-color 0.3s ease;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .carousel-btn:hover {
        background-color: #1F497D;
    }

    .carousel-container {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        width: 100%;
        padding: 0 0.94vw;
        /* 18px */
    }

    .services-carousel::-webkit-scrollbar {
        display: none;
    }

    .service-card {
        border-radius: 0.75vw;
        /* 14px */
        width: 17.5vw;
        /* 336px */
        flex-shrink: 0;
        box-shadow: 0.38vw 0.38vw 0.38vw rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        cursor: pointer;
    }

    .service-card:hover {
        transform: translateY(-0.31vw);
        /* -6px */
        box-shadow: 0.38vw 0.63vw 0.38vw rgba(0, 0, 0, 0.1);
    }

    .service-card img {
        width: 100%;
        height: 10vw;
        /* 192px */
        object-fit: cover;
        border-radius: 0.75vw 0.75vw 0 0;
    }

    .card-content {
        padding: 0.94vw;
        /* 18px */
        text-align: left;
    }

    .card-content h3 {
        font-size: 1vw;
        /* 19px */
        font-weight: 700;
        margin-bottom: 0.63vw;
        /* 12px */
        color: #1F497D;
    }

    .card-content p {
        font-size: 0.88vw;
        /* 17px */
        color: #1F497D;
    }

    /* -------------------- Flyer Download -------------------- */
    .flyer-download {
        margin-top: 3.13vw;
        /* 3.75rem */
        text-align: center;
    }

    .flyer-download h3 {
        font-size: 1.35vw;
        /* 1.618rem */
        font-weight: 700;
        color: #1F497D;
        margin-bottom: 1.04vw;
        /* 1.25rem */
    }

    .download-button {
        background-color: #1F497D;
        color: #EBEBEB;
        padding: 0.75vw 1.58vw;
        /* 0.9rem 1.9rem */
        border-radius: 1.56vw;
        /* 1.875rem */
        font-weight: bold;
        font-size: 1vw;
        /* 1.2rem */
        text-decoration: none;
        transition: background-color 0.3s ease;
    }

    .download-button:hover {
        background-color: #1F497D;
    }

    /* -------- Value Proposition Text -------- */
    .value-proposition-text {
        background-color: #F5F6F7;
        padding: 2.18vw 1.35vw;
        /* 2.618rem 1.618rem */
        border-radius: 0.52vw;
        /* 0.618rem */
        text-align: center;
        margin: 3.53vw auto;
        /* 4.236rem */
    }

    .value-proposition-text h2 {
        font-size: 1.35vw;
        /* 1.618rem */
        font-weight: 700;
        color: #1F497D;
        margin-bottom: 0.83vw;
        /* 1rem */
    }

    .value-proposition-text p {
        font-size: 0.83vw;
        /* 1rem */
        line-height: 1.618;
        color: #1f497dca;
        max-width: 41.67vw;
        /* 50rem */
        margin: 0 auto;
    }

    /* -------------------- Value Proposition -------------------- */
    .value-proposition {
        padding: 3.13vw 1.04vw;
        /* 3.75rem 1.25rem */
        margin-top: 4.17vw;
        /* 5rem */
        border-radius: 1.04vw;
        /* 1.25rem */
    }

    .value-content {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        gap: 2.08vw;
        /* 2.5rem */
        flex-wrap: wrap;
        min-width: 0;
    }

    .portrait img {
        width: 16.67vw;
        /* 20rem */
        border-radius: 0.83vw;
        /* 1rem */
        box-shadow: 0 0.42vw 1.04vw rgba(0, 0, 0, 0.1);
        /* 0.5rem 1.25rem */
    }

    .cards-wrapper {
        position: relative;
        max-width: 33.85vw;
        /* 40.625rem */
        flex: 1;
        min-width: 15.63vw;
        /* 18.75rem */
        min-width: 0;
    }

    .value-card {
        background: #EBEBEB;
        border-radius: 0.63vw;
        /* 0.75rem */
        padding: 1.04vw;
        /* 1.25rem */
        box-shadow: 0 0.31vw 0.83vw rgba(0, 0, 0, 0.1);
        /* 0.375rem 1rem */
        max-width: 18.23vw;
        /* 21.875rem */
        position: absolute;
        transition: all 0.3s ease;
        z-index: 1;
        box-sizing: border-box;
    }

    .value-card:hover {
        z-index: 10;
        transform: scale(1.05);
        box-shadow: 0 0.63vw 1.25vw rgba(0, 0, 0, 0.2);
        /* 0.75rem 1.5rem */
    }

    .card-top {
        top: 0;
        left: 0;
    }

    .card-right {
        top: 3.13vw;
        /* 3.75rem */
        left: 16.67vw;
        /* 20rem */
    }

    .card-bottom {
        top: 11.98vw;
        /* 14.375rem */
        left: 2.60vw;
        /* 3.125rem */
    }

    .value-card h3 {
        font-size: 0.83vw;
        /* 1rem */
        font-weight: 700;
        color: #1F497D;
        margin-bottom: 0.52vw;
        /* 0.625rem */
    }

    .value-card p {
        font-size: 0.73vw;
        /* 0.875rem */
        color: #1F497D;
    }

    /* -------------------- Flyer Download -------------------- */
    .flyer-download {
        margin-top: 3.13vw;
        /* 3.75rem */
        text-align: center;
    }

    .flyer-download h3 {
        font-size: 1.35vw;
        /* 1.618rem */
        font-weight: 700;
        color: #1F497D;
        margin-bottom: 1.04vw;
        /* 1.25rem */
    }

    .download-button {
        background-color: #1F497D;
        color: #EBEBEB;
        padding: 0.75vw 1.58vw;
        /* 0.9rem 1.9rem */
        border-radius: 1.56vw;
        /* 1.875rem */
        font-weight: bold;
        font-size: 1vw;
        /* 1.2rem */
        text-decoration: none;
        transition: background-color 0.3s ease;
    }

    .download-button:hover {
        background-color: #1F497D;
    }

    /* -------------------- Contact Section -------------------- */
    .contact-section {
        text-align: center;
        padding: 7.81vw 1.04vw;
        /* 9.375rem 1.25rem */
    }

    .contact-section h2 {
        font-size: 1.67vw;
        /* 2rem */
        font-weight: 800;
        color: #1F497D;
        margin-bottom: 3.13vw;
        /* 3.75rem */
    }

    .contact-cards {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 2.08vw;
        /* 2.5rem */
        min-width: 0;
    }

    .contact-card {
        background: #EBEBEB;
        padding: 2.60vw 1.04vw 1.56vw;
        /* 3.125rem 1.25rem 1.875rem */
        border-radius: 0.83vw;
        /* 1rem */
        box-shadow: 0 0.52vw 1.30vw rgba(0, 0, 0, 0.08);
        /* 0.625rem 1.5625rem */
        max-width: 16.67vw;
        /* 20rem */
        text-align: center;
        position: relative;
        transition: all 0.3s ease;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 0;
        align-items: stretch;
        box-sizing: border-box;
    }

    .contact-card:hover {
        transform: translateY(-0.42vw);
        /* -0.5rem */
        box-shadow: 0 0.78vw 1.82vw rgba(0, 0, 0, 0.15);
        /* 0.9375rem 2.1875rem */
    }

    .contact-icon {
        width: 4.17vw;
        /* 5rem */
        height: 4.17vw;
        background-color: #1F497D;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: -2.08vw;
        /* -2.5rem */
        left: 50%;
        transform: translateX(-50%);
        box-shadow: 0 0.26vw 0.78vw rgba(0, 0, 0, 0.2);
        /* 0.3125rem 0.9375rem */
        transition: all 0.3s ease;
    }

    .contact-card:hover .contact-icon {
        transform: translateX(-50%) scale(1.1);
        box-shadow: 0 0.42vw 1.04vw rgba(0, 0, 0, 0.3);
        /* 0.5rem 1.25rem */
    }

    .contact-icon img {
        width: 2.08vw;
        /* 2.5rem */
        height: 2.08vw;
    }

    .contact-card h3 {
        font-size: 1.04vw;
        /* 1.25rem */
        font-weight: 700;
        margin-top: 1.56vw;
        /* 1.875rem */
        margin-bottom: 0.78vw;
        /* 0.9375rem */
        color: #1F497D;
    }

    .contact-card p {
        font-size: 0.78vw;
        /* 0.9375rem */
        color: #1F497D;
    }

    .contact-phone a {
        font-size: 0.94vw;
        /* 1.125rem */
        font-weight: 700;
        color: #1F497D;
        text-decoration: underline;
        transition: color 0.3s ease;
    }

    .contact-phone a:hover {
        color: #163567;
    }

    .email-button {
        background-color: #1F497D;
        color: white;
        display: inline-block;
        padding: 0.63vw 1.5vw;
        /* 0.75rem 1.5rem */
        border-radius: 1.56vw;
        /* 1.875rem */
        margin-top: 0.78vw;
        /* 0.9375rem */
        font-weight: 400;
        font-size: .8vw;
        transition: all 0.3s ease;
    }

    .email-button:hover {
        background-color: #163567;
        transform: scale(1.05);
        box-shadow: 0 0.26vw 0.78vw rgba(0, 0, 0, 0.2);
        /* 0.3125rem 0.9375rem */
    }

    /* -------------------- Footer -------------------- */
    .footer {
        background-color: #1F497D;
        color: #d9e1ec;
        padding: 3.13vw 3.13vw 1.56vw;
        /* 3.75rem 3.75rem 1.875rem */
        font-family: "Arial", sans-serif;
    }

    .footer-content {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        gap: 6.25vw;
        /* 7.5rem */
        max-width: 62.5vw;
        /* 75rem */
        margin: 0 auto;
    }

    .footer-col h4 {
        font-size: 0.89vw;
        /* 1.0625rem */
        font-weight: 700;
        margin-bottom: 0.63vw;
        /* 0.75rem */
        color: #EBEBEB;
        border-bottom: 0.05vw solid #EBEBEB;
        /* 0.0625rem */
        padding-bottom: 0.21vw;
        /* 0.25rem */
    }

    .footer-col ul {
        list-style: none;
    }

    .footer-col ul li {
        margin-bottom: 0.42vw;
        /* 0.5rem */
    }

    .footer-col ul li a,
    .footer-col p a {
        color: #EBEBEB;
        text-decoration: none;
        font-size: 0.78vw;
        /* 0.9375rem */
        font-weight: 400;
    }

    .footer-col ul li a:hover,
    .footer-col p a:hover {
        text-decoration: underline;
        color: #EBEBEB;
    }

    .footer-bottom {
        max-width: 62.5vw;
        /* 75rem */
        margin: 2.08vw auto 0;
        /* 2.5rem */
        text-align: right;
        font-size: 0.68vw;
        /* 0.8125rem */
        color: #EBEBEB;
    }

}


@media (max-width: 800px) {

    /* Navbar */
    .logo img {
        height: 8vw;
        width: auto;
        max-width: 30vw;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 50vw;
        background-color: #EBEBEB;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 20vw 5vw;
        transition: 0.4s ease-in-out;
        text-align: center;

    }

    nav a {
        display: block;
        width: 100%;
        font-size: 4vw;
        font-weight: 500;
    }

    nav ul {
        margin: 0 auto;
        flex-direction: column;
        gap: 4vw;
        font-size: 4vw;
        width: 60%;
        text-align: center;
    }

    nav.active {
        right: 0;
    }

    nav a.contact {
        background-color: #1F497D;
        color: white;
        padding: 2vw 2vw;
        text-align: center;
    }

    .burger {
        display: flex;
        width: 28px;
        /* plus petit mais fixe */
        height: 19px;
    }

    .burger span {
        height: 3px;
    }

    /* Hero */
    .hero {
        flex-direction: column;
        text-align: center;
        gap: 6vw;
        padding: 6vw 5vw;
        max-width: 100vw;
    }

    .hero-images {
        width: 70vw;
        height: 80vw;
    }

    .hero-images .image-back {
        border-radius: 3vw;
    }

    .hero-images .image-front {
        width: 42vw;
        height: 42vw;
        right: -5vw;
        border-radius: 2vw;
    }

    .hero-text {
        max-width: 90vw;
    }

    .hero-text h1 {
        font-size: 6vw;
        margin-bottom: 2vw;
    }

    .hero-text p {
        font-size: 3.5vw;
        margin-bottom: 4vw;
    }

    .cta-button {
        padding: 2vw 6vw;
        font-size: 3.5vw;
        border-radius: 2vw;
    }

    /* Services */
    .services-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 2vw;
        width: 100%;
    }

    .services-header h2 {
        font-size: 5vw;
    }

    .services-carousel {
        gap: 3vw;
    }

    .carousel-controls {
        display: flex;
        gap: 3vw;
    }

    .service-card {
        width: 70vw;
        flex-shrink: 0;
    }

    .service-card img {
        height: 40vw;
        border-radius: 2vw 2vw 0 0;
    }

    .card-content {
        padding: 4vw;
    }

    .card-content h3 {
        font-size: 3.5vw;
        margin-bottom: 1.5vw;
    }

    .card-content p {
        font-size: 3vw;
    }

    .carousel-btn {
        width: 8vw;
        height: 8vw;
        font-size: 4vw;
    }

    .services-carousel {
        gap: 4vw;
        padding-left: 4vw;
        padding-right: 4vw;
    }

    .flyer-download h3 {
        font-size: 6vw;
    }

    .download-button {
        font-size: 4.5vw;
    }

    /* -------- Value Proposition Text -------- */
    .value-proposition-text {
        padding: 5vw 1.5vw;
        text-align: center;
        margin: 16vw auto;
    }

    .value-proposition-text h2 {
        font-size: 5vw;
        margin-bottom: 5vw;
    }

    .value-proposition-text p {
        font-size: 3.6vw;
        max-width: 90vw;
    }

    /* Value Proposition */
    .value-proposition {
        padding: 8vw 4vw;
        margin-top: 10vw;
        border-radius: 2vw;
    }

    .value-content {
        flex-direction: column;
        align-items: center;
        gap: 5vw;
    }

    .portrait img {
        width: 60vw;
        border-radius: 2vw;
    }

    .cards-wrapper {
        position: static;
        display: flex;
        flex-direction: column;
        gap: 5vw;
        width: 100%;
        max-width: 90vw;
        margin: 0 auto;
    }

    .value-card {
        position: static;
        width: 100%;
        max-width: 90vw;
        padding: 4vw;
        border-radius: 2vw;
        margin: 0 auto;
    }

    .value-card h3 {
        font-size: 3.5vw;
        margin-bottom: 1.5vw;
    }

    .value-card p {
        font-size: 3vw;
    }

    /* Contact */
    .contact-section {
        text-align: center;
        padding: 20vw 4vw;
    }

    .contact-section h2 {
        font-size: 6vw;
        margin-bottom: 8vw;
    }

    .contact-card {
        width: 100%;
        max-width: 90vw;
        padding: 8vw 4vw;
        margin: 0 auto;
        border-radius: 3vw;
    }

    .contact-icon {
        width: 12vw;
        height: 12vw;
        top: -6vw;
    }

    .contact-icon img {
        width: 6vw;
        height: 6vw;
    }

    .contact-card h3 {
        font-size: 4vw;
        margin-top: 6vw;
        margin-bottom: 2vw;
    }

    .contact-card p {
        font-size: 3vw;
    }

    .contact-phone a {
        font-size: 3.5vw;
    }

    .email-button {
        padding: 2.5vw 5vw;
        font-size: 3vw;
        border-radius: 4vw;
        margin-top: 3vw;
    }

    /* Footer */
    .footer {
        padding: 8vw 4vw 4vw;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 6vw;
        text-align: center;
    }

    .footer-col h4 {
        font-size: 3.5vw;
        margin-bottom: 2vw;
        border-bottom: 0.2vw solid #EBEBEB;
        padding-bottom: 1vw;
    }

    .footer-col ul li a,
    .footer-col p a {
        font-size: 3vw;
    }

    .footer-bottom {
        text-align: center;
        font-size: 2.5vw;
        margin-top: 6vw;
    }
}

/* ===================== */
/* Tablettes portrait    */
/* ===================== */
@media (max-width: 768px) {
    .hero {
        gap: 8vw;
        padding: 8vw 5vw;
    }

    .hero-text h1 {
        font-size: 7vw;
    }

    .hero-text p {
        font-size: 3.8vw;
    }

    .cta-button {
        font-size: 4vw;
        padding: 3vw 7vw;
        border-radius: 3vw;
    }

    .service-card {
        width: 80vw;
    }

    .value-card h3 {
        font-size: 4vw;
    }

    .value-card p {
        font-size: 3.5vw;
    }

    .contact-section h2 {
        font-size: 7vw;
    }

    .contact-card h3 {
        font-size: 5vw;
    }

    .footer-col h4 {
        font-size: 4vw;
    }

    .footer-col ul li a,
    .footer-col p a {
        font-size: 3.5vw;
    }
}

/* ===================== */
/* Smartphones           */
/* ===================== */
@media (max-width: 480px) {
    nav {
        width: 50vw;
        padding: 25vw 6vw;
    }

    nav ul {
        gap: 6vw;
        font-size: 5vw;
    }

    .hero-images {
        width: 80vw;
        height: 90vw;
    }

    .hero-images .image-front {
        width: 50vw;
        height: 50vw;
        right: -6vw;
    }

    .service-card {
        width: 79vw;
    }

    .value-proposition {
        margin-top: 12vw;
    }

    .portrait img {
        width: 70vw;
    }

    .contact-icon {
        width: 14vw;
        height: 14vw;
        top: -7vw;
    }

    .contact-icon img {
        width: 7vw;
        height: 7vw;
    }

    .footer-col h4 {
        font-size: 4.5vw;
    }

    .footer-bottom {
        font-size: 3vw;
    }
}

/* ===================== */
/* Très petits écrans    */
/* ===================== */
@media (max-width: 360px) {
    .hero-text h1 {
        font-size: 8vw;
    }

    .cta-button {
        font-size: 4.5vw;
        padding: 3.5vw 8vw;
    }

    .contact-card {
        padding: 10vw 5vw;
    }

    .contact-card h3 {
        font-size: 6vw;
    }

    .contact-card p,
    .contact-phone a {
        font-size: 4vw;
    }

    .email-button {
        font-size: 4vw;
        padding: 3vw 6vw;
    }
}