.whatsapp-container {
    position: fixed;
    bottom: 90px;
    right: 20px;
    z-index: 1000;
  }
  
  /* WhatsApp butonu (önceki stil) */
  .float-whatsapp {
    background: #304753;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
  }
  
  /* Baloncuk mesajı */
  .whatsapp-bubble {
    position: absolute;
    right: 70px; /* Butonun solunda */
    top: 50%;
    transform: translateY(-50%);
    background: white;
    color: #333;
    padding: 10px 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    opacity: 0; /* Başlangıçta gizli */
    animation: fadeIn 0.5s forwards 1s; /* 1 saniye sonra açılır */
    width: max-content;
    max-width: 200px;
  }
  
  /* Baloncuk okçuğu */
  .bubble-tail {
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid white;
  }
  
  /* Animasyon */

  @keyframes bubbleLife {
    0% { opacity: 0; }
    10% { opacity: 0.5; }
    15% { opacity: 1; }
    60% { opacity: 1; }
    100% { opacity: 0; display: none; }
  }
  
  .whatsapp-bubble {
    animation: bubbleLife 8s forwards; /* 1s bekleme + 5s görünür */
  }


  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(-50%) translateX(10px); }
    to { opacity: 1; transform: translateY(-50%) translateX(0); }
  }
  
  /* Buton hover efekti */
  .float-whatsapp:hover {
    transform: scale(1.1);
  }

  @media (prefers-color-scheme: dark) {
    .whatsapp-bubble {
      background: #333;
      color: white;
    }
    .bubble-tail {
      border-left-color: #333;
    }
  }