.map-section {
    padding: 90px 20px;
    background: radial-gradient(circle at top, #fff7e1 0%, #ffffff 55%, #f3f0dc 100%);
}

.map-card {
    max-width: 1100px;
    margin: 0 auto;
    background: white;
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.map-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}

.map-info h3 {
    color: #1565c0;
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.map-info p {
    color: #4a4a4a;
    max-width: 620px;
}

.map-badge {
    background: #0d47a1;
    color: #ffffff;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.4px;
    font-size: 0.9rem;
}

.map-frame {
    position: relative;
    width: 100%;
    height: clamp(260px, 48vw, 420px);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(13, 71, 161, 0.15);
    background: #e8eef5;
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.map-actions {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.map-link {
    text-decoration: none;
    color: #0d47a1;
    font-weight: 600;
}

@media (max-width: 768px) {
    .map-card {
        padding: 22px;
    }

    .map-info h3 {
        font-size: 1.5rem;
    }
}
