/* Font settings */
body {
  font-family: 'Inter', sans-serif;
}

.font-manrope {
  font-family: 'Manrope', sans-serif;
}

.font-ubuntu {
  font-family: 'Ubuntu', sans-serif;
}

/* Fade in effect */
.fade-in-text {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}

.fade-in-text.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-image {
  opacity: 0;
}

.fade-image.show {
  opacity: 1;
}

/* Sticky navbar shadow */
#navbar.scrolled {
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* .nav-link {
  @apply text-gray-700 hover:text-blue-600 pb-1 transition;
} */

/* .nav-link.active {
  @apply text-blue-600 border-b-2 border-blue-600;
} */

/* Fade Effects */
.fade-left, .fade-right, .fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}

.fade-left {
  transform: translateX(-60px);
}
.fade-right {
  transform: translateX(60px);
}
.fade-up {
  transform: translateY(30px);
}

.fade-left.visible,
.fade-right.visible,
.fade-up.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* Faster fade-in untuk gambar besar */
.fast {
  transition-duration: 0.6s;
}

/* Fade Up Basic */
.fade-up-service {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}
.fade-up-service.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Delay Animasi Berdasarkan Urutan */
.delay-0 {
  transition-delay: 0s;
}
.delay-1 {
  transition-delay: 0.2s;
}
.delay-2 {
  transition-delay: 0.4s;
}
.delay-3 {
  transition-delay: 0.6s;
}
.delay-4 {
  transition-delay: 0.8s;
}
.delay-5 {
  transition-delay: 1s;
}

/* FAQ Answer: Super Smooth Transition */
.faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 2s ease-in-out, opacity 0.2s ease-in-out;
}

.faq-answer.open {
  max-height: 800px; /* naikin supaya aman buat konten panjang */
  opacity: 1;
}

.faq-answer.closing {
  transition: max-height 0.6s ease-in-out, opacity 0.2s ease-in-out;
}

/* Icon Rotation */
.toggle-faq .icon {
  transition: transform 0.5s ease-in-out;
}
.toggle-faq.open .icon {
  transform: rotate(180deg);
}

.price-card {
  border: 2px solid transparent;
}

.price-card.active {
  border-color: #0055BA; /* Tailwind blue-600 */
}

.footer {
  background-color: #172554;
}

.zoom-hover {
  transition: transform 0.5s ease, filter 0.5s ease;
}

.zoom-hover:hover {
  transform: scale(1.1);
  filter: brightness(1.3);
}

.floating-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 50;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.floating-btn img {
  width: 48px;
  height: 48px;
}
