/* Map Section */
.section-desc {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

.map-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    width: 100%;
    background: #fff;
    /* Fallback */
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: 0;
}

.map-overlay-card {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    z-index: 10;
    transition: transform 0.3s ease;
}

.map-overlay-card:hover {
    transform: translateY(-5px);
}

.map-overlay-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #000;
    font-weight: 600;
}

.map-overlay-card p {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.map-overlay-card p i {
    color: var(--accent-color);
    width: 20px;
    text-align: center;
}

.map-overlay-card .btn-primary {
    font-size: 0.9rem;
    padding: 0.7rem 1.2rem;
    width: 100%;
    text-align: center;
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 10px;
    text-decoration: none;
}

@media (max-width: 768px) {
    .map-overlay-card {
        position: relative;
        bottom: auto;
        left: auto;
        max-width: 100%;
        margin-top: -20px;
        border-radius: 0 0 20px 20px;
        box-shadow: none;
        background: #fff;
        z-index: 1;
    }

    .map-wrapper {
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }

    .map-wrapper iframe {
        height: 300px;
        border-radius: 15px 15px 0 0;
    }
}