/* Floating CTA Buttons - Smooth Subtle Animations */

.floating-cta-btn {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* Subtle hover effect - gentle scale and shadow */
.floating-cta-btn:hover {
  transform: translateY(-2px) scale(1.02) !important;
  box-shadow: 0 12px 28px rgba(102, 126, 234, 0.35) !important;
}

/* Secondary button hover - smooth */
.floating-cta-btn.secondary:hover {
  transform: translateY(-2px) scale(1.02) !important;
  background: linear-gradient(135deg, #667eea, #764ba2) !important;
  color: white !important;
  box-shadow: 0 12px 28px rgba(102, 126, 234, 0.35) !important;
}

/* Active/Click state - gentle press */
.floating-cta-btn:active {
  transform: translateY(0) scale(1) !important;
  transition: all 0.15s ease !important;
}

/* Container transitions - smooth fade */
.floating-cta-container {
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.floating-cta-container.visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.floating-cta-container.hidden {
  opacity: 0 !important;
  transform: translateY(15px) !important;
}

/* SVG icons smooth rotation on hover */
.floating-cta-btn:hover svg {
  transform: rotate(5deg) scale(1.05);
  transition: transform 0.3s ease;
}

.floating-cta-btn svg {
  transition: transform 0.3s ease;
}
