.whatsapp-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1000;
  animation: jump 1s infinite;
}

.whatsapp-widget .contact-btn {
  background-color: #000;
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.whatsapp-widget .contact-btn:hover {
  transform: translateY(-2px);
}

.whatsapp-widget .whatsapp-icon {
  background-color: #25D366;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.whatsapp-widget .whatsapp-icon:hover {
  transform: scale(1.1);
}

.whatsapp-widget .whatsapp-icon i {
  color: #fff;
  font-size: 28px;
}

@keyframes jump {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 768px) {
  .whatsapp-widget .contact-btn {
    display: none;
  }
}