.elementor-20 .elementor-element.elementor-element-7355d66{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-20 .elementor-element.elementor-element-b2b4bea{--display:flex;--padding-top:064px;--padding-bottom:064px;--padding-left:0125px;--padding-right:0125px;}.elementor-20 .elementor-element.elementor-element-a32bf44{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for shortcode, class: .elementor-element-4b0e174 *//* Layout : Prénom / Nom côte à côte, le reste en pleine largeur */
.cs-contact-form .wpcf7-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.cs-contact-form .wpcf7-form > p:nth-of-type(1),
.cs-contact-form .wpcf7-form > p:nth-of-type(2) {
    grid-column: span 1;
    margin: 0;
}

.cs-contact-form .wpcf7-form > p:nth-of-type(3),
.cs-contact-form .wpcf7-form > p:nth-of-type(4),
.cs-contact-form .wpcf7-form > p:nth-of-type(5),
.cs-contact-form .wpcf7-form > p:nth-of-type(6),
.cs-contact-form .wpcf7-form > p:nth-of-type(7) {
    grid-column: 1 / -1;
    margin: 0;
}

@media (max-width: 640px) {
    .cs-contact-form .wpcf7-form {
        grid-template-columns: 1fr;
    }
}

/* Labels */
.cs-contact-form label {
    display: block;
    width: 100%;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(191, 219, 254, 0.5);
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
}

/* Champs texte / email / tel / select / textarea */
.cs-contact-form input[type="text"],
.cs-contact-form input[type="email"],
.cs-contact-form input[type="tel"],
.cs-contact-form select,
.cs-contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    color: #fff;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    outline: none;
    margin-top: 4px;
}

.cs-contact-form textarea {
    resize: none;
    min-height: 110px;
}

.cs-contact-form input::placeholder,
.cs-contact-form textarea::placeholder {
    color: rgba(191, 219, 254, 0.4);
}

.cs-contact-form input:focus,
.cs-contact-form select:focus,
.cs-contact-form textarea:focus {
    border-color: #0070c4;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 3px rgba(0, 112, 196, 0.15);
}

.cs-contact-form select option {
    color: #fff;
    background: #072a4a;
}

/* Bouton d'envoi */
.cs-contact-form input[type="submit"] {
    width: 100%;
    background: #0070c4;
    color: #fff;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 20px 40px -10px rgba(0, 112, 196, 0.3);
}

.cs-contact-form input[type="submit"]:hover {
    background: #015a9e;
    transform: translateY(-1px);
}

.cs-contact-form .wpcf7-spinner {
    margin-left: 12px;
}

/* Messages d'erreur / validation */
.cs-contact-form span.wpcf7-not-valid-tip {
    color: #fca5a5;
    font-size: 12px;
    margin-top: 4px;
    font-family: 'Inter', sans-serif;
}

.cs-contact-form .wpcf7-response-output {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2) !important;
    border-radius: 12px;
    font-size: 13px;
    margin-top: 16px !important;
}/* End custom CSS */