/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   GLOBAL PRESENCE SECTION
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.global-presence-section {
    padding: 80px 0;
    background: #f8f7ff;
}

/* Map Wrapper */
.map-wrapper {
    background: #f0eff8;
    border-radius: 15px;
    padding: 20px;
    margin: 40px 0;
    box-shadow: 0 5px 30px rgba(61, 54, 112, 0.08);
}

#world-map {
    width: 100%;
    height: 500px;
}

/* Region Stats */
.region-stats {
    margin-top: 40px;
    text-align: center;
}

.region-box {
    padding: 20px 10px;
    border-radius: 10px;
    background: #fff;
    margin-bottom: 20px;
    box-shadow: 0 3px 15px rgba(61, 54, 112, 0.08);
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.region-box:hover {
    transform: translateY(-5px);
    border-bottom: 3px solid #6B3FE7;
    box-shadow: 0 10px 25px rgba(107, 63, 231, 0.15);
}

.region-box i {
    font-size: 30px;
    color: #6B3FE7;
    margin-bottom: 10px;
    display: block;
}

.region-box h4 {
    font-size: 16px;
    font-weight: 700;
    color: #3D3670;
    margin-bottom: 5px;
}

.region-box p {
    font-size: 12px;
    color: #888;
    margin: 0;
    line-height: 1.4;
}

/* amCharts map container */
#world-map {
    background: #f0eff8;
    border-radius: 10px;
}

/* Hide amCharts branding (free version) */
.amcharts-amexport-menu,
a[href*="amcharts.com"] {
    display: none !important;
}

/* Responsive */
@media (max-width: 991px) {
    #world-map {
        height: 350px;
    }
}

@media (max-width: 575px) {
    #world-map {
        height: 250px;
    }

    .region-box {
        padding: 15px 8px;
    }

    .region-box i {
        font-size: 24px;
    }

    .region-box h4 {
        font-size: 13px;
    }
}
