/* --- Héros Section pour la page Contact --- */
.contact-hero-section {
    position: relative;
    height: 50vh;
    width: 100%;
    background: url('img/peintre5.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 60px;
    background-color: #333;
}

.contact-hero-section .hero-content h1 {
    font-size: 2.5em;
}

/* --- Section Contact --- */
.contact-section {
    padding: 80px 50px;
    background-color: #f9f9f9;
}

.contact-container {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 50px auto 0;
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.contact-form-wrapper {
    flex: 1.5;
}

.contact-details-wrapper {
    flex: 1;
}

.contact-form-wrapper h3,
.contact-details-wrapper h3 {
    font-size: 1.5em;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

/* --- Formulaire --- */
.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Roboto', sans-serif;
    font-size: 1em;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #007bff;
}

.contact-form .cta-button {
    width: 100%;
    padding: 15px;
    font-size: 1.1em;
    border-radius: 5px;
}

/* --- Coordonnées --- */
.contact-details-wrapper p {
    color: #666;
    margin-bottom: 30px;
}

.contact-info-block .info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}
.contact-info-block .icon {
    font-size: 1.8em;
    color: #007bff;
}
.contact-info-block .title {
    font-weight: 700;
    color: #444;
    margin: 0;
}
.contact-info-block .detail {
    font-size: 1em;
    color: #555;
    margin: 0;
}

/* --- Carte --- */
.map-container {
    margin-top: 30px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #ddd;
}

/* --- Responsive --- */
@media (max-width: 900px) {
    .contact-container {
        flex-direction: column;
        padding: 30px;
    }
    .contact-section {
        padding: 60px 20px;
    }
}