/* Home — Our Reach (Europe / GCC map section) */

.section_our-reach {
  background-color: #0b111d;
  color: rgba(255, 255, 255, 0.82);
  overflow: hidden;
  position: relative;
}

.section_our-reach .our-reach__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 2.5rem 3rem;
  align-items: center;
}

.our-reach__content {
  max-width: 32rem;
  position: relative;
  z-index: 2;
}

.our-reach__heading {
  font-family: var(--_typography---font-styles--heading);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 1.5rem;
  color: #fff;
}

.our-reach__copy {
  margin: 0;
  font-family: var(--_typography---font-styles--body);
  font-size: 1rem;
  line-height: 1.65;
}

.our-reach__copy + .our-reach__copy {
  margin-top: 1.125rem;
}

.our-reach__copy strong {
  font-weight: 700;
  color: #fff;
}

/* ── Map container (holds injected inline SVG) ── */

.our-reach__map-wrap {
  position: relative;
  min-height: 560px;
  overflow: visible;
}

.our-reach__map {
  display: block;
  position: absolute;
  width: 220%;
  max-width: none;
  max-height: none;
  height: auto;
  top: 50%;
  left: -8%;
  transform: translateY(-42%);
}

.our-reach__map svg {
  display: block;
  width: 100%;
  height: auto;
}

/* ── Interactive country paths ── */

.map-path--interactive {
  cursor: pointer;
  transition: filter 0.2s ease, opacity 0.2s ease;
}

.map-path--interactive:hover {
  filter: brightness(1.45) drop-shadow(0 0 6px rgba(235, 112, 71, 0.35));
}

[data-region="primary"] {
  transition: filter 0.2s ease, fill 0.2s ease;
}

[data-region="primary"]:hover {
  filter: brightness(1.15) drop-shadow(0 0 10px rgba(235, 112, 71, 0.5));
}

/* ── Tooltip ── */

.our-reach__tooltip {
  position: absolute;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  padding: 0.5rem 0.85rem;
  background: rgba(7, 15, 30, 0.92);
  border: 1px solid rgba(235, 112, 71, 0.3);
  border-radius: 6px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.15s ease, transform 0.15s ease;
  white-space: nowrap;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.our-reach__tooltip.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.our-reach__tooltip-label {
  font-family: var(--_typography---font-styles--heading);
  font-size: 0.8125rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.our-reach__tooltip-sub {
  font-family: var(--_typography---font-styles--body);
  font-size: 0.6875rem;
  color: #eb7047;
  line-height: 1.3;
  letter-spacing: 0.03em;
}

/* ── Responsive ── */

@media screen and (max-width: 991px) {
  .section_our-reach .our-reach__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .our-reach__map-wrap {
    min-height: 380px;
  }

  .our-reach__map {
    width: 280%;
    left: -30%;
    transform: translateY(-40%);
  }
}

@media screen and (max-width: 479px) {
  .our-reach__copy {
    font-size: 0.9375rem;
  }

  .our-reach__map-wrap {
    min-height: 440px;
  }

  .our-reach__map {
    width: 235%;
    left: -13%;
    transform: translateY(-50%);
  }
}
