/* assets/css/about-global.css */

.section-global {
    padding: 100px 0;
    background: #f8fafc;
    /* Very light slate */
    position: relative;
}

.global-header {
    text-align: center;
    margin-bottom: 60px;
}

.global-highlight {
    color: #1668B2;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.875rem;
    margin-bottom: 16px;
    display: block;
}

.global-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
}

/* Regional Cards Layout */
.regional-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 2;
    position: relative;
}

.region-card {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(16px) saturate(120%);
    -webkit-backdrop-filter: blur(16px) saturate(120%);
    border-radius: 24px;
    padding: 36px 28px;
    box-shadow: 0 10px 40px -10px rgba(15, 23, 42, 0.05);
    border: 1px solid rgba(15, 23, 42, 0.06);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.region-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 30px 60px -15px rgba(22, 104, 178, 0.12);
    border-color: rgba(22, 104, 178, 0.25);
}

/* Accent Line */
.region-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #37B54A, #1668B2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.region-card:hover::before {
    opacity: 1;
}

.region-icon {
    width: 52px;
    height: 52px;
    background: rgba(22, 104, 178, 0.06);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1668B2;
    margin-bottom: 24px;
    font-size: 22px;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.region-card:hover .region-icon {
    background: #1668B2;
    color: #ffffff;
    transform: scale(1.05) rotate(5deg);
}

.region-name {
    font-size: 1.35rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.branch-count {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1668B2, #37B54A);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 16px;
    display: block;
    font-family: 'Outfit', sans-serif;
}

.hub-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hub-list li {
    display: flex;
    align-items: center;
    font-size: 0.975rem;
    color: #475569;
    margin-bottom: 0;
    padding-left: 0;
    transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, filter 0.2s ease;
}

.hub-list li::before {
    display: none;
}

.hub-list li:hover {
    color: #1668B2;
    transform: translateX(4px);
}

.flag-icon {
    display: inline-block;
    vertical-align: middle;
    width: 18px;
    height: 18px;
    margin-right: 12px;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(15, 23, 42, 0.15);
    border: 1px solid rgba(15, 23, 42, 0.08);
    flex-shrink: 0;
}

/* Map Placeholder (Abstract Background) */
.map-backdrop {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    opacity: 0.04;
    background-image: radial-gradient(rgba(15, 23, 42, 0.15) 2px, transparent 2px);
    background-size: 32px 32px;
    z-index: 0;
    pointer-events: none;
}

/* Specific Highlights */
.region-card.primary {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(240, 249, 255, 0.8) 100%);
    border: 1px solid rgba(22, 104, 178, 0.25);
    box-shadow: 0 15px 45px -10px rgba(22, 104, 178, 0.08);
}

.region-card.primary:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 249, 255, 0.95) 100%);
    border-color: rgba(22, 104, 178, 0.4);
    box-shadow: 0 30px 60px -15px rgba(22, 104, 178, 0.18);
}

@media (max-width: 991px) {
    .regional-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .regional-grid {
        grid-template-columns: 1fr;
    }
}

