<style>
.floating-call-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  font-size: 18px;
  padding: 14px 16px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 6px 16px rgba(0,0,0,0.3);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
}

.floating-call-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

/* 👉 zobraz iba na mobile */
@media (min-width: 768px) {
  .floating-call-btn {
    display: none;
  }
}
</style>
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

.floating-call-btn {
  animation: pulse 1.5s infinite;
}