.interactive-map-wrapper {
    position: relative;
    width: 100%;
}

.custom-interactive-map {
    width: 100%;
    z-index: 1;
    border-radius: 8px;
}

/* Modal Overlay */
.map-modal-overlay {
    display: none; 
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
}

/* Modal Box */
.map-modal-content {
    background-color: #fefefe;
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    animation: mapModalFadeIn 0.3s ease-in-out;
}

@keyframes mapModalFadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.map-modal-close {
    color: #aaa;
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    z-index: 10;
}

.map-modal-close:hover {
    color: #000;
}

.modal-logo {
    display: block;
    margin-bottom: 15px;
    border-radius: 4px;
    object-fit: contain;
}

.modal-title {
    margin-top: 0;
    margin-bottom: 10px;
}

.modal-desc {
    margin-bottom: 20px;
}

.modal-desc p {
    margin-top: 0;
    margin-bottom: 10px;
}

.modal-gmap-embed iframe {
    width: 100%;
    height: 250px;
    border: 0;
    border-radius: 8px;
    background: #f0f0f0;
}