/* Tüm container - dikey ortalama için */
.sticky-wrapper {
  position: fixed;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  z-index: 1; 
  pointer-events: none; /* Tüm wrapper artık tıklamaları "pas" geçiyor */
}
.contact-toggle,
.contact-menu {
    pointer-events: auto;
}
  /* Toggle Butonu - dairesel, gradient arka plan vb. */
  .contact-toggle {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-left: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .contact-toggle:hover {
    transform: scale(1.07);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  }
  
  /* Menü kapalı halde sağda kaymış durumda */
  .contact-menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px 15px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateX(110%); /* Dikkat: 100% menünün genişliğine eşdeğer */
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s ease, opacity 0.4s ease, box-shadow 0.4s ease;
  }
  
  /* Menü açılınca görünür hale geliyor */
  .contact-menu.show {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  }
  
  /* Menüdeki her bir item buton */
  .contact-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #25d366, #1da851);
    color: #fff;
    padding: 10px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    white-space: nowrap;
  }
  
  /* Icon boyutu */
  .contact-item .icon {
    font-size: 1.2em;
  }
  
  /* Hover efekti */
  .contact-item:hover {
    background: linear-gradient(135deg, #1da851, #cecece);
    transform: translateX(5px);
  }
  