/* ================================================================
   FIDES INDUSTRIES — Feuille de style principale
   Transcription fidèle du site Vue.js
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Roboto+Condensed:wght@400;700&display=swap');

:root {
    --primary-color: rgb(56, 62, 66);
}

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

body {
    font-family: 'Roboto Condensed', sans-serif;
    color: var(--primary-color);
}

/* ── NAVBAR ──────────────────────────────────────────────────── */
nav.navbar {
    position: absolute;
    z-index: 2;
    width: 100%;
    padding: 0;
    height: 7rem;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.2rem;
}

.navbar-brand.title {
    display: flex;
    align-items: center;
    justify-content: space-around;
    font-family: 'Anton', sans-serif;
    color: var(--primary-color);
    text-decoration: none;
}

.navbar-brand.title img {
    height: 8rem;
    width: auto;
    margin: 0;
}

.navbar-brand.title h1 {
    font-family: 'Anton', sans-serif;
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-left: 0.8rem;
}

#navbarScroll {
    background-color: white;
}

.nav-link {
    transition: all 0.4s ease;
    color: var(--primary-color) !important;
}

.nav-link:hover {
    color: var(--primary-color) !important;
    opacity: 0.7;
    transition: all 0.4s ease;
}

.nav-link.active-page {
    color: var(--primary-color) !important;
    font-weight: bold;
    position: relative;
}

@media (min-width: 992px) {
    nav.navbar {
        width: 70vw;
        left: calc(30vw / 2);
    }

    .navbar-brand.title {
        width: 45%;
    }

    .navbar .container {
        margin: 0;
        width: 100%;
        padding: 0;
        max-width: 100%;
    }

    .navbar-expand-lg .navbar-nav {
        justify-content: end;
        width: 95%;
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        padding-left: 1.2rem;
        padding-right: 1.2rem;
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .nav-link.active-page::after {
        content: "";
        display: block;
        position: relative;
        background-color: var(--primary-color);
        height: 5px;
        width: 100%;
        top: 1rem;
    }
}

/* ── CAROUSEL ────────────────────────────────────────────────── */
.carousel-item {
    height: 50vh;
    background: #000;
    color: white;
    position: relative;
}

.overlay-image {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background-position: center;
    background-size: cover;
    opacity: 0.7;
}

.carousel-item .carousel-container {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    width: 100%;
    padding: 0 2rem;
    z-index: 1;
}

.carousel-item h2 {
    font-size: 40px;
    line-height: 72px;
    font-weight: normal;
    color: #ffffff;
    font-family: 'Anton', sans-serif;
    text-align: center;
    margin: 0;
}

.carousel-item .btn-carousel {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 0.6rem 1.8rem;
    font-size: 1.3rem;
    text-decoration: none;
    border-radius: 0.25rem;
    margin-top: 1rem;
    transition: opacity 0.3s;
}

.carousel-item .btn-carousel:hover {
    opacity: 0.85;
}

@media (min-width: 992px) {
    .carousel-item .carousel-container {
        text-align: center;
    }

    .carousel-item h2 {
        text-align: center;
        font-size: 52px;
    }
}

/* ── PAGE AVEC CAROUSEL : espace pour la navbar ─────────────── */
header + main,
header + section,
.has-carousel-header {
    /* pas de padding-top : le carousel est sous la navbar */
}

.page-content {
    padding-top: 7rem; /* pages sans carousel */
}

/* ── SECTIONS (alternance image gauche/droite) ───────────────── */
.fides-section {
    margin: 0;
    padding: 0;
}

.fides-section .section-container {
    margin: 5rem auto;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90%;
    max-width: 1200px;
}

.fides-section h2 {
    font-weight: normal;
    font-size: 48px;
    line-height: 52px;
    font-family: 'Anton', sans-serif;
    color: var(--primary-color);
    text-align: center;
}

.fides-section h6 {
    font-weight: bold;
    font-size: 1.2rem;
    border-bottom: 3px solid var(--primary-color);
    padding: 0.8rem 0;
    font-family: 'Roboto Condensed', sans-serif;
    text-align: center;
    width: 100%;
}

.section-content {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 1rem;
}

.section-content.left {
    flex-direction: row-reverse;
}

.section-text {
    padding: 2rem;
    flex: 1 1 300px;
}

.section-text p {
    width: 80%;
    padding-bottom: 0.8rem;
    font-family: 'Roboto Condensed', sans-serif;
    text-align: center;
    margin: 2rem auto;
    font-size: 1.1rem;
}

.section-text ul {
    list-style: none;
    padding: 0.5rem 0;
    font-size: 1.1rem;
}

.section-text li {
    padding: 0.5rem 0;
}

.section-text li::before {
    content: "│";
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-right: 0.6rem;
    font-weight: bold;
}

.section-image-box {
    flex: 1 1 300px;
    position: relative;
    padding: 2rem;
}

.section-image {
    width: 95vw;
    height: 30vh;
    background-size: cover;
    margin: auto;
    background-position: center;
}

@media (min-width: 992px) {
    .section-content {
        flex-wrap: nowrap;
        margin: 2rem;
    }

    .section-image {
        width: 28rem;
        height: 25rem;
    }

    .section-back-image {
        width: 28rem;
        height: 25rem;
        opacity: 0.7;
        filter: blur(5px);
        z-index: -1;
        position: absolute;
        left: 50px;
        top: 50px;
        background-size: cover;
    }

    .section-text p {
        text-align: left;
        margin: 0 0 0.8rem 0;
        font-size: 1.2rem;
    }
}

/* ── PRESTATIONS ─────────────────────────────────────────────── */
.prestations-section {
    background: url('images/backtransparent.webp');
    background-position: center;
    background-size: cover;
    padding: 3rem 0;
}

.prestations-section .section-title {
    margin: 2rem auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.prestations-section h2 {
    font-weight: normal;
    font-size: 48px;
    line-height: 52px;
    font-family: 'Anton', sans-serif;
    text-align: center;
}

.prestations-section strong {
    color: var(--primary-color);
}

.prestations-section h6 {
    font-weight: bold;
    font-size: 1.2rem;
    border-bottom: 3px solid var(--primary-color);
    padding: 0.8rem 0;
    font-family: 'Roboto Condensed', sans-serif;
}

.prestations-grid {
    width: 70%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: auto;
    gap: 2rem;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1.2rem;
}

.carte {
    height: 200px;
    width: 350px;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Roboto Condensed', sans-serif;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    z-index: 0;
    text-align: center;
    padding: 1rem;
}

.carte::before {
    content: "";
    position: absolute;
    z-index: -1;
    bottom: -32px;
    right: -32px;
    background: var(--primary-color);
    height: 32px;
    width: 32px;
    border-radius: 32px;
    transform: scale(1);
    transform-origin: 50% 50%;
    transition: transform 0.4s ease-out;
}

.carte:hover::before {
    transform: scale(28);
    transition: transform 0.4s ease-out;
}

.carte:hover span {
    color: white;
    transition: all 0.4s ease;
}

.carte span {
    margin: 1rem auto;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.go-corner {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 32px;
    height: 32px;
    overflow: hidden;
    bottom: 0;
    right: 0;
    background-color: var(--primary-color);
    border-radius: 32px 4px 0 0;
    z-index: 1;
}

/* ── VALEURS ─────────────────────────────────────────────────── */
.valeurs-section {
    margin: 5rem auto;
    width: 80%;
    max-width: 1200px;
}

.valeurs-section h2 {
    font-weight: normal;
    font-size: 48px;
    line-height: 52px;
    font-family: 'Anton', sans-serif;
    text-align: center;
}

.valeurs-section strong {
    color: var(--primary-color);
}

.valeurs-section h6 {
    font-weight: bold;
    font-size: 1.2rem;
    border-bottom: 3px solid var(--primary-color);
    padding: 0.8rem 0;
    font-family: 'Roboto Condensed', sans-serif;
    text-align: center;
}

.valeurs-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    width: 100%;
    margin: 2rem 0;
}

.valeur-card {
    width: 100%;
    height: 280px;
    border: none;
    border-radius: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    color: gray;
}

.valeur-card.empty {
    background-color: var(--primary-color);
}

.valeur-card .number {
    font-size: 6rem;
    color: rgb(64, 66, 68);
    position: absolute;
    transform: translate(0%, -10%);
    font-family: 'Anton', sans-serif;
}

.valeur-card .valeur-text {
    position: absolute;
    transform: translate(0%, 20%);
    text-transform: uppercase;
    font-size: 1.5rem;
    text-align: center;
    font-weight: bold;
    padding: 1rem;
    font-family: "Roboto Condensed", sans-serif;
    color: gray;
}

.valeur-card .text-list {
    list-style: none;
    padding: 0;
    font-size: 1.2rem;
}

.valeur-card.image1 {
    background: url('images/christopher-burns-8KfCR12oeUM-unsplash.webp');
    background-size: cover;
    background-position: center;
}

.valeur-card.image2 {
    background: url('images/dakota-roos-dSRhwPe6v9c-unsplash.webp');
    background-size: cover;
    background-position: center;
}

.valeur-card.image3 {
    background: url('images/greg-rosenke-xoxnfVIE7Qw-unsplash.webp');
    background-size: cover;
    background-position: center;
}

@media (min-width: 992px) {
    .valeur-card {
        width: calc(33% - 24px);
    }
}

/* ── FOOTER ──────────────────────────────────────────────────── */
footer {
    display: flex;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.7) url('images/decoupe-metal-equipement-plasma.webp');
    background-position: center;
    background-size: cover;
    background-blend-mode: darken;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    color: white;
    padding: 2rem;
    width: 80%;
    margin: auto;
}

.footer-informations {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1rem;
}

.footer-informations h5 {
    color: gray;
    font-weight: bold;
    margin-bottom: 0.8rem;
}

.footer-informations ul {
    padding: 0;
    list-style: none;
    color: white;
}

.footer-informations li {
    line-height: 1.8;
}

.footer-logo {
    background-color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 8rem;
    width: 8rem;
}

.footer-logo img {
    height: 6rem;
    width: auto;
}

.footer-mail {
    height: 2rem;
    width: auto;
}

@media (min-width: 992px) {
    .footer-container-informations {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        width: 40vw;
    }

    .footer-informations {
        text-align: center;
    }
}

/* ── PAGE CONTENU (sans carousel) ───────────────────────────── */
.page-wrapper {
    padding-top: 0;
}

/* ── PAGE LA SOCIÉTÉ ─────────────────────────────────────────── */
.societe-section {
    margin: 5rem auto;
    width: 90%;
    max-width: 1200px;
}

/* ── PAGE COORDONNÉES ────────────────────────────────────────── */
.coordonnees-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4rem 2rem;
    width: 80%;
    max-width: 800px;
    margin: auto;
}

.coordonnees-logo {
    width: 10rem;
    height: 10rem;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 2rem;
}

.coordonnees-container h1 {
    font-family: 'Anton', sans-serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.coordonnees-container ul {
    list-style: disc;
    padding-left: 1.2rem;
    width: 100%;
    font-size: 1.1rem;
    line-height: 1.4;
}

.coordonnees-container li {
    padding: 0.15rem 0;
}

.coordonnees-container h5 {
    margin-top: 2rem;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.coordonnees-container h6 {
    margin-top: 0.8rem;
}

.coordonnees-container a {
    color: var(--primary-color);
    font-weight: bold;
}

/* ── PAGE CONTACT ────────────────────────────────────────────── */
.contact-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    margin: 5rem auto;
    padding: 0 2rem;
}

.contact-info {
    background: #fff;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
    padding: 2rem;
    margin: 1rem;
}

.contact-info h2 {
    font-weight: normal;
    font-size: 48px;
    line-height: 52px;
    font-family: 'Anton', sans-serif;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.contact-info strong {
    color: var(--primary-color);
}

.contact-info ul {
    list-style: none;
    padding: 0;
}

.contact-info li {
    margin: 0.5rem 0;
    font-size: 1.05rem;
}

.contact-info span {
    font-weight: bold;
}

.contact-form-wrap {
    background: #fff;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
    padding: 2rem;
    margin: 1rem;
    flex: 1 1 400px;
}

.contact-form-wrap form {
    padding: 30px 0 0 0;
}

.form-row {
    display: flex;
    margin: 32px 0;
}

.input-data {
    width: 100%;
    height: 40px;
    margin: 0 20px;
    position: relative;
}

.input-data.textarea {
    height: 70px;
}

.input-data input,
.input-data textarea {
    display: block;
    width: 100%;
    height: 100%;
    border: none;
    font-size: 17px;
    border-bottom: 2px solid rgba(0,0,0,0.12);
    outline-style: none;
    font-family: 'Roboto Condensed', sans-serif;
    background: transparent;
}

.input-data textarea {
    resize: none;
    padding-top: 10px;
    height: 100%;
}

.input-data label {
    position: absolute;
    pointer-events: none;
    bottom: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    font-weight: bold;
    font-family: 'Roboto Condensed', sans-serif;
}

.input-data.textarea label {
    width: 100%;
    bottom: 40px;
    background: #fff;
}

.input-data input:focus ~ label,
.input-data input:valid ~ label,
.input-data textarea:focus ~ label,
.input-data textarea:valid ~ label {
    transform: translateY(-20px);
    font-size: 14px;
    color: var(--primary-color);
}

.input-data .underline {
    position: absolute;
    bottom: 0;
    height: 2px;
    width: 100%;
}

.input-data .underline::before {
    position: absolute;
    content: "";
    height: 2px;
    width: 100%;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.input-data input:focus ~ .underline::before,
.input-data input:valid ~ .underline::before,
.input-data textarea:focus ~ .underline::before,
.input-data textarea:valid ~ .underline::before {
    transform: scale(1);
}

.contact-error {
    font-size: 0.8rem;
    color: red;
    position: absolute;
    bottom: -18px;
}

.contain-button {
    width: 100%;
    display: flex;
    justify-content: center;
}

.btn-send {
    border: none;
    background-color: var(--primary-color);
    color: white;
    padding: 0.5rem 2rem;
    font-size: 1.2rem;
    transition: all 0.4s ease;
    cursor: pointer;
    font-family: 'Roboto Condensed', sans-serif;
}

.btn-send:hover {
    color: gray;
    background-color: #ff8f5b;
    transition: all 0.4s ease;
}

@media (max-width: 700px) {
    .form-row {
        display: block;
    }

    .input-data {
        margin: 35px 0 !important;
    }
}

@media (min-width: 992px) {
    .contact-section {
        flex-wrap: nowrap;
        width: 70%;
    }

    .contact-info {
        width: 50%;
    }
}

/* ── MODAL VALIDATION ────────────────────────────────────────── */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.modal-overlay.show {
    display: flex;
}

.modal-box {
    background: white;
    padding: 2rem 3rem;
    border-radius: 8px;
    text-align: center;
    max-width: 400px;
    width: 90%;
}

.modal-box .modal-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.modal-box .modal-icon.ok { color: green; }
.modal-box .modal-icon.error { color: red; }

.modal-box p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-family: 'Roboto Condensed', sans-serif;
    text-align: center;
}

.modal-close-btn {
    border: none;
    background-color: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    font-size: 1.1rem;
    cursor: pointer;
    font-family: 'Roboto Condensed', sans-serif;
}

/* ── LIGHTBOX ────────────────────────────────────────────────── */
.lightbox-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.88);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
}

.lightbox-overlay.show {
    display: flex;
}

.lightbox-overlay img {
    max-width: 92vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.6);
    cursor: default;
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    user-select: none;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.lightbox-close:hover { opacity: 1; }

/* ── PAGE RÉALISATIONS ───────────────────────────────────────── */
.realisations-section {
    padding: 2rem;
    max-width: 1200px;
    margin: auto;
}

.realisations-section h2 {
    font-family: 'Anton', sans-serif;
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.realisations-section h6 {
    font-weight: bold;
    font-size: 1.2rem;
    border-bottom: 3px solid var(--primary-color);
    padding: 0.8rem 0;
    margin-bottom: 2rem;
}

.ig-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.ig-post {
    width: 280px;
    background: #f5f5f5;
    border-radius: 4px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s;
}

.ig-post:hover {
    transform: translateY(-4px);
}

.ig-post img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    cursor: zoom-in;
}

.ig-caption {
    padding: 0.7rem 0.7rem 0.4rem;
    font-size: 0.9rem;
    font-family: 'Roboto Condensed', sans-serif;
    line-height: 1.5;
}

.ig-caption-text {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    transition: all 0.3s ease;
}

.ig-caption-text.expanded {
    display: block;
    -webkit-line-clamp: unset;
}

.ig-read-more {
    display: inline-block;
    margin-top: 0.3rem;
    font-size: 0.78rem;
    color: var(--primary-color);
    font-weight: bold;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    font-family: 'Roboto Condensed', sans-serif;
    text-decoration: underline;
}

.ig-read-more:hover { opacity: 0.7; }

.ig-follow {
    text-align: center;
    margin-top: 2rem;
    font-size: 1.1rem;
}

.ig-follow a {
    color: var(--primary-color);
    font-weight: bold;
    text-decoration: none;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 2px;
}

.mail-img {
    height: 1.5rem;
    width: auto;
    vertical-align: middle;
}

/* ================================================================
   RESPONSIVE — Tablette (≤ 991px) & Mobile (≤ 575px)
   ================================================================ */

/* ── TABLETTE (≤ 991px) ────────────────────────────────────── */
@media (max-width: 991px) {

    /* Navbar */
    nav.navbar {
        position: relative;
        height: auto;
        width: 100%;
        left: 0;
    }

    .navbar-brand.title img {
        height: 5rem;
    }

    .navbar-brand.title h1 {
        font-size: 1.2rem;
    }

    #navbarScroll {
        padding: 0.5rem 1rem;
    }

    /* Carousel */
    .carousel-item {
        height: 40vh;
    }

    .carousel-item h2 {
        font-size: 1.8rem;
        line-height: 1.3;
        text-align: center;
    }

    .carousel-item .carousel-container {
        padding: 0 1.5rem;
        text-align: center;
    }

    /* Sections */
    .fides-section .section-container {
        margin: 3rem auto;
        width: 95%;
    }

    .fides-section h2 {
        font-size: 2rem;
        line-height: 1.2;
        text-align: center;
    }

    .section-content,
    .section-content.left {
        flex-direction: column;
    }

    .section-text p {
        text-align: left;
        margin: 0.5rem 0;
        width: 100%;
    }

    .section-image {
        width: 100%;
        height: 25vh;
    }

    .section-back-image {
        display: none;
    }

    /* Prestations */
    .prestations-grid {
        width: 90%;
        gap: 1rem;
    }

    .carte {
        width: 280px;
        height: 160px;
    }

    /* Valeurs */
    .valeurs-section {
        width: 95%;
        margin: 3rem auto;
    }

    .valeurs-section h2 {
        font-size: 2rem;
    }

    /* Footer */
    .footer-content {
        width: 95%;
        gap: 1.5rem;
    }

    .footer-container-informations {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    /* Contact */
    .contact-section {
        margin: 2rem auto;
        width: 95%;
        flex-direction: column;
    }

    .contact-info {
        width: 100%;
    }

    .contact-form-wrap {
        width: 100%;
    }

    /* Coordonnées */
    .coordonnees-container {
        width: 95%;
        padding: 2rem 1rem;
    }
}

/* ── MOBILE (≤ 575px) ──────────────────────────────────────── */
@media (max-width: 575px) {

    /* Navbar */
    .navbar-brand.title img {
        height: 4rem;
    }

    .navbar-brand.title h1 {
        font-size: 1rem;
    }

    /* Carousel */
    .carousel-item {
        height: 35vh;
    }

    .carousel-item h2 {
        font-size: 1.3rem;
        line-height: 1.3;
    }

    .carousel-item .btn-carousel {
        font-size: 1rem;
        padding: 0.5rem 1.2rem;
    }

    /* Sections */
    .fides-section h2 {
        font-size: 1.6rem;
    }

    .fides-section h6 {
        font-size: 1rem;
    }

    .section-text {
        padding: 1rem 0.5rem;
    }

    .section-text ul {
        font-size: 1rem;
    }

    .section-image {
        height: 20vh;
    }

    /* Prestations */
    .prestations-grid {
        width: 95%;
        gap: 0.8rem;
    }

    .carte {
        width: 100%;
        height: 80px;
        flex-direction: row;
        justify-content: flex-start;
        padding: 0 1rem;
        font-size: 1rem;
    }

    .go-corner {
        display: none;
    }

    /* Valeurs */
    .valeurs-section {
        width: 100%;
        margin: 2rem auto;
    }

    .valeur-card {
        height: 200px;
    }

    .valeur-card .number {
        font-size: 4rem;
    }

    .valeur-card .valeur-text {
        font-size: 1.1rem;
    }

    /* Footer */
    .footer-content {
        padding: 1.5rem 1rem;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .footer-informations {
        padding: 0.5rem;
    }

    /* Réalisations */
    .ig-post {
        width: 100%;
    }

    .ig-grid {
        gap: 1rem;
    }

    /* Contact */
    .contact-section {
        padding: 0 1rem;
        margin: 1.5rem auto;
    }

    .contact-info h2 {
        font-size: 2rem;
    }

    .form-row {
        flex-direction: column;
    }

    .input-data {
        margin: 25px 10px !important;
    }

    /* Coordonnées */
    .coordonnees-container h1 {
        font-size: 1.8rem;
    }

    .coordonnees-container ul {
        font-size: 1rem;
    }
}
