

.contact-page-single {
    padding: 70px 5% 40px; 
    background-color: #0e0f11;
    min-height: auto; 
    display: flex;
    flex-direction: column;
}

.contact-page-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
}

/* --- 2. BLOC INFORMATIONS (DROITE) --- */
.contact-info-block {
    flex: 1;
    background-color: #121316;
    padding: 40px;
    border-radius: 12px;
    border-right: 4px solid #ce3636;
}

.contact-info-block h2 {
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    color: #b0b3b8;
}

.info-item i {
    color: #ce3636;
    font-size: 1.3rem;
    width: 30px;
}

/* --- 3. BLOC FORMULAIRE (GAUCHE) --- */
.contact-form-block {
    flex: 1.5;
    background: #121316;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.page-title {
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    text-align: left;
    margin-top: 0;
}

.page-title span { color: #ce3636; }

.red-line-center {
    width: 60px;
    height: 4px;
    background: #ce3636;
    margin: 15px 0 30px;
}

/* Champs du formulaire Dark */
.form-group label {
    color: #ffffff;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    background: #0e0f11;
    border: 1px solid #2d2d2d;
    border-radius: 6px;
    color: white;
    font-size: 1rem;
    transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #ce3636;
    outline: none;
}

/* Bouton d'envoi */
.btn-submit {
    background: #ce3636;
    color: white;
    border: none;
    padding: 16px;
    width: 100%;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover {
    background: #b52b2b;
    box-shadow: 0 5px 15px rgba(206, 54, 54, 0.4);
}

/* --- 4. RESPONSIVE --- */
@media (max-width: 992px) {
    .contact-page-wrapper {
        flex-direction: column;
    }
    .contact-form-block, .contact-info-block {
        width: 100%;
    }
}

/* Alignement des lignes */
.form-row {
    display: flex;
    gap: 20px; /* Espace entre les deux colonnes */
    margin-bottom: 5px;
}

/* Espacement des champs */
.form-group {
    flex: 1; /* Prend la moitié de la largeur chacun */
    margin-bottom: 20px;
}

/* Style des labels */
.form-group label {
    font-size: 0.75rem;
    letter-spacing: 1px; /* Espacement des lettres pour le côté pro */
    color: #888;
    margin-bottom: 8px;
    display: block;
    font-weight: 600;
}

/* Style des inputs */
.form-group input, .form-group textarea {
    width: 100%;
    padding: 15px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 4px;
    color: #fff;
    transition: border 0.3s ease;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: #ce3636;
    outline: none;
}

/* Bouton */
.btn-submit {
    background: #ce3636;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    width: 100%;
}