/* Section */
.map-section {
  padding: 80px 20px;
  text-align: center;
}

.map-section h2 {
  font-size: 36px;
  margin-bottom: 40px;
}

/* Map */
.map-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 68%;
    margin: auto;
}

.wb-map {
  width: 320px;
  max-width: 90%;
}

/* State Shape */
.state-shape {
  fill: #1e293b;
  stroke: #38bdf8;
  stroke-width: 2;
}

/* Points */
.map-point {
  r: 6;
  fill: #22c55e;
  cursor: pointer;
  transition: transform 0.3s, fill 0.3s;
}

.map-point:hover {
  transform: scale(1.5);
  fill: #facc15;
}

/* Location Text */
.location-name {
  margin-top: 20px;
  font-size: 22px;
  color: #38bdf8;
  min-height: 30px;
}

/* Scroll Animation */
.animate {
  opacity: 0;
  transform: translateY(60px) scale(0.95);
  transition: all 1s ease;
}

.animate.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}