/* WhatsApp Floating Action Buttons */
.whatsapp-fab-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9998;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.whatsapp-fab {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  position: relative;
}

.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.whatsapp-fab.whatsapp-message {
  background: #25D366;
  color: #fff;
}

.whatsapp-fab.whatsapp-message:hover {
  background: #20BA5A;
}

.whatsapp-fab.whatsapp-call {
  background: #128C7E;
  color: #fff;
}

.whatsapp-fab.whatsapp-call:hover {
  background: #0E6B5F;
}

.whatsapp-fab i,
.whatsapp-fab svg {
  font-size: 28px;
  width: 28px;
  height: 28px;
}

/* Tooltip */
.whatsapp-fab-tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
}

.whatsapp-fab-tooltip:after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: rgba(0, 0, 0, 0.85);
}

.whatsapp-fab:hover .whatsapp-fab-tooltip {
  opacity: 1;
  visibility: visible;
}

/* Mobil için daha küçük */
@media (max-width: 767px) {
  .whatsapp-fab-container {
    bottom: 15px;
    right: 15px;
    gap: 10px;
  }
  
  .whatsapp-fab {
    width: 50px;
    height: 50px;
  }
  
  .whatsapp-fab i,
  .whatsapp-fab svg {
    font-size: 24px;
    width: 24px;
    height: 24px;
  }
  
  .whatsapp-fab-tooltip {
    right: 60px;
    font-size: 12px;
    padding: 6px 10px;
  }
}
