.floating-wa {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 90px;
  right: 20px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.floating-wa:hover {
  background-color: #128c7e;
  color: #fff;
  transform: scale(1.1);
}

.carousel-container .btn-whatsapp-hero {
  background-color: #25d366;
  border-color: #25d366;
  color: white;
  padding: 12px 28px;
  font-size: 18px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.carousel-container .btn-whatsapp-hero:hover {
  background-color: #128c7e;
  border-color: #128c7e;
  transform: translateY(-2px);
}