/* Map Section Styles */
.map-section {
    position: relative;
    width: 100%;
    padding: 60px 0;
    overflow: hidden;
}

.map-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.map-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(109, 247, 128, 0.3);
    box-shadow: 0 0 30px rgba(109, 247, 128, 0.1);
    transition: all 0.3s ease;
}

.map-wrapper:hover {
    border-color: rgba(109, 247, 128, 0.6);
    box-shadow: 0 0 50px rgba(109, 247, 128, 0.2);
}

.styled-map {
    width: 100%;
    height: 100%;
    border: 0;
    /* Dark Mode Filter for Map */
    filter: grayscale(100%) invert(92%) contrast(83%);
    transition: filter 0.5s ease;
}

.map-wrapper:hover .styled-map {
    /* Slightly brighter on hover */
    filter: grayscale(100%) invert(92%) contrast(90%);
}

/* Map Overlay Glows */
.map-glow-1 {
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(109, 247, 128, 0.3) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 3;
    pointer-events: none;
}

.map-glow-2 {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(109, 247, 128, 0.3) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 3;
    pointer-events: none;
}

/* Mobile Responsiveness */
@media screen and (max-width: 767px) {
    .map-wrapper {
        height: 350px;
    }

    .map-container {
        padding: 0 20px;
    }
}