.floating-buttons {
  position: fixed;
  bottom: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.floating-right {
  right: 24px;
}

.floating-left {
  left: 24px;
}

.floating-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  text-decoration: none !important;
}

.floating-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.floating-whatsapp {
  width: 58px;
  height: 58px;
  background: #25D366;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  position: relative;
}

.floating-whatsapp::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.25);
  animation: wa-pulse 2s ease-in-out infinite;
}

@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.3); opacity: 0; }
}

.floating-whatsapp:hover {
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.55);
}

.floating-whatsapp:hover::after {
  animation: none;
  opacity: 0;
}

.floating-location {
  width: 52px;
  height: 52px;
  background: var(--color-primary);
  box-shadow: 0 4px 16px rgba(201, 169, 110, 0.4);
  color: var(--color-white);
}

.floating-location:hover {
  box-shadow: 0 8px 28px rgba(201, 169, 110, 0.55);
  color: var(--color-white);
}

/* Tooltip */
.floating-btn .tooltip {
  position: absolute;
  right: calc(100% + 12px);
  background: var(--color-dark);
  color: var(--color-white);
  font-size: 0.75rem;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  font-weight: 500;
}

.floating-btn .tooltip::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--color-dark);
}

.floating-left .floating-btn .tooltip {
  right: auto;
  left: calc(100% + 12px);
}

.floating-left .floating-btn .tooltip::after {
  right: auto;
  left: -5px;
  border-left-color: transparent;
  border-right-color: var(--color-dark);
}

.floating-btn:hover .tooltip {
  opacity: 1;
}

@media (max-width: 480px) {
  .floating-whatsapp {
    width: 50px;
    height: 50px;
  }
  .floating-whatsapp svg {
    width: 24px;
    height: 24px;
  }
  .floating-location {
    width: 44px;
    height: 44px;
  }
  .floating-location svg {
    width: 20px;
    height: 20px;
  }
  .floating-btn .tooltip { display: none; }
}

/* floating-location:hover altına ekleyin (yaklaşık 78. satıra) */
.floating-phone {
  width: 52px;
  height: 52px;
  background: #1D1D23;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  color: var(--color-white);
}

.floating-phone:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
  color: var(--color-white);
}

/* @media (max-width: 480px) içindeki floating-location kurallarıyla birleştirin (yaklaşık 142. satıra) */
  .floating-location,
  .floating-phone {
    width: 44px;
    height: 44px;
  }
  .floating-location svg,
  .floating-phone svg {
    width: 20px;
    height: 20px;
  }
