.service-map-container {
    height: 500px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.service-map {
    width: 100%;
    height: 100%;
}

.map-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    max-width: 300px;
    z-index: 1;
}

.map-overlay h3 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.neighborhood-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.neighborhood-item {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    cursor: pointer;
    transition: color 0.3s ease;
}

.neighborhood-item:hover {
    color: var(--gold);
}

.neighborhood-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.map-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 1;
}

.map-control-btn {
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: background-color 0.3s ease;
}

.map-control-btn:hover {
    background-color: var(--gold);
    color: white;
}
