.alfinfos-page {
    position: relative;
    overflow-x: clip;
    overflow-y: visible;
    padding: 72px 0 130px;
}

.alfinfos-page::before {
    content: "";
    position: absolute;
    left: -125px;
    top: 130px;
    width: clamp(190px, 20vw, 280px);
    height: clamp(190px, 20vw, 280px);
    background-image: url("/wp-content/uploads/2025/08/roue.svg");
    opacity: .95;
}

.alfinfos-page::after {
    content: "";
    position: absolute;
    right: -115px;
    bottom: 160px;
    width: clamp(170px, 17vw, 230px);
    height: clamp(170px, 17vw, 230px);
    background-image: url("/wp-content/uploads/2025/08/roue2.png");
    opacity: .95;
}

.alfinfos-wrap {
    width: min(var(--alf-site-max), calc(100% - var(--alf-gutter-desktop)));
    margin: 0 auto;
}

.alfinfos-heading {
    margin-bottom: 38px;
}

.alfinfos-title {
    margin: 0 0 46px;
    padding: 9px 18px 13px;
    font-size: 45px;
    line-height: 1;
    transform: rotate(-1deg);
}

.alfinfos-heading h2,
.alfinfos-heading p {
    display: none;
}

.alfinfos-contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, .72fr);
    gap: 46px;
    align-items: start;
    margin-top: 0;
}

.alfinfos-map {
    width: 100%;
    height: 620px;
    background: #111;
    min-height: 620px;
    overflow: hidden;
}

.alfinfos-map > iframe,
.alfinfos-map > img,
.alfinfos-map .alf-google-map,
.alfinfos-map .alf-external-gate,
.alfinfos-map .alf-external-gate__target,
.alfinfos-map .alf-external-gate__placeholder {
    display: block;
    width: 100%;
    height: 620px;
    min-height: 620px;
    border: 0;
    object-fit: cover;
    border-radius: 0;
}

.alfinfos-details {
    color: var(--alf-white);
    padding-top: 0;
}

.alfinfos-info-block {
    margin: 0 0 54px;
}

.alfinfos-pill {
    display: inline-block;
    background: #fff;
    color: #000;
    padding: 7px 16px 10px;
    border-radius: 4px;
    font-size: 30px;
    line-height: 1;
    font-weight: 900;
    transform: rotate(-2deg);
    margin: 0 0 26px;
}

.alfinfos-rich {
    font-size: 16px;
    line-height: 1.34;
    font-weight: 500;
}

.alfinfos-rich p {
    margin: 0 0 24px;
}

.alfinfos-rich strong {
    display: inline;
    font-size: 20px;
    line-height: 1.1;
    font-weight: 900;
}

.alfinfos-rich em {
    font-weight: 500;
}

.alfinfos-form-row {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    gap: 36px;
    align-items: start;
    margin-top: 90px;
}

.alfinfos-contact-intro .alfinfos-pill {
    font-size: 24px;
}

.alfinfos-contact-intro p {
    font-size: 16px;
    font-weight: 800;
    line-height: 1.42;
}

.alfinfos-form label {
    display: block;
    margin: 0 0 12px;
}

.alfinfos-form {
    display: grid;
    grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
    gap: 12px 16px;
    align-items: center;
}

.alfinfos-form > :not(.alfinfos-form-captcha):not(button) {
    grid-column: 1 / -1;
}

.alfinfos-form-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.alfinfos-form input,
.alfinfos-form textarea,
.alfinfos-form-shortcode .wpcf7 input:not([type=submit]),
.alfinfos-form-shortcode .wpcf7 textarea,
.alfinfos-form-shortcode input:not([type=submit]),
.alfinfos-form-shortcode textarea {
    width: 100%;
    box-sizing: border-box;
    border: 0;
    border-radius: 10px;
    background: #fff;
    color: #111;
    padding: 15px 18px;
    font-size: 15px;
    font-family: inherit;
}

.alfinfos-form textarea,
.alfinfos-form-shortcode textarea {
    min-height: 120px;
    resize: vertical;
}

.alfinfos-form button,
.alfinfos-form-shortcode .wpcf7 input[type=submit],
.alfinfos-form-shortcode .wpcf7 button[type=submit],
.alfinfos-form-shortcode input[type=submit],
.alfinfos-form-shortcode button[type=submit] {
    width: 100%;
    min-height: 52px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--alf-black);
    background: linear-gradient(to right, var(--alf-red) 0 50%, var(--alf-white) 50% 100%);
    background-size: 200% 100%;
    background-position: 100% 0;
    color: var(--alf-black);
    border-radius: 8px;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: .04em;
    cursor: pointer;
    transition: color .28s ease, border-color .28s ease, background-position .32s ease;
}

.alfinfos-form button:hover,
.alfinfos-form button:focus-visible,
.alfinfos-form-shortcode .wpcf7 input[type=submit]:hover,
.alfinfos-form-shortcode .wpcf7 input[type=submit]:focus-visible,
.alfinfos-form-shortcode .wpcf7 button[type=submit]:hover,
.alfinfos-form-shortcode .wpcf7 button[type=submit]:focus-visible,
.alfinfos-form-shortcode input[type=submit]:hover,
.alfinfos-form-shortcode input[type=submit]:focus-visible,
.alfinfos-form-shortcode button[type=submit]:hover,
.alfinfos-form-shortcode button[type=submit]:focus-visible {
    background-position: 0 0;
    border-color: var(--alf-red);
    color: var(--alf-white);
}

.alfinfos-form-shortcode .wpcf7 p {
    margin: 0;
}

.alfinfos-form-captcha {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    min-height: 53px;
    margin: -12px 0px 9px;
    border: none;
    padding: 0 16px;
    background: rgba(255, 255, 255, .02);
    color: #fff;
}

.alfinfos-form-captcha__success {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 16px;
    line-height: 1.1;
    font-weight: 500;
}

.alfinfos-form-captcha__success::before {
    content: "✓";
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: #57bf67;
    color: #fff;
    font-size: 26px;
    line-height: 1;
}

.alfinfos-form-captcha__brand {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    color: #d8d8d8;
    font-size: 12px;
    line-height: 1.1;
    text-align: right;
}

.alfinfos-form-captcha__brand strong {
    display: block;
    color: #f59a3a;
    font-size: 18px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: .04em;
}

.alfinfos-hp {
    display: none;
}

.alfinfos-form button {
    grid-column: 2;
    margin-top: -12px;
    font-size: 16px;
}

.alfinfos-form-message {
    font-weight: 900;
    padding: 10px 12px;
    border-radius: 4px;
}

.alfinfos-form-message.is-success {
    background: #0f7d36;
    color: #fff;
}

.alfinfos-form-message.is-error {
    background: #b3261e;
    color: #fff;
}

.alfinfos-faq {
    margin-top: 120px;
}

.alfinfos-faq-title {
    font-size: 48px;
    line-height: 1;
    margin: 0 0 60px;
    font-weight: 900;
}

.alfinfos-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 46px;
    align-items: start;
}

.alfinfos-accordion {
    background: #fff;
    color: #111;
    border-radius: 4px;
    overflow: hidden;
    align-self: start;
    transition: transform .28s ease, box-shadow .28s ease;
}

.alfinfos-accordion.is-open {
    box-shadow: 0 22px 48px rgba(0, 0, 0, .18);
}

.alfinfos-question {
    width: 100%;
    min-height: 86px;
    border: 0;
    background: #fff;
    color: #111;
    display: grid;
    grid-template-columns: 1fr 54px;
    gap: 22px;
    align-items: center;
    text-align: left;
    padding: 24px 30px;
    font: inherit;
    cursor: pointer;
}

.alfinfos-question strong {
    font-size: 21px;
    line-height: 1.15;
    font-weight: 900;
}

.alfinfos-plus {
    position: relative;
    width: 40px;
    height: 40px;
    justify-self: end;
}

.alfinfos-plus::before,
.alfinfos-plus::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 38px;
    height: 7px;
    background: #111;
    transform: translate(-50%, -50%);
}

.alfinfos-plus::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.alfinfos-accordion.is-open .alfinfos-plus::after {
    opacity: 0;
}

.alfinfos-answer {
    display: block;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0 30px;
    color: #111;
    font-size: 16px;
    line-height: 1.38;
    font-weight: 800;
    transition: max-height .42s cubic-bezier(.22, 1, .36, 1), opacity .28s ease, padding-bottom .32s ease;
}

.alfinfos-accordion.is-open .alfinfos-answer {
    opacity: 1;
    padding-bottom: 28px;
}

.alfinfos-answer p {
    margin: 0 0 12px;
}

.alfinfos-answer ul {
    margin: 0 0 12px 22px;
    padding: 0;
}

.alfinfos-answer li {
    margin: 0 0 8px;
}

@media (max-width: 850px) {
    h1{line-height: 1}

    .alfinfos-wrap {
        width: min(100% - 32px, 680px);
    }

    .alfinfos-form {
        display: block;
    }

    .alfinfos-title {
        font-size: 44px;
    }

    .alfinfos-contact-grid,
    .alfinfos-form-row,
    .alfinfos-faq-grid {
        grid-template-columns: 1fr;
    }

    .alfinfos-map,
    .alfinfos-map > iframe,
    .alfinfos-map > img,
    .alfinfos-map > div,
    .alfinfos-map #map,
    .alfinfos-map .alf-google-map,
    .alfinfos-map .alf-external-gate,
    .alfinfos-map .alf-external-gate__target,
    .alfinfos-map .alf-external-gate__placeholder,
    .alfinfos-map .alf-external-gate__target > div {
        height: 390px;
        min-height: 390px;
    }

    .alfinfos-map > div,
    .alfinfos-map #map,
    .alfinfos-map .alf-google-map,
    .alfinfos-map .alf-external-gate__target,
    .alfinfos-map .alf-external-gate__placeholder,
    .alfinfos-map .alf-external-gate__target > div {
        height: 390px !important;
    }

    .alfinfos-faq {
        margin-top: 76px;
    }

    .alfinfos-faq-title {
        font-size: 36px;
        margin-bottom: 32px;
    }

    .alfinfos-question {
        min-height: 76px;
        padding: 20px 18px;
    }

    .alfinfos-question strong {
        font-size: 18px;
    }

    .alfinfos-answer {
        padding: 0 18px 24px;
    }

    .alfinfos-pill {
        font-size: 31px;
    }

    .alfinfos-rich {
        font-size: 18px;
    }

    .alfinfos-plus {
        width: 34px;
        height: 34px;
    }

    .alfinfos-plus::before,
    .alfinfos-plus::after {
        width: 32px;
        height: 6px;
    }
}

@media (max-width: 760px) {
    h1.alfinfos-title{line-height: 1}
}

@media (max-width: 560px) {
    .alfinfos-title {
        font-size: 34px;
    }

    .alfinfos-map,
    .alfinfos-map > iframe,
    .alfinfos-map > img,
    .alfinfos-map > div,
    .alfinfos-map #map,
    .alfinfos-map .alf-google-map,
    .alfinfos-map .alf-external-gate,
    .alfinfos-map .alf-external-gate__target,
    .alfinfos-map .alf-external-gate__placeholder,
    .alfinfos-map .alf-external-gate__target > div {
        height: 340px;
        min-height: 340px;
    }

    .alfinfos-map > div,
    .alfinfos-map #map,
    .alfinfos-map .alf-google-map,
    .alfinfos-map .alf-external-gate__target,
    .alfinfos-map .alf-external-gate__placeholder,
    .alfinfos-map .alf-external-gate__target > div {
        height: 340px !important;
    }
}
