#btnInstall {
  display: none;
}

/* ===================================================================
   Navigation Wrapper - Tombol Navigasi Swiper
   =================================================================== */
.btn-out-primary {
  color: #defb2a;
  border: 2px solid #ffffff;
  border-radius: 50px;
  /* Membuat rounded-pill */
  padding: 6px 40px;
  font-weight: bold;
  transition: all 0.4s ease-in-out;
}

.btn-out-primary:hover {
  background-color: #1000bb;
  color: #ffffff;
}

.services .swiper-navigation-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.services .swiper-button-prev,
.services .swiper-button-next {
  width: 30px;
  height: 30px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

/* ===================================================================
     Pagination - Indikator Halaman
     =================================================================== */
.services .swiper-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  z-index: 10;
}

/* ===================================================================
     Slider Container dan Slide - Pengaturan Slider
     =================================================================== */
.services .swiper-container {
  width: 100%;
  height: 100%;
}

.services .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

/* ===================================================================
     Service Item - Item Layanan dalam Slider
     =================================================================== */
.services .service-item {
  width: 100%;
  text-align: center;
}

.services .icon {
  font-size: 40px;
  margin-bottom: 10px;
}

.services .title {
  font-size: 20px;
  margin-bottom: 10px;
}

.services .description {
  font-size: 16px;
  margin-bottom: 15px;
}

/* ===================================================================
     Responsive Design - Penyesuaian untuk Ukuran Layar Kecil
     =================================================================== */
@media (max-width: 768px) {
  .services .swiper-container {
    height: auto;
  }

  .services .swiper-slide {
    padding: 10px;
  }

  .services .swiper-button-prev,
  .services .swiper-button-next {
    width: 25px;
    height: 25px;
  }

  .services .icon {
    font-size: 30px;
  }

  .services .title {
    font-size: 18px;
  }

  .services .description {
    font-size: 14px;
  }
}

/* ===================================================================
     Testimonial - Rating System (Bintang)
   =================================================================== */
.rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.star {
  font-size: 36px;
  color: #ddd;
  cursor: pointer;
  transition: color 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.star.selected,
.star:hover,
.star:hover~.star {
  color: #ffc107;
  transform: scale(1.1);
}

.star:hover {
  color: #ffd55e;
}

.star:hover~.star {
  color: #ddd;
}

.star.selected {
  color: #ffc107;
  transform: scale(1.1);
}

.star:active {
  transform: scale(0.95);
}

/* ===================================================================
     Kunjungan - Statistik Kunjungan
     =================================================================== */
.kunjungan .visit-stat {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.kunjungan .visit-stat:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.kunjungan .visit-stat i {
  font-size: 30px;
  color: #754cee;
  margin-bottom: 15px;
}

.kunjungan .visit-stat h3 {
  font-size: 22px;
  color: #333;
  margin-bottom: 10px;
}

.kunjungan .visit-stat p {
  font-size: 18px;
  color: #555;
  margin-top: 0;
}

@media (max-width: 768px) {
  .kunjungan .visit-stat {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .kunjungan .visit-stat i {
    font-size: 25px;
  }

  .kunjungan .visit-stat h3 {
    font-size: 20px;
  }

  .kunjungan .visit-stat p {
    font-size: 16px;
  }
}