/* =========================
   MAP MODAL
========================= */

.map-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(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 .3s ease;
}

.close-modal {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 22px;
    cursor: pointer;
}

.map-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.map-btn {
    flex: 1;
    border: none;
    padding: 10px;
    font-size: 14px;
    border-radius: 8px;
    cursor: pointer;
    color: #fff;
    font-weight: 600;
}

.map-btn.google {
    background: #4285f4;
}

.map-btn.pathao {
    background: #00b14f;
}

.map-btn.uber {
    background: #000;
}

.map-btn:hover {
    opacity: .9;
}

@keyframes zoomIn {
    from {
        transform: scale(.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}