/* ===== GEO SECTION (Map Europe) — Bloc-type CSS (chargé dynamiquement) ===== */

.geo-section {
  background: var(--bg-navy);
  padding: 8rem 6rem;
  position: relative;
  overflow: hidden;
}

.geo-section__chevron-bg {
  position: absolute;
  bottom: -5%;
  right: -5%;
  width: 400px;
  height: 800px;
  opacity: 0.04;
}

.geo-section__chevron-bg path {
  stroke: var(--accent);
  stroke-width: 3;
  fill: none;
}

.geo-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.geo-section__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.geo-section__text {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* Europe SVG Map */
.geo-map-container {
  position: relative;
  width: 100%;
}

.geo-map-svg {
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.2;
}

.city-marker {
  position: absolute;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 2;
}

.city-marker:hover {
  z-index: 100;
}

.city-marker__dot {
  display: block;
  width: 24px;
  height: 27px;
  position: relative;
  z-index: 2;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-6 0 26.6 24'%3E%3Cpath d='M-1,24H-6l7.7-12.2L-5.7,0h5l7.4,11.8-7.8,12.2Z' fill='%23ff7d01'/%3E%3Cpath d='M0.3,0 L5.3,0 L10.3,8.5 L15.2,0 L20.2,0 L12.8,11.8 L20.6,24 L15.6,24 L10.3,15.5 L5,24 L0,24 L7.7,11.8 Z' fill='%23ff7d01'/%3E%3C/svg%3E") center/contain no-repeat;
}

.city-marker__label {
  position: absolute;
  bottom: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--bg-navy);
  border: 1px solid rgba(255, 125, 1, 1);
  color: var(--text-light);
  padding: 24px 24px 20px;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 130px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
  z-index: 100;
}

.city-marker:hover .city-marker__label,
.city-marker.active .city-marker__label {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.city-marker.active {
  z-index: 100;
}

.city-marker__icon {
  width: 56px;
  height: 56px;
  filter: brightness(0) invert(1);
}

.city-marker__name {
  font-size: 0.85rem;
  font-weight: 700;
  font-family: 'Plaax Ney', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .geo-section__grid {
    gap: 4rem;
  }
}

@media (max-width: 1024px) {
  .geo-section {
    padding: 6rem 2rem;
  }

  .geo-section__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .geo-map-container {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .geo-section { padding: 4rem 1rem; }
}
