/* Header section seperti halaman lain */
.header-section {
  background: linear-gradient(
    180deg,
    rgba(250, 255, 203, 0.35),
    rgba(255, 255, 255, 0.8)
  );
  text-align: center;
  padding-top: 100px !important;
  padding-bottom: 60px;
  position: relative;
  z-index: 2;
}
.display-title {
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--brand-dark);
}
.subtle {
  color: rgba(15, 23, 42, 0.7);
}

/* Map wrapper */
.map-section {
  position: relative;
  width: 100%;
  height: calc(100vh - 80px);
  margin-top: 0;
  z-index: 1;
}

#map {
  height: 100%;
  width: 100%;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* Responsif */
@media (max-width: 768px) {
  .map-section {
    height: calc(100vh - 64px);
  }
}

/* Layer control styling */
.leaflet-control-layers {
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.leaflet-popup-content {
  font-size: 0.9rem;
  color: #222;
}
