/* Section Contact */
#contact-page {
    padding: 50px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.container {
    max-width: 1100px;
    margin: auto;
}

.section-title {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 30px;
}

/* Contenu de la section Contact */
.contact-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.contact-info h3 {
    color: #333;
    margin-bottom: 15px;
}

.contact-info p {
    font-size: 1rem;
    color: #444;
    margin: 8px 0;
}

.contact-info i {
    color: #007bff;
    margin-right: 8px;
}

/* Icônes des réseaux sociaux */
.social-links {
    margin-top: 15px;
}

.social-links a {
    display: inline-block;
    font-size: 1.5rem;
    color: #007bff;
    margin-right: 15px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-links a:hover {
    color: #0056b3;
    transform: scale(1.1);
}

/* Formulaire de contact */
.contact-form {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    color: #333;
    margin-bottom: 15px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.2);
}

.contact-form button {
    padding: 12px;
    font-size: 1.1rem;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.contact-form button:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

/* Carte Google Maps */
.contact-map {
    margin-top: 40px;
}

.contact-map h3 {
    margin-bottom: 15px;
    color: #333;
}

.contact-map iframe {
    border-radius: 8px;
}
