/*==============================
  SOLARICHI - Floating CTA Styles
  Extracted from lead.css to keep global pages lighter.
==============================*/

/* ── Floating CTA Buttons ── */
.floating-cta {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: all var(--transition);
  animation: floatPulse 2s ease-in-out infinite;
}

.floating-btn:hover {
  transform: scale(1.1);
  color: var(--color-white);
}

.floating-whatsapp {
  background: #25D366;
}

.floating-phone {
  background: var(--color-primary);
  animation-delay: 0.5s;
}

@keyframes floatPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@media (prefers-reduced-motion: reduce) {
  .floating-btn {
    animation: none;
    transition: none;
  }
}
