﻿/* Styles pour le conteneur du formulaire */
.contact-form-container {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Styles pour les groupes de formulaire */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-input-container {
    position: relative;
}

.form-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #f97316;
    z-index: 10;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    background-color: #f9fafb;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.form-input:focus {
    outline: none;
    border-color: #f97316;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.2);
    background-color: white;
}

textarea.form-input {
    min-height: 120px;
    padding-top: 1rem;
    resize: vertical;
}

/* Bouton de soumission */
.contact-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(90deg, #f97316, #f59e0b);
    color: white;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.contact-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
}

.contact-submit-btn:focus {
    outline: none;
}

/* Conteneur des infos de contact */
.contact-info-container {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
}

/* Méthodes de contact */
.contact-method {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background-color: #f9fafb;
    transform: translateX(5px);
}

.contact-method__icon {
    width: 50px;
    height: 50px;
    background-color: rgba(249, 115, 22, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    font-size: 1.25rem;
}

.contact-method__title {
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.25rem;
}

.contact-method__text {
    color: #6b7280;
    line-height: 1.5;
}

/* Bouton WhatsApp */
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1rem 2rem;
    background: #25D366;
    color: white;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    margin-top: 1rem;
    text-align: center;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(18, 140, 126, 0.4);
}

/* Icônes sociales */
.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(249, 115, 22, 0.1);
    color: #f97316;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #f97316;
    color: white;
    transform: translateY(-3px);
}

/* Conteneur de la carte */
.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin-top: 3rem;
    margin-bottom: -6rem;
    position: relative;
    z-index: 10;
}

/* Motifs de points */
.pattern-dots {
    background-image: radial-gradient(currentColor 1px, transparent 1px);
    background-size: calc(10 * 1px) calc(10 * 1px);
}

/* Responsive */
@media (max-width: 768px) {
    .contact-form-container,
    .contact-info-container {
        padding: 30px 20px;
    }
    
    .contact-method {
        padding: 1rem;
    }
    
    .map-container {
        margin-bottom: 2rem;
    }
}