/*
 * Map section styles
 */
.map-section {
    position: relative;
    overflow: hidden;
    padding: 0;
    z-index: 0;
}
.map-section .map-frame::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.00) 35.08%, rgba(0, 0, 0, 0.18) 100%);
    background-blend-mode: multiply, normal;
    z-index: 401;
    pointer-events: none;
}
.map-section .map-frame {
    width: 100%;
    height: 580px;
    z-index: 0;
}
.contact-form-section + .map-section {
    margin-top: -244px;
}
.map-frame .leaflet-marker-pane {
    position: relative;
}
.map-frame .leaflet-marker-pane img {
    border-radius: 50%;
    animation: market-pulse 2s infinite linear;
}
@keyframes market-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(21, 159, 197, 0.45);
    }
    40% {
        box-shadow: 0 0 0 6px rgba(21, 159, 197, 0.25);
    }
    80% {
        box-shadow: 0 0 0 12px rgba(21, 159, 197, 0);
    }
    100% {
        box-shadow: 0 0 0 12px rgba(21, 159, 197, 0);
    }
}
@media (prefers-reduced-motion: reduce) {
    .map-frame .leaflet-marker-pane img {
        animation: none;
    }
}
@media (max-width: 768px) {
    .map-section .map-frame {
        height: 460px;
    }
    .contact-form-section + .map-section {
        margin-top: -180px;
    }
}