.livemap-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    z-index: 10;
}

.livemap-header h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.map-description {
    color: #ccc;
    margin-bottom: 40px;
}

.map-container {
    background: rgba(0, 0, 0, 0.6);
    padding: 15px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.map-iframe {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 10px;
    display: block;
}

.map-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    color: #bbb;
    text-transform: uppercase;
}

.map-badges i { 
    color: #00fbff; 
}

@media (max-width: 1140px) {
    .livemap-section { width: 95%; }
}

@media (max-width: 768px) {
    .map-iframe { height: 400px; }
    .livemap-section { padding: 40px 5%; }
}