.whatsapp-floating {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
  }
  
  .wa-main-btn {
    background-color: #25D366;
    padding: 12px;
    border-radius: 50%;
    cursor: pointer;
    animation: pulse 2s infinite;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  }
  
  .wa-main-btn img {
    width: 32px;
    height: 32px;
  }
  
  .wa-options {
    display: none;
    flex-direction: column;
    position: absolute;
    bottom: 70px;
    left: 0;
    gap: 10px;
  }
  
  .wa-option {
    background-color: #25D366;
    color: white;
    padding: 10px 14px;
    border-radius: 25px;
    text-decoration: none;
    white-space: nowrap;
    font-size: 14px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    animation: slideIn 0.3s ease forwards;
  }
  
  .wa-option:hover {
    background-color: #128C7E;
  }
  
  @keyframes pulse {
    0% {
      box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
      box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
  }
  
  @keyframes slideIn {
    from {
      transform: translateY(20px);
      opacity: 0;
    }
    to {
      transform: translateY(0px);
      opacity: 1;
    }
  }
  