/* Our Locations */
.leaflet-tile-pane {
    filter: invert(1) hue-rotate(180deg);
  }

.location-section { background: #1f2a44; color: white; }
.map-wrapper {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  max-width: 900px;
  margin: 0 auto;
}
#map { height: 500px; width: 100%; background: #0d1b2e; }

/* Animated Pin */
.pulse-wrapper { position: relative; width: 40px; height: 40px; }
.pulse-pin {
  width: 14px; height: 14px;
  background: #f59e0b;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  position: absolute; top: 10px; left: 13px;
  animation: pinBounce 0.6s ease forwards;
  opacity: 0;
}
.pulse-pin::after {
  content: ''; width: 6px; height: 6px;
  background: white; border-radius: 50%;
  position: absolute; top: 4px; left: 4px;
}
.pulse-ring {
  border: 2px solid #f59e0b;
  border-radius: 50%; position: absolute;
  animation: pulseRing 2s ease-out infinite; opacity: 0;
}
.pulse-ring:nth-child(1) { width: 30px; height: 30px; top: 5px; left: 5px; animation-delay: 0.8s; }
.pulse-ring:nth-child(2) { width: 44px; height: 44px; top: -2px; left: -2px; animation-delay: 1.3s; }

@keyframes pulseRing {
  0% { transform: scale(0.5); opacity: 0.8; }
  100% { transform: scale(1.4); opacity: 0; }
}
@keyframes pinBounce {
  0%   { transform: rotate(-45deg) translateY(-20px); opacity: 0; }
  60%  { transform: rotate(-45deg) translateY(4px); opacity: 1; }
  80%  { transform: rotate(-45deg) translateY(-4px); }
  100% { transform: rotate(-45deg) translateY(0); opacity: 1; }
}

/* Popup Styling */
.leaflet-popup-content-wrapper {
  background: #1e293b !important;
  border: 1px solid rgba(245,158,11,0.3) !important;
  border-radius: 10px !important;
  color: white;
}
.leaflet-popup-tip { background: #1e293b !important; }
.popup-city { font-size: 15px; font-weight: 600; color: #f59e0b; margin: 0 0 4px; }
.popup-state { font-size: 12px; color: #94a3b8; margin: 0 0 8px; }
.popup-tag {
  display: inline-block;
  background: rgba(245,158,11,0.15);
  border: 1px solid rgba(245,158,11,0.3);
  color: #f59e0b; font-size: 11px;
  padding: 2px 8px; border-radius: 20px; margin: 2px 2px 0 0;
}

/* City Pills */
.city-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 20px; }
.city-pill {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: 20px; padding: 6px 14px;
  color: #cbd5e1; font-size: 13px; cursor: pointer; transition: all 0.2s;
}
.city-pill:hover { background: rgba(245,158,11,0.12); border-color: #f59e0b; color: #f59e0b; }
.city-dot { width: 7px; height: 7px; background: #f59e0b; border-radius: 50%; }