/* ===== STYLES POUR LA PAGE CONTACT ===== */

.contact-section {
    padding: 80px 0 50px;
    position: relative;
    z-index: 1;
    margin-top: 0;
    border-radius: 0;
}

.contact-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-info {
    background: white;
    padding: 3rem;
    border-radius: var(--radius-xl);
    max-width: 700px;
    margin: 0 auto 70px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
}

.contact-info h2 {
    color: var(--primary);
    margin-bottom: 2.5rem;
    text-align: center;
    position: relative;
    font-size: 1.8rem;
    font-weight: 700;
}

.contact-info h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--primary);
    border-radius: 10px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 20px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    background: white;
    border: 1px solid var(--primary-light);
}

.info-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(29, 78, 137, 0.2);
}

.info-content h3 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.info-content p, .info-content a {
    color: var(--gray-700);
    margin: 0;
    font-size: 1.1rem;
    text-decoration: none;
    line-height: 1.5;
}

.info-content a:hover {
    color: var(--primary);
    text-decoration: underline;
}

.map-section {
    padding: 50px 0 100px;
    position: relative;
}

.map-section .container {
    max-width: 1000px;
}

.map-section-header {
    text-align: center;
    margin-bottom: 40px;
}

.map-section-header h2 {
    color: var(--primary-dark);
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.map-section-header p {
    color: var(--gray-700);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.map-container {
    width: 100%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    height: 450px;
    border: 10px solid white;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0 30px;
        margin-top: 0;
    }
    
    .contact-info {
        padding: 2rem;
        margin-bottom: 40px;
    }
    
    .info-item {
        padding: 15px;
    }
    
    .map-container {
        height: 350px;
        border-width: 5px;
    }
}

@media (max-width: 576px) {
    .info-item {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
    }
    
    .info-icon {
        margin: 0 auto 10px;
    }
    
    .map-section-header h2 {
        font-size: 1.8rem;
    }
} 