/* =========================
   MAP MODAL
========================= */

.map-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.map-modal-content {
    background: #fff;
    width: 95%;
    max-width: 650px;
    border-radius: 12px;
    padding: 20px;
    position: relative;
    animation: zoomIn 0.3s ease;
}

.close-modal {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 22px;
    cursor: pointer;
}
