/* ============================================================
   GLOBAL ALUMNI NETWORK – CSS
   ============================================================ */

#global {
    background: linear-gradient(180deg, #f6f9ff 0%, #f9f6ff 100%) !important;
    padding: 80px 0 !important;
}

/* Titles */
#global .global-title {
    background: none !important;
    -webkit-text-fill-color: #0a1a4a !important;
    color: #0a1a4a !important;
    font-weight: 900;
    font-size: 40px;
}

#global .global-subtitle {
    color: #34436b !important;
    font-size: 16px;
    max-width: 820px;
    margin: 0 auto 8px;
}

/* Map Card */
.worldmap-card {
    background: #fff;
    border: 1px solid rgba(10,30,80,0.12);
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 10px 32px rgba(9, 30, 66, 0.08);
}

/* Map Container */
.map-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 2 / 1;
    overflow: hidden;
    border-radius: 14px;
    background: #eef3ff;
}

.world-map {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    pointer-events: none;
}

/* Pins */
.scm-pin {
    position: absolute;
    transform: translate(-50%, -50%);
    border: none;
    background: none;
    cursor: pointer;
    width: 38px;
    height: 38px;
}

.scm-icon {
    width: 24px;
    height: 32px;
    pointer-events: none;
    filter: drop-shadow(0px 3px 8px rgba(0,0,0,0.25));
    transition: 0.25s ease;
}

.scm-pin:hover .scm-icon {
    transform: scale(1.15);
    filter: drop-shadow(0px 6px 14px rgba(61,165,255,0.6));
}

/* Tooltip */
.map-tooltip {
    position: absolute;
    pointer-events: none;
    padding: 6px 10px;
    background: #0a1a4a;
    color: #fff;
    border-radius: 8px;
    font-size: 12px;
    transform: translate(-50%, calc(-100% - 12px));
    opacity: 0;
    transition: opacity .15s ease, transform .15s ease;
    white-space: nowrap;
    z-index: 10;
}

.map-tooltip.show {
    opacity: 1;
    transform: translate(-50%, calc(-100% - 8px));
}

/* Pills */
.country-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.pill {
    background: #fff;
    border: 1px solid rgba(10,30,80,0.14);
    padding: 8px 14px;
    color: #0a1a4a;
    border-radius: 999px;
    font-size: 14px;
    box-shadow: 0 6px 14px rgba(9,30,66,.06);
    transition: .15s ease;
}

.pill:hover {
    transform: translateY(-2px);
}
