.elementor-955 .elementor-element.elementor-element-986fe1d{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-1834e74 */:root {
    --epm-yellow: #F4D03F;
    --epm-dark: #111111;
    --epm-grey: #1C1C1C;
    --epm-input-bg: #0A0A0A;
    --epm-text-white: #FFFFFF;
    --epm-text-light: #EAEAEA;
}

.contact-page-epm {
    background-color: var(--epm-dark);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    padding-bottom: 100px;
}

/* --- HERO SECTION CONTACT (Corrigée) --- */
.about-hero-epm {
    height: 45vh; /* Hauteur de l'image ajustée pour la page contact */
    min-height: 350px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: flex-end; /* Aligne le texte en bas */
}

.hero-overlay-epm {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--epm-dark) 0%, rgba(17, 17, 17, 0.3) 100%);
    z-index: 1;
}

.hero-text-epm {
    position: relative;
    z-index: 2;
    padding: 50px 20px;
    width: 100%;
    max-width: 1200px; /* Aligné avec ton conteneur */
    margin: 0 auto;
}

.badge-epm {
    background: var(--epm-yellow);
    color: #111 !important;
    padding: 6px 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 15px;
    font-size: 0.85rem;
}

.hero-text-epm h1 {
    font-size: 5rem;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--epm-text-white) !important;
    margin: 0;
    line-height: 1;
}


/* --- CONTENU CONTACT --- */
.contact-content-epm {
    padding: 80px 0;
}

.container-epm {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-grid-epm {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

/* --- Colonne Info --- */
.contact-title {
    font-size: 2.5rem;
    color: var(--epm-text-white) !important;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 25px;
    line-height: 1.2;
}

.lead-text {
    color: var(--epm-text-light) !important;
    font-size: 1.1rem;
    line-height: 1.6;
}

.info-cards-wrapper {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card-epm {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--epm-grey);
    padding: 25px;
    border-radius: 4px;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.info-card-epm:hover {
    border-left: 3px solid var(--epm-yellow);
    background: #222;
}

.info-icon {
    font-size: 2rem;
}

.info-card-epm h4 {
    color: var(--epm-yellow) !important;
    margin: 0 0 5px 0;
    font-size: 1rem;
    text-transform: uppercase;
}

.info-link, .info-text {
    color: var(--epm-text-white) !important;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.info-link:hover {
    color: var(--epm-yellow) !important;
}

/* --- Colonne Formulaire --- */
.form-box-epm {
    background: var(--epm-grey);
    padding: 40px;
    border-radius: 6px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border-top: 5px solid var(--epm-yellow);
}

.form-box-epm h3 {
    color: var(--epm-text-white) !important;
    font-size: 1.6rem;
    margin-top: 0;
    margin-bottom: 25px;
    text-transform: uppercase;
}

/* --- STYLISATION CONTACT FORM 7 POUR LE THEME SOMBRE --- */
.wpcf7-form label {
    color: var(--epm-text-light) !important;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
    font-size: 0.95rem;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form select,
.wpcf7-form textarea {
    width: 100%;
    background-color: var(--epm-input-bg) !important;
    border: 1px solid #333 !important;
    color: var(--epm-text-white) !important;
    padding: 15px 20px;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    margin-bottom: 15px; /* Espace entre les champs */
}

/* Correction pour les select (listes déroulantes) */
.wpcf7-form select {
    appearance: none;
    cursor: pointer;
}

.wpcf7-form input:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
    border-color: var(--epm-yellow) !important;
    outline: none;
    box-shadow: 0 0 10px rgba(244, 208, 63, 0.2);
}

/* Bouton Submit CF7 */
.wpcf7-form input[type="submit"] {
    background-color: var(--epm-yellow) !important;
    color: #111 !important;
    font-weight: 800;
    text-transform: uppercase;
    border: 2px solid var(--epm-yellow) !important;
    padding: 16px 40px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 10px;
}

.wpcf7-form input[type="submit"]:hover {
    background-color: transparent !important;
    color: var(--epm-yellow) !important;
}

/* Messages de validation CF7 */
.wpcf7-response-output {
    border-radius: 4px;
    margin-top: 20px !important;
    color: var(--epm-text-white) !important;
    border-color: var(--epm-yellow) !important;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-grid-epm {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .hero-text-epm h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .form-box-epm {
        padding: 30px 20px;
    }
    .contact-title {
        font-size: 2rem;
    }
    .about-hero-epm {
        height: 35vh;
        min-height: 250px;
    }
}/* End custom CSS */