/* Service Area Map Styles */

.service-area-section {
    background-color: #ffffff;
    padding: 100px 0;
    position: relative;
}

.map-container-wrapper {
    position: relative;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(197, 160, 89, 0.2);
    margin-top: 40px;
}

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

.map-overlay-card {
    position: absolute;
    top: 40px;
    left: 40px;
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    z-index: 10;
    max-width: 350px;
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border-left: 5px solid #c5a059;
}

.map-overlay-card h3 {
    margin-bottom: 20px;
    color: #000000;
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
}

.map-overlay-card p {
    color: #555555;
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.6;
}

.map-overlay-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.map-overlay-card li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #111111;
    font-weight: 500;
}

.map-overlay-card i {
    color: #c5a059;
    font-size: 1.1rem;
}

.map-overlay-card .btn {
    width: 100%;
    display: block;
    text-align: center;
}

@media (max-width: 768px) {
    .map-container-wrapper {
        height: 500px;
    }

    .map-overlay-card {
        top: 20px;
        left: 20px;
        right: 20px;
        max-width: none;
        padding: 25px;
    }

    .map-overlay-card p,
    .map-overlay-card ul {
        display: none;
        /* Hide extra details on mobile for space */
    }

    .map-overlay-card h3 {
        margin-bottom: 15px;
    }
}