/* En-tête de page contact */
.contact-header {
    margin-top: 70px;
    padding: 2rem 0;
    background: linear-gradient(135deg, var(--dark-brown) 0%, var(--primary-color) 100%);
    text-align: center;
    color: var(--text-light);
}

.contact-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.contact-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Contenu contact */
.contact-content {
    padding: 4rem 0;
    background: linear-gradient(180deg, #FFF 0%, var(--light-cream) 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Informations de contact */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-left: 4px solid var(--secondary-color);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.2);
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    font-size: 1.5rem;
    color: var(--dark-brown);
    margin-bottom: 0.8rem;
}

.info-card h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.info-card p {
    color: #555;
    line-height: 1.8;
}

.info-card a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-card a:hover {
    color: var(--primary-color);
}

.info-card.legal {
    background: var(--light-cream);
    border-left-color: var(--accent-color);
}

.small {
    font-size: 0.95rem;
    line-height: 1.8;
}

.small strong {
    color: var(--primary-color);
}

.small-text {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
}

/* Carte interactive */
.map-container {
    position: sticky;
    top: 90px;
    height: 600px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

#map {
    width: 100%;
    height: 100%;
}

/* Responsive */
@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .map-container {
        position: relative;
        top: 0;
        height: 400px;
    }

    .contact-header h1 {
        font-size: 2rem;
    }
}