/* Hero — مسیر عراق → ایران، نوار زیر هدر */
.hero-route {
  position: absolute;
  left: 0;
  right: 0;
  top: var(--hero-route-top, 74px);
  height: 188px;
  z-index: 1;
  overflow: visible;
  pointer-events: none;
  user-select: none;
  opacity: 0.999;
}

.hero-route-svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  shape-rendering: geometricPrecision;
}

.hero-route-item {
  opacity: 1;
}

.hero-route-path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  animation: hero-route-path-pulse 3.4s ease-in-out infinite;
}

@keyframes hero-route-path-pulse {
  0%, 100% {
    opacity: 0.78;
  }
  50% {
    opacity: 1;
  }
}

.hero-route-path--dotted {
  stroke: #ca8a04;
  stroke-width: 3;
  stroke-dasharray: 0 12;
  stroke-linecap: round;
}

.hero-route-pin-icon-wrap {
  filter: drop-shadow(0 2px 5px rgba(17, 24, 39, 0.22));
}

.hero-route-pin-body {
  fill: #eab308;
}

.hero-route-pin-hole {
  fill: #fff;
}

.hero-route-label {
  font-size: 10px;
  font-weight: 900;
  fill: #1f2937;
  stroke: rgba(255, 255, 255, 0.95);
  stroke-width: 0.6;
  paint-order: stroke fill;
  text-anchor: middle;
  dominant-baseline: hanging;
  font-family: var(--font), 'Segoe UI', Tahoma, system-ui, sans-serif;
}

@media (max-width: 768px) {
  .hero-route {
    z-index: 1;
    height: 128px;
  }

  .hero-route-path--dotted {
    stroke-width: 2.4;
    stroke-dasharray: 0 9;
  }

  .hero-route-label {
    font-size: 8px;
    stroke-width: 0.45;
  }
}

@media (max-width: 575px) {
  .hero-route {
    height: 120px;
  }

  .hero-route-path--dotted {
    stroke-width: 2.2;
    stroke-dasharray: 0 8;
  }

  .hero-route-label {
    font-size: 7.5px;
  }
}

@media (max-width: 399px) {
  .hero-route {
    height: 108px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-route-path {
    animation: none;
    opacity: 1;
  }
}
