/* Live Map Section */
.live-map-section {
    padding: 0 0 80px;
    background: linear-gradient(to bottom, var(--background-light), var(--background));
}

.live-map-container {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: white;
    height: 700px;
    position: relative;
    border: 1px solid var(--border-color);
}

.live-map-frame {
    width: 100%;
    height: 100%;
    border: none;
}

.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(76, 175, 80, 0.1);
    color: #2E7D32;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.pulsing-dot {
    width: 8px;
    height: 8px;
    background-color: #4CAF50;
    border-radius: 50%;
    position: relative;
}

.pulsing-dot::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #4CAF50;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(3);
        opacity: 0;
    }
}

/* Hero Stats Adjustment */
.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.hero-stats .stat {
    text-align: left;
}

.hero-stats .stat h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.hero-stats .stat p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

@media (max-width: 768px) {
    .hero-stats {
        justify-content: center;
        text-align: center;
        gap: 1.5rem;
    }

    .hero-stats .stat {
        text-align: center;
    }

    .live-map-container {
        height: 400px;
        margin: 0 20px;
    }
}