/* styles spécifiques à la page contact */

.wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
    z-index: 1;
}

/* ─── CONTACT GRID ───────────────────────── */
.section.contact-section {
    padding-top: 0;
    margin-top: -46px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 30px;
    align-items: start;
}

@media (max-width: 920px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

@media (max-width: 480px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
}

.info-card {
    background: #ffffff;
    border: 1px solid #e6ecf4;
    border-radius: 18px;
    padding: 22px;
    transition: transform 0.18s, box-shadow 0.2s, border-color 0.2s;
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 44px rgba(16, 38, 76, 0.10);
    border-color: transparent;
}

.info-card .ii {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: #e7edff;
    color: #2e5bff;
    display: grid;
    place-items: center;
    margin-bottom: 14px;
}

.info-card .ii svg {
    width: 22px;
    height: 22px;
    stroke-width: 1.9;
}

.info-card h4 {
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.info-card a,
.info-card p {
    color: #2e5bff;
    font-size: 14px;
    margin-top: 5px;
    font-weight: 600;
    word-break: break-word;
}

.info-card.muted-val p {
    color: #5b6b82;
    font-weight: 500;
}

.map-card {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #e6ecf4;
    margin-bottom: 18px;
}

/* image placeholder */
.ph {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: repeating-linear-gradient(135deg, #eef2f9 0 14px, #e7ecf5 14px 28px);
    border: 1px solid #e6ecf4;
    display: grid;
    place-items: center;
    color: #8593a6;
}

.ph::after {
    content: attr(data-label);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.02em;
    color: #9aa7bb;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.78);
    border-radius: 8px;
}

.social-card {
    background: #ffffff;
    border: 1px solid #e6ecf4;
    border-radius: 18px;
    padding: 26px;
    text-align: center;
    margin-top: 18px;
}

.social-card h4 {
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
}

.social-row {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.social-row a {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: #f2f5fa;
    color: #5b6b82;
    display: grid;
    place-items: center;
    transition: background 0.2s, color 0.2s, transform 0.15s;
}

.social-row a:hover {
    background: #2e5bff;
    color: #ffffff;
    transform: translateY(-3px);
}

.social-row a svg {
    width: 20px;
    height: 20px;
}