/* BASE DE LA PAGE */
.contact-page {
    background: #000;
    color: #fff;
    padding: 150px 0 100px;
    min-height: 100vh;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 50% - 50% */
    gap: 100px;
    align-items: start;
}

/* --- COLONNE GAUCHE --- */
.small-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #666; /* Gris par défaut */
    display: block;
    margin-bottom: 20px;
}

.red-label {
    color: #cc0000; /* Le petit titre en rouge sombre */
    margin-bottom: 10px;
}

.giant-title {
    font-family: var(--font-h); /* Ta police de titre */
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    font-weight: 900;
    line-height: 0.9;
    color: #fff;
    margin-bottom: 60px;
    text-transform: uppercase;
}

.info-block {
    margin-bottom: 40px;
}

.info-link {
    color: #fff;
    font-size: 1.2rem;
    text-decoration: none;
    transition: 0.3s;
}

.info-link:hover { color: var(--accent); }

.info-text {
    color: #aaa;
    line-height: 1.5;
    font-size: 1rem;
}

/* --- COLONNE DROITE (FORMULAIRE) --- */
.custom-form-container {
    padding-top: 20px;
}

.form-group {
    margin-bottom: 35px;
}

.form-group label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* INPUTS : Style minimaliste souligné */
.clean-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #333; /* Ligne grise très fine */
    color: #888; /* Texte gris comme sur l'image */
    padding: 10px 0;
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    transition: 0.3s;
}

.clean-input:focus {
    border-bottom-color: #fff; /* Devient blanc au focus */
    color: #fff;
}

/* Style spécifique pour le Dropdown (Select) */
select.clean-input {
    background-color: #000;
    cursor: pointer;
}

/* BOUTON ROUGE */
.submit-btn {
    background: #cc0000; /* Rouge vif */
    color: #fff;
    border: none;
    padding: 15px 40px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 20px;
    border: 1px solid #cc0000;
    transition: 0.3s ease;
}

.submit-btn:hover {
    background: transparent;
    color: #cc0000;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .giant-title {
        font-size: 3.5rem; /* Plus petit sur mobile */
    }
}
/* --- MESSAGES DE CONFIRMATION / ERREUR --- */

/* La boîte de message globale */
.wpcf7-response-output {
    margin: 30px 0 0 !important;
    padding: 20px !important;
    background: #080808 !important; /* Fond presque noir */
    font-size: 0.9rem;
    text-align: center;
    border-radius: 0 !important;
    border-width: 1px !important;
    border-style: solid !important;
}

/* CAS 1 : SUCCÈS (Message envoyé) */
/* On met une bordure verte subtile ou blanche, 
   mais pour rester classe, un blanc cassé ou vert forêt est mieux que le vert fluo */
.wpcf7 form.sent .wpcf7-response-output {
    border-color: #2ecc71 !important; /* Vert émeraude classe */
    color: #fff !important;
}

/* CAS 2 : ERREUR (Champ manquant ou problème) */
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output {
    border-color: #cc0000 !important; /* TON ROUGE */
    color: #cc0000 !important;
    font-weight: 700;
}

/* Les petits textes "Ce champ est requis" sous les inputs */
.wpcf7-not-valid-tip {
    color: #cc0000;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 5px;
    letter-spacing: 1px;
}