/* WhatsApp Booking Button Styles */
.whatsapp-booking-btn-container {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

/* Fixed WhatsApp Button */
.fixed-whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  animation: pulse 1.5s infinite;
}

.fixed-whatsapp-btn i {
  font-size: 30px;
}

.fixed-whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  animation: none;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.whatsapp-booking-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 25px;
  background-color: #25d366;
  color: white;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.4);
}

.whatsapp-booking-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(37, 211, 102, 0.6);
  background-color: #1ea952;
}

.whatsapp-booking-btn i {
  font-size: 20px;
  margin-right: 10px;
}

/* WhatsApp Form Button Styles */
.form-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: space-between;
}

.whatsapp-form-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 15px;
  background-color: #25d366;
  color: white;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(37, 211, 102, 0.3);
}

.whatsapp-form-btn:hover {
  background-color: #1ea952;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(37, 211, 102, 0.5);
}

.whatsapp-form-btn i {
  font-size: 18px;
  margin-right: 8px;
}

.submit-btn {
  flex: 1;
}

/* Media Queries for Responsive Design */
@media (max-width: 768px) {
  .form-buttons {
    flex-direction: column;
  }

  .whatsapp-booking-btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  .whatsapp-booking-btn i,
  .whatsapp-form-btn i {
    font-size: 16px;
  }
}
