.bc-fp-map {
  padding: 5rem 2.5rem;
}

.bc-fp-map-wrap {
  max-width: var(--bc-max-width);
  margin: 0 auto;
  text-align: center;
}

.bc-fp-map-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bc-blue);
  margin-bottom: 0.5rem;
}

.bc-fp-map-title {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 1.25rem;
  color: var(--bc-black);
}

.bc-fp-map-container {
  background: var(--bc-white);
  border: none;
  border-radius: 14px;
  padding: 2rem;
  position: relative;
  max-width: 820px;
  margin: 0 auto;
}

.bc-fp-map-svg-wrap {
  max-width: 420px;
  margin: 0 auto 2rem;
  position: relative;
}

.bc-fp-map-svg-wrap svg {
  width: 100%;
  height: auto;
  display: block;
}

.bc-svc-voiv-path {
  fill: #E9ECEF;
  stroke: #fff;
  stroke-width: 1.5;
  cursor: pointer;
  transition: fill 0.25s ease, stroke 0.25s ease;
}

.bc-svc-voiv-path:hover,
.bc-svc-voiv-path.active,
.bc-svc-voiv-path.tapped {
  fill: #EEF1FF;
  stroke: var(--bc-blue);
  stroke-width: 2.5;
}

.bc-fp-map-tooltip {
  position: absolute;
  background: var(--bc-blue);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
  white-space: nowrap;
  z-index: 10;
  transform: translate(-50%, -100%);
}

.bc-fp-map-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--bc-blue);
}

.bc-fp-map-tooltip.visible {
  opacity: 1;
}

.bc-fp-map-mobile-label {
  display: none;
}

.bc-fp-map-mobile-hint {
  display: none;
}

.bc-fp-map-mobile-list {
  display: none;
}

.bc-fp-map-mobile-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0.85rem;
  border: 1px solid #E9ECEF;
  border-radius: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #343A40;
  cursor: pointer;
  transition: all 0.2s ease;
}

.bc-fp-map-mobile-chip:active {
  border-color: var(--bc-blue);
  background: #EEF1FF;
  color: var(--bc-blue);
}

.bc-fp-map-mobile-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #DEE2E6;
  flex-shrink: 0;
}

.bc-fp-map-cities-title {
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.25rem;
  letter-spacing: -0.2px;
  color: var(--bc-black);
}

.bc-fp-map-cities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem 1rem;
  border: 1px solid #E9ECEF;
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  background: var(--bc-white);
}

.bc-fp-map-city-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: #343A40;
  transition: all 0.2s ease;
  padding: 0.35rem 0.5rem;
  border-radius: 6px;
  display: block;
  text-decoration: none;
}

.bc-fp-map-city-link:hover {
  color: var(--bc-blue);
  background: #EEF1FF;
  transform: translateX(2px);
}

.bc-fp-map-cta-wrap {
  text-align: center;
  margin-top: 1.5rem;
}

.bc-fp-map-cta {
  display: inline-flex;
  padding: 0.65rem 1.5rem;
  border-radius: 10px;
  background: var(--bc-blue);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease;
}

.bc-fp-map-cta:hover {
  background: var(--bc-blue-dark);
  color: #fff;
}

@media (max-width: 900px) {
  .bc-fp-map { padding: 3.5rem 1.25rem; }
  .bc-fp-map-container { padding: 1.25rem; }
  .bc-fp-map-svg-wrap { max-width: 320px; margin: 0 auto 1rem; }
  .bc-fp-map-mobile-label { display: flex; align-items: center; justify-content: center; gap: 0.4rem; min-height: 2rem; margin-bottom: 0.75rem; font-size: 0.82rem; font-weight: 700; color: var(--bc-blue); opacity: 0; transition: opacity 0.25s ease; }
  .bc-fp-map-mobile-label.visible { opacity: 1; }
  .bc-fp-map-mobile-label span:first-child { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--bc-blue); flex-shrink: 0; }
  .bc-fp-map-mobile-hint { display: block; text-align: center; font-size: 0.7rem; color: #ADB5BD; margin-bottom: 0.75rem; font-weight: 600; }
  .bc-fp-map-cities-grid { grid-template-columns: repeat(2, 1fr); gap: 0.4rem 0.75rem; padding: 1rem 1.25rem; }
  .bc-fp-map-city-link { font-size: 0.75rem; padding: 0.3rem 0.4rem; }
  .bc-fp-map-mobile-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; margin-bottom: 1.25rem; }
  .bc-fp-map-tooltip { display: none; }
}

@media (max-width: 480px) {
  .bc-fp-map { padding: 2.5rem 1rem; }
  .bc-fp-map-svg-wrap { max-width: 280px; }
  .bc-fp-map-container { padding: 1rem; }
  .bc-fp-map-cities-grid { grid-template-columns: 1fr 1fr; gap: 0.3rem 0.5rem; padding: 0.85rem 1rem; }
  .bc-fp-map-city-link { font-size: 0.72rem; }
  .bc-fp-map-cities-title { font-size: 0.95rem; }
}
