/* Map Location Section - Basic to Premium */
.map-location-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.98) 100%) !important;
    border-radius: 30px !important;
    padding: 4rem 3rem !important;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08) !important;
    position: relative;
    overflow: hidden;
}

.map-location-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(39, 174, 96, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.map-location-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(34, 153, 84, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.map-location-section .section-title {
    position: relative;
    z-index: 1;
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.map-location-section .section-subtitle {
    position: relative;
    z-index: 1;
    color: #636e72;
    font-size: 1.2rem !important;
    margin-bottom: 2.5rem !important;
    font-weight: 400;
}

.map-container-home {
    border-radius: 25px !important;
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.15) !important;
    height: 500px !important;
    position: relative;
    z-index: 1;
    border: 3px solid rgba(39, 174, 96, 0.1) !important;
    transition: all 0.4s ease;
}

.map-container-home:hover {
    box-shadow: 0 20px 70px rgba(39, 174, 96, 0.2) !important;
    transform: translateY(-5px) !important;
    border-color: rgba(39, 174, 96, 0.3) !important;
}