/* ============================================================
   GLOBAL REACH SECTION
   ============================================================ */
.global-reach {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.global-reach::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 900px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.08);
  pointer-events: none;
}

.global-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

/* Map Container */
.global-map-container {
  background: rgba(18, 32, 64, 0.75);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: var(--radius-xl);
  padding: 1.5rem 1.5rem 2rem;
  backdrop-filter: blur(8px);
  margin-bottom: 3rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  position: relative;
}

.global-map-wrapper {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.global-map-bg-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  filter: brightness(0.95) contrast(1.05);
}

/* Map Hotspots */
.map-hotspot {
  position: absolute;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 5;
}

.hotspot-dot {
  width: 16px;
  height: 16px;
  background: var(--gold);
  border: 3px solid var(--navy);
  border-radius: 50%;
  box-shadow: 0 0 20px var(--gold), 0 0 10px var(--gold-light);
  position: relative;
  z-index: 2;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hotspot-pulse {
  position: absolute;
  top: -9px;
  left: -9px;
  width: 34px;
  height: 34px;
  background: rgba(201, 168, 76, 0.50);
  border-radius: 50%;
  animation: pulse-ring 2.2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
  pointer-events: none;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.3);
    opacity: 0.95;
  }
  80%, 100% {
    transform: scale(1.7);
    opacity: 0;
  }
}

.map-hotspot:hover .hotspot-dot {
  transform: scale(1.35);
  background: var(--gold-light);
}

/* Hotspot Card / Tooltip */
.hotspot-card {
  position: absolute;
  bottom: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--navy);
  border: 1.5px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 0.875rem 1.125rem;
  width: max-content;
  max-width: 240px;
  text-align: left;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 10;
}

.hotspot-card::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: var(--gold) transparent transparent transparent;
}

.map-hotspot:hover .hotspot-card,
.hotspot-card.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.hotspot-badge {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.hotspot-title {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.hotspot-text {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.70);
  margin-top: 0.25rem;
  line-height: 1.4;
}

/* Stats Row Overlay */
.global-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.global-stat-card {
  padding: 1.25rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-normal);
}

.global-stat-card:hover {
  background: rgba(201, 168, 76, 0.08);
  border-color: rgba(201, 168, 76, 0.25);
  transform: translateY(-2px);
}

.global-stat-num {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.global-stat-label {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}

.global-stat-desc {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0.2rem;
}

/* Tags */
.global-tags {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.875rem;
  flex-wrap: wrap;
}

.global-tag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.04);
  transition: var(--transition-normal);
}

.global-tag:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(201, 168, 76, 0.10);
  transform: translateY(-2px);
}

.global-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .global-map-container {
    padding: 1rem 0.75rem 1.25rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .global-map-wrapper {
    min-width: 480px;
  }

  .global-stats-grid {
    grid-template-columns: 1fr;
    gap: 0.875rem;
    margin-top: 1.5rem;
  }

  .global-stat-card {
    padding: 1.25rem 1rem;
  }

  .hotspot-card {
    max-width: 160px;
    padding: 0.5rem 0.75rem;
  }

  .hotspot-badge {
    font-size: 0.50rem;
  }

  .hotspot-title {
    font-size: 0.75rem;
  }

  .hotspot-text {
    font-size: 0.65rem;
  }

  .global-tags {
    gap: 0.5rem;
  }

  .global-tag {
    font-size: 0.68rem;
    padding: 0.4rem 0.8rem;
  }
}
