.hero {
  background: url('images/bali_white_sand_beach.webp') no-repeat center center;
  background-size: cover;
  height: 60vh;
  min-height: 300px;
  display: flex;
  align-items: center;
  color: white;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

.carousel-item {
  height: 300px;
  /* Sesuaikan dengan kebutuhan */
}

/* Potong gambar yang lebih besar */
/* .carousel-item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
} */

.testimonial-img {
  width: 80px;
  height: 80px;
  object-fit: cover; /* Pastikan gambar tetap proporsional */
}

.left-page-images {
  height: 600px;
  width: 100%;
  object-fit: cover;
}

.right-page-images {
  height: 298px;
  width: 100%;
  object-fit: cover;
}

.img-fixed {
  height: 400px;
  /* Sesuaikan tinggi gambar */
  object-fit: cover;
  /* Memotong gambar agar pas */
  width: 100%;
  /* Pastikan gambar mengisi lebar penuh */
}

.card:hover {
  transform: scale(1.05);
  transition: 0.3s ease-in-out;
}

.gallery-size {
  width: 100%;
  /* Memastikan gambar memenuhi lebar container */
  height: 250px;
  /* Tetapkan tinggi tetap agar semua gambar seragam */
  object-fit: cover;
  /* Memotong gambar agar tetap proporsional */
}

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  display: none;
  /* Disembunyikan awalnya */
  z-index: 1000;
}

.card-img-top {
  height: 200px;
  object-fit: cover;
}

.whatsapp-float {
  position: fixed;
  bottom: 130px;
  right: 20px;
  background-color: #25D366;
  color: white;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease-in-out;
  text-decoration: none;
  border: none;
}
/* Responsive untuk mobile (max 768px) */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 130px;
    width: 50px;
    height: 50px;
    font-size: 26px;
  }
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

#map {
  width: 100%;
  height: 100%;
}

.is-invalid {
  border: 2px solid #dc3545 !important;
  background-color: #ffe6e6 !important;
}
