/* Font Setup */
body {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

.navbar, .btn, .card-title, .lead, .nav-link {
  font-family: 'Poppins', sans-serif;
}

small, .text-muted, footer {
  font-family: 'Nunito', sans-serif;
}


/* Offset agar judul section tidak tertutup navbar */
section[id] {
  scroll-margin-top: 50px; /* sesuaikan tinggi navbar kamu */
}


.navbar .btn {
  padding: 6px 16px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.navbar .btn:hover {
  background-color: #ffc107;
  box-shadow: 0 0 8px rgba(255, 193, 7, 0.5);
}





.jumbotron {
  background-image: url('../img/background1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  color: #fff;
}

/* Opsional: lapisan gelap agar teks lebih terbaca */
.jumbotron::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.4); /* lapisan semi-transparan */
  z-index: 1;
}

/* Pastikan isi jumbotron tetap tampil di atas overlay */
.jumbotron .container {
  position: relative;
  z-index: 2;
}

.jumbotron h1 {
  color: #ffc107; /* Kuning branding */
  text-shadow: 1px 1px 2px rgba(0,0,0,0.4); /* Sedikit bayangan agar terbaca di background */
}

.jumbotron p.lead {
  color: #ffffff; /* Putih */
  text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
}

/* Breathing / Floating Animation */
@keyframes floatBreath {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

.float-breath {
  animation: floatBreath 3s ease-in-out infinite;
}




/*unggulan*/
/* Fitur Unggulan - Efek Hover */
.fitur-box {
  background-color: white;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.fitur-box:hover {
  background: linear-gradient(135deg, #fff3cd, #fffbe6); /* gradasi lembut kuning */
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

/* Opsional: ubah warna ikon saat hover */
.fitur-box:hover i {
  color: #ff9800;
}



/* Blink Effect Tombol WA */
.blink-button {
  animation: blinkGlow 1.8s infinite ease-in-out;
  box-shadow: 0 0 0 rgba(255, 193, 7, 0.4);
  transition: transform 0.2s ease;
}

.blink-button:hover {
  transform: scale(1.05);
  background-color: #e0a800;
  box-shadow: 0 0 15px rgba(255, 193, 7, 0.7);
}

@keyframes blinkGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.6);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(255, 193, 7, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 193, 7, 0);
  }
}

/* Rapiin list fitur */
#harga ul li {
  font-size: 16px;
  line-height: 1.6;
}

.harga-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.harga-card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  z-index: 1;
}



















.testimoni-wrapper {
  overflow-x: hidden;
  overflow-y: visible;
  padding-block: 2rem;
  min-height: 100px; /* auto grow sesuai isi, tapi tetap punya dasar ruang */
}


#testimoniTrack {
  display: flex;
  flex-wrap: nowrap; /* sangat penting agar tidak turun ke bawah */
  transition: transform 0.7s ease-in-out;
  will-change: transform;
}

/* Masing-masing card */
.testimoni-card {
  flex: 0 0 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 1.5rem;
  margin: 0 0.5rem;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transform: scale(0.9);
  transition: transform 0.5s ease;
}

/* Zoom-in untuk card tengah */
.testimoni-card.active {
  transform: scale(1.1);
  z-index: 2;
  position: relative;
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}

/* Responsif: 3 kolom di desktop */
@media (min-width: 768px) {
  .testimoni-card {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }
}







/* Modal dasar */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 90px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.8);
  text-align: center;
}

/* Konten gambar */
.modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 80vh;
  border-radius: 10px;
  animation: zoom 0.3s ease;
}

/* Animasi zoom */
@keyframes zoom {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Tombol tutup */
.close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

/* Tombol panah navigasi */
.nav {
  cursor: pointer;
  position: absolute;
  top: 50%;
  font-size: 50px;
  color: white;
  padding: 10px;
  margin-top: -25px;
  user-select: none;
  transition: 0.3s;
}

.nav.left {
  left: 10px;
}

.nav.right {
  right: 10px;
}

.nav:hover,
.close:hover {
  color: #ffc107;
}








/* Tombol WhatsApp */
.wa-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 52px;
  height: 52px;
  background-color: #25d366;
  color: white;
  font-size: 24px;
  border-radius: 50%;
  z-index: 1000;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.wa-float:hover {
  background-color: #1ebc59;
}

/* Tombol Scroll to Top */
#scrollTopBtn {
  position: fixed;
  bottom: 80px; /* Lebih tinggi dari tombol WA */
  right: 24px;
  width: 48px;
  height: 48px;
  background-color: #ffc107;
  color: white;
  font-size: 20px;
  border: none;
  border-radius: 50%;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#scrollTopBtn:hover {
  background-color: #e0a800;
}
