.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    min-height: 200px;
    justify-content: center;
}

.contact-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.contact-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.contact-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--violet);
    margin-bottom: 0.5rem;
}

.contact-text {
    font-size: 1.3rem;
    color: #333;
    font-weight: 500;
}

/* Couleurs spécifiques par type */
.email-box {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border: 3px solid #2196f3;
}

.phone-box {
    background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
    border: 3px solid var(--violet);
}

.facebook-box {
    background: linear-gradient(135deg, #e8f4fd 0%, #cce7ff 100%);
    border: 3px solid #4267b2;
}

.instagram-box {
    background: linear-gradient(135deg, #fdf2f8 0%, #fce4ec 100%);
    border: 3px solid #e1306c;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-box {
        padding: 2rem 1.5rem;
        min-height: 180px;
    }
}
