.Contact {
    --contact-orange: #ffa500;
    --contact-orange-fonce: #d98200;
    --contact-orange-clair: #fff3dc;
    --contact-orange-tres-clair: #fffaf0;

    --contact-anthracite: #242424;
    --contact-gris-fonce: #3f3f3f;
    --contact-gris-logo: #696969;
    --contact-gris: #777777;
    --contact-gris-clair: #f4f4f4;
    --contact-gris-tres-clair: #fafafa;

    --contact-bordure: #e2e2e2;
    --contact-blanc: #ffffff;

    --contact-ombre-legere: 0 12px 35px rgba(52, 52, 52, 0.08);
    --contact-ombre-principale: 0 22px 60px rgba(52, 52, 52, 0.14);
    --contact-ombre-orange: 0 14px 34px rgba(255, 165, 0, 0.23);

    width: 100%;
    overflow: hidden;
    background: var(--contact-blanc);
    color: var(--contact-anthracite);
}

.Contact *,
.Contact *::before,
.Contact *::after {
    box-sizing: border-box;
}

.Contact h1,
.Contact h2,
.Contact h3,
.Contact p {
    margin-top: 0;
}

.Contact button,
.Contact a,
.Contact input,
.Contact textarea {
    -webkit-tap-highlight-color: transparent;
}

.contact-sur-titre {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--contact-orange-fonce);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.contact-sur-titre::before {
    display: block;
    width: 30px;
    height: 3px;
    border-radius: 20px;
    background: var(--contact-orange);
    content: "";
}

/* HERO */

.contact-hero {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: 520px;
    overflow: hidden;
    background: var(--contact-anthracite);
}

.contact-hero > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.25) contrast(1.05);
    transform: scale(1.01);
}

.contact-hero-overlay {
    position: absolute;
    z-index: 1;
    inset: 0;
    background:
        radial-gradient(
            circle at 82% 30%,
            rgba(255, 165, 0, 0.26),
            transparent 30%
        ),
        linear-gradient(
            90deg,
            rgba(36, 36, 36, 0.96) 0%,
            rgba(63, 63, 63, 0.84) 52%,
            rgba(63, 63, 63, 0.28) 100%
        );
}

.contact-hero::before {
    position: absolute;
    z-index: 2;
    top: -140px;
    left: -110px;
    width: 330px;
    height: 330px;
    border: 50px solid rgba(255, 165, 0, 0.07);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.contact-hero::after {
    position: absolute;
    z-index: 2;
    right: -120px;
    bottom: -190px;
    width: 400px;
    height: 400px;
    border: 1px solid rgba(255, 165, 0, 0.25);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.contact-hero-contenu {
    position: relative;
    z-index: 3;
    width: min(1400px, calc(100% - 60px));
    margin: 0 auto;
    padding: 90px 0;
}

.contact-hero-contenu > span {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 18px;
    color: var(--contact-orange);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.contact-hero-contenu > span::before {
    display: block;
    width: 36px;
    height: 3px;
    border-radius: 20px;
    background: var(--contact-orange);
    content: "";
}

.contact-hero h1 {
    max-width: 850px;
    margin-bottom: 24px;
    color: var(--contact-blanc);
    font-size: clamp(44px, 6vw, 78px);
    line-height: 1.02;
    letter-spacing: -2.5px;
}

.contact-hero p {
    max-width: 650px;
    margin-bottom: 0;
    color: #dddddd;
    font-size: 19px;
    line-height: 1.7;
}

/* SECTIONS */

.contact-localisation,
.contact-formulaire-section {
    padding: 110px max(5vw, 30px);
}

.contact-localisation {
    position: relative;
    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(255, 165, 0, 0.08),
            transparent 24%
        ),
        var(--contact-blanc);
}

.contact-localisation::before {
    position: absolute;
    top: 0;
    left: 50%;
    width: min(1400px, calc(100% - 60px));
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 165, 0, 0.7),
        transparent
    );
    content: "";
    transform: translateX(-50%);
}

.contact-section-entete {
    position: relative;
    z-index: 2;
    max-width: 780px;
    margin: 0 auto 60px;
    text-align: center;
}

.contact-section-entete .contact-sur-titre {
    justify-content: center;
}

.contact-section-entete h2 {
    margin-bottom: 18px;
    color: var(--contact-anthracite);
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.12;
    letter-spacing: -1.5px;
}

.contact-section-entete p {
    margin-bottom: 0;
    color: var(--contact-gris-logo);
    font-size: 18px;
    line-height: 1.7;
}

/* LOCALISATION */

.contact-localisation-contenu {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(340px, 0.8fr) minmax(450px, 1.2fr);
    gap: 25px;
    width: min(1400px, 100%);
    margin: 0 auto;
}

.contact-localisation-gauche {
    position: relative;
    min-height: 570px;
    padding: 42px;
    overflow: hidden;
    border: 1px solid var(--contact-bordure);
    border-radius: 20px;
    background: var(--contact-blanc);
    box-shadow: var(--contact-ombre-legere);
}

.contact-localisation-gauche::before {
    position: absolute;
    top: 0;
    right: 38px;
    left: 38px;
    height: 4px;
    border-radius: 0 0 10px 10px;
    background: var(--contact-orange);
    content: "";
}

.contact-localisation-gauche::after {
    position: absolute;
    right: -70px;
    bottom: -70px;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: rgba(255, 165, 0, 0.07);
    content: "";
    pointer-events: none;
}

.contact-carte-titre,
.contact-formulaire-entete {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 32px;
}

.contact-carte-numero {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--contact-orange);
    color: var(--contact-anthracite);
    font-size: 13px;
    font-weight: 900;
    box-shadow: 0 9px 22px rgba(255, 165, 0, 0.25);
}

.contact-carte-titre h3,
.contact-formulaire-entete h3 {
    margin: 0;
    color: var(--contact-anthracite);
    font-size: 25px;
    line-height: 1.25;
}

.contact-adresse {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 7px;
    padding-left: 66px;
    font-style: normal;
}

.contact-adresse strong {
    margin-bottom: 4px;
    color: var(--contact-anthracite);
    font-size: 19px;
}

.contact-adresse span {
    color: var(--contact-gris-logo);
    font-size: 16px;
    line-height: 1.55;
}

.contact-separateur {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 1px;
    margin: 32px 0;
    background: linear-gradient(
        90deg,
        var(--contact-orange),
        var(--contact-bordure) 35%,
        var(--contact-bordure)
    );
}

.contact-horaires {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 15px;
}

.contact-horaires > .contact-sur-titre {
    margin-bottom: 4px;
}

.contact-horaire-ligne {
    display: grid;
    grid-template-columns: minmax(150px, 1fr) auto auto;
    align-items: center;
    gap: 15px;
    padding: 15px 17px;
    border: 1px solid transparent;
    border-radius: 10px;
    background: var(--contact-gris-clair);
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease;
}

.contact-horaire-ligne:hover {
    transform: translateX(4px);
    border-color: rgba(255, 165, 0, 0.4);
    background: var(--contact-orange-tres-clair);
}

.contact-horaire-ligne strong {
    color: var(--contact-anthracite);
    font-size: 14px;
}

.contact-horaire-ligne span {
    color: var(--contact-gris-logo);
    font-size: 14px;
}

.contact-horaire-ferme {
    background: #fafafa;
}

.contact-horaire-ferme span {
    color: #9b3a32;
    font-weight: 700;
}

/* BOUTONS */

.contact-actions {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.contact-bouton {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 20px;
    border: 1px solid transparent;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease;
}

.contact-bouton-principal {
    border-color: var(--contact-orange);
    background: var(--contact-orange);
    color: var(--contact-anthracite);
    box-shadow: var(--contact-ombre-orange);
}

.contact-bouton-secondaire {
    border-color: var(--contact-bordure);
    background: var(--contact-blanc);
    color: var(--contact-anthracite);
}

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

.contact-bouton-principal:hover {
    border-color: var(--contact-orange-fonce);
    background: var(--contact-orange-fonce);
    color: var(--contact-blanc);
    box-shadow: 0 16px 32px rgba(217, 130, 0, 0.3);
}

.contact-bouton-secondaire:hover {
    border-color: var(--contact-gris-fonce);
    background: var(--contact-gris-fonce);
    color: var(--contact-blanc);
    box-shadow: 0 12px 26px rgba(52, 52, 52, 0.16);
}

/* CARTE */

.contact-localisation-droite {
    position: relative;
    min-height: 570px;
    overflow: hidden;
    border: 1px solid var(--contact-bordure);
    border-radius: 20px;
    background: var(--contact-gris-clair);
    box-shadow: var(--contact-ombre-legere);
}

.contact-localisation-droite::before {
    position: absolute;
    z-index: 2;
    top: 0;
    right: 15%;
    left: 15%;
    height: 4px;
    border-radius: 0 0 10px 10px;
    background: var(--contact-orange);
    content: "";
    pointer-events: none;
}

.contact-localisation-droite iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 570px;
    border: 0;
    filter: grayscale(0.5) contrast(1.03);
    transition: filter 0.3s ease;
}

.contact-localisation-droite:hover iframe {
    filter: grayscale(0) contrast(1);
}

/* FORMULAIRE */

.contact-formulaire-section {
    position: relative;
    background:
        radial-gradient(
            circle at 8% 20%,
            rgba(255, 165, 0, 0.1),
            transparent 24%
        ),
        linear-gradient(
            180deg,
            var(--contact-gris-clair) 0%,
            var(--contact-blanc) 100%
        );
}

.contact-formulaire-section::before {
    position: absolute;
    top: 90px;
    right: 5%;
    width: 180px;
    height: 180px;
    border: 30px solid rgba(255, 165, 0, 0.05);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.contact-formulaire {
    position: relative;
    z-index: 2;
    width: min(900px, 100%);
    margin: 0 auto;
}

.contact-formulaire-cadre {
    position: relative;
    padding: 48px;
    overflow: hidden;
    border: 1px solid var(--contact-bordure);
    border-radius: 22px;
    background: var(--contact-blanc);
    box-shadow: var(--contact-ombre-principale);
}

.contact-formulaire-cadre::before {
    position: absolute;
    top: 0;
    right: 48px;
    left: 48px;
    height: 4px;
    border-radius: 0 0 10px 10px;
    background: var(--contact-orange);
    content: "";
}

.contact-formulaire-cadre::after {
    position: absolute;
    right: -80px;
    bottom: -80px;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: rgba(255, 165, 0, 0.06);
    content: "";
    pointer-events: none;
}

.contact-formulaire-ligne {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 20px;
}

.contact-formulaire-champ {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 8px;
    margin-bottom: 20px;
}

.contact-formulaire-ligne .contact-formulaire-champ {
    margin-bottom: 0;
}

.contact-formulaire-champ label {
    color: var(--contact-anthracite);
    font-size: 14px;
    font-weight: 800;
}

.contact-formulaire-champ input,
.contact-formulaire-champ textarea {
    width: 100%;
    border: 1px solid #d5d5d5;
    border-radius: 10px;
    background: var(--contact-blanc);
    color: var(--contact-anthracite);
    font: inherit;
    font-size: 16px;
    outline: none;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.contact-formulaire-champ input {
    min-height: 54px;
    padding: 0 16px;
}

.contact-formulaire-champ textarea {
    min-height: 170px;
    padding: 16px;
    line-height: 1.6;
    resize: vertical;
}

.contact-formulaire-champ input::placeholder,
.contact-formulaire-champ textarea::placeholder {
    color: #a3a3a3;
}

.contact-formulaire-champ input:hover,
.contact-formulaire-champ textarea:hover {
    border-color: #adadad;
}

.contact-formulaire-champ input:focus,
.contact-formulaire-champ textarea:focus {
    border-color: var(--contact-orange);
    background: var(--contact-orange-tres-clair);
    box-shadow: 0 0 0 4px rgba(255, 165, 0, 0.14);
}

.contact-consentement {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    gap: 11px;
    color: var(--contact-gris-logo);
    font-size: 13px;
    line-height: 1.55;
    cursor: pointer;
}

.contact-consentement input {
    flex: 0 0 auto;
    width: 17px;
    height: 17px;
    margin-top: 2px;
    accent-color: var(--contact-orange-fonce);
}

.contact-formulaire-submit {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-end;
    margin-top: 28px;
}

.contact-formulaire-submit button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 210px;
    min-height: 54px;
    padding: 0 25px;
    border: 1px solid var(--contact-orange);
    border-radius: 10px;
    background: var(--contact-orange);
    color: var(--contact-anthracite);
    font: inherit;
    font-weight: 800;
    cursor: pointer;
    box-shadow: var(--contact-ombre-orange);
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease;
}

.contact-formulaire-submit button:hover {
    transform: translateY(-3px);
    border-color: var(--contact-orange-fonce);
    background: var(--contact-orange-fonce);
    color: var(--contact-blanc);
    box-shadow: 0 16px 34px rgba(217, 130, 0, 0.32);
}

/* ACCESSIBILITÉ */

.contact-bouton:focus-visible,
.contact-formulaire-champ input:focus-visible,
.contact-formulaire-champ textarea:focus-visible,
.contact-formulaire-submit button:focus-visible {
    outline: 3px solid rgba(255, 165, 0, 0.45);
    outline-offset: 4px;
}

/* TABLETTE */

@media screen and (max-width: 950px) {
    .contact-localisation-contenu {
        grid-template-columns: 1fr;
    }

    .contact-localisation-gauche,
    .contact-localisation-droite,
    .contact-localisation-droite iframe {
        min-height: auto;
    }

    .contact-localisation-droite iframe {
        height: 480px;
    }
}

/* MOBILE */

@media screen and (max-width: 650px) {
    .contact-hero {
        min-height: 440px;
    }

    .contact-hero-overlay {
        background:
            linear-gradient(
                rgba(36, 36, 36, 0.84),
                rgba(36, 36, 36, 0.84)
            ),
            radial-gradient(
                circle at 50% 25%,
                rgba(255, 165, 0, 0.2),
                transparent 35%
            );
    }

    .contact-hero-contenu {
        width: calc(100% - 40px);
        padding: 70px 0;
        text-align: center;
    }

    .contact-hero-contenu > span,
    .contact-section-entete .contact-sur-titre {
        justify-content: center;
    }

    .contact-hero h1 {
        font-size: 40px;
        letter-spacing: -1.5px;
    }

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

    .contact-localisation,
    .contact-formulaire-section {
        padding: 75px 20px;
    }

    .contact-section-entete {
        margin-bottom: 42px;
    }

    .contact-section-entete h2 {
        font-size: 35px;
    }

    .contact-localisation-gauche {
        padding: 30px 23px;
    }

    .contact-carte-titre,
    .contact-formulaire-entete {
        gap: 14px;
    }

    .contact-adresse {
        padding-left: 0;
    }

    .contact-horaire-ligne {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .contact-actions {
        flex-direction: column;
    }

    .contact-bouton {
        width: 100%;
    }

    .contact-localisation-droite iframe {
        height: 370px;
    }

    .contact-formulaire-cadre {
        padding: 32px 22px;
    }

    .contact-formulaire-cadre::before {
        right: 22px;
        left: 22px;
    }

    .contact-formulaire-ligne {
        grid-template-columns: 1fr;
        margin-bottom: 20px;
    }

    .contact-formulaire-ligne .contact-formulaire-champ {
        margin-bottom: 0;
    }

    .contact-formulaire-submit button {
        width: 100%;
    }
}

@media screen and (max-width: 400px) {
    .contact-hero h1 {
        font-size: 34px;
    }

    .contact-section-entete h2 {
        font-size: 31px;
    }

    .contact-carte-numero {
        flex-basis: 43px;
        width: 43px;
        height: 43px;
    }

    .contact-carte-titre h3,
    .contact-formulaire-entete h3 {
        font-size: 21px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .contact-horaire-ligne,
    .contact-bouton,
    .contact-localisation-droite iframe,
    .contact-formulaire-champ input,
    .contact-formulaire-champ textarea,
    .contact-formulaire-submit button {
        transition: none;
    }
}