/* Floating WhatsApp Button Style */
.floating-wa-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  align-items: center;
  background-color: #25d366;
  color: white;
  border-radius: 50px;
  padding: 10px 20px 10px 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  text-decoration: none;
  transition: all 0.3s ease;
  overflow: hidden;
}

.floating-wa-button:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
  color: white;
  text-decoration: none;
}

.floating-wa-icon {
  width: 40px;
  height: 40px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
}

.floating-wa-icon i {
  color: #25d366;
  font-size: 24px;
}

.floating-wa-text {
  font-weight: 600;
  font-size: 16px;
}

/* Animation */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.floating-wa-button {
  animation: pulse 2s infinite;
}

/* Responsive Styles */
@media (max-width: 767px) {
  .floating-wa-button {
    padding: 10px;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    justify-content: center;
  }

  .floating-wa-icon {
    margin-right: 0;
  }

  .floating-wa-text {
    display: none;
  }
}
