.location-section {
  background-color: #fdf9f4; /* Sama seperti ourstory-section */
  padding: 60px 20px;
  color: #333;
}

.location-section h3 {
  font-size: 2rem;
  color: #8B0000; /* Warna merah tua seperti heading Our Story */
  font-weight: 700;
  margin-bottom: 30px;
}

.map-wrapper {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.5s ease;
}

.map-wrapper:hover {
  transform: scale(1.01);
}

.map-background {
  position: relative;
}

.map-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.75);
  transition: filter 0.3s ease;
}

.map-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(3px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  color: #fff;
}

.map-overlay p {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 15px;
}

.map-overlay .btn {
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  padding: 10px 24px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}
