/* Custom Animations */
@keyframes slow-zoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

.animate-slow-zoom {
  animation: slow-zoom 20s infinite alternate linear;
}

.btn-primary-gradient {
  background: linear-gradient(135deg, #1a2e56 0%, #0d172b 100%);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 800;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 20px rgba(26, 46, 86, 0.2);
}

.btn-primary-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(26, 46, 86, 0.4);
}

.scale-up-animation {
  animation: scaleUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes scaleUp {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Styling Kartu Lokasi */
.location-card {
  background: #fcfcfc;
  padding: 2.5rem;
  border-radius: 2.5rem;
  border: 1px solid #f0f0f0;
  transition: all 0.4s ease;
}

.location-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 60px rgba(26, 46, 86, 0.1);
  border-color: #facc15;
}

.btn-maps {
  display: inline-flex;
  align-items: center;
  background-color: #1a2e56;
  color: white;
  padding: 0.8rem 1.8rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  transition: background 0.3s ease;
}

.btn-maps:hover {
  background-color: #facc15;
  color: #1a2e56;
}

/* Styling Iframe Maps */
.map-wrapper {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  border: 4px solid white;
  transition: transform 0.4s ease;
}

.map-wrapper:hover {
  transform: scale(1.02);
}

.location-container {
  padding: 1.5rem;
  border-radius: 2.5rem;
  background: #fdfdfd;
  transition: all 0.3s ease;
}

.location-container:hover {
  background: white;
  box-shadow: 0 30px 60px rgba(26, 46, 86, 0.08);
}

/* Pastikan logo bulat sempurna */
img[src="IMG_4072.jpeg"] {
  border-radius: 50%;
  background-color: transparent;
}
