/* ========== MAP/IFRAME SECTION ========== */

.map-section {
    position: relative;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.map-container {
    position: relative;
    z-index: 2;
}


/* ========== MAP WRAPPER ========== */
.map-wrapper {
    position: relative;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 25px;
}


/* Iframe Styling */
.map-wrapper iframe {
    display: block;
    width: 100%;
    height: 350px;
    border: none;
    background: #f5f5f5;
}

/* ========== RESPONSIVE ========== */


@media (max-width: 768px) {

    
    .map-wrapper iframe {
        height: 300px;
    }
}

@media (max-width: 480px) {

    .map-wrapper iframe {
        height: 250px;
    }
}