/* WhatsApp Booking Button Styles */

.whatsapp-booking-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25D366;
  color: white;
  border: none;
  border-radius: 50px;
  padding: 15px 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.whatsapp-booking-btn:hover {
  background: #128C7E;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
  color: white;
  text-decoration: none;
}

.whatsapp-booking-btn i {
  font-size: 20px;
}

@media (max-width: 768px) {
  .whatsapp-booking-btn {
    bottom: 20px;
    right: 20px;
    padding: 12px 20px;
    font-size: 14px;
  }
  
  .whatsapp-booking-btn i {
    font-size: 18px;
  }
}
