/* ================================
   Dua Maps Bersebelahan
   ================================ */
.footer-maps {
  background-color: #f5f5f5; /* sama seperti .footer-map sebelumnya */
  padding: 30px 20px;
  margin-top: 40px;
}

.maps-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.map-wrapper {
  flex: 1 1 45%; /* Dua kolom, masing-masing minimal 45% lebar kontainer */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.map-wrapper h4 {
  font-size: 1.25rem;
  color: #333;
  margin-bottom: 15px;
  text-align: center;
}

.map-container {
  position: relative;
  width: 100%;
  /* Aspek rasio 16:9 → padding-top: 56.25% */
  padding-top: 56.25%;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Responsif: satu kolom di layar kecil */
@media (max-width: 768px) {
  .map-wrapper {
    flex: 1 1 100%;
  }
}
