/* Floating CTA Buttons - Smart Overlay */

.floating-cta-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.floating-cta-container.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.floating-cta-container.hidden {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

.floating-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.35);
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}

.floating-cta-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 32px rgba(102, 126, 234, 0.45);
}

.floating-cta-btn:active {
  transform: translateY(-1px) scale(1.02);
}

.floating-cta-btn.secondary {
  background: white;
  color: #667eea;
  border: 2px solid #667eea;
  box-shadow: 0 4px 16px rgba(102, 126, 234, 0.2);
}

.floating-cta-btn.secondary:hover {
  background: #667eea;
  color: white;
}

.floating-cta-btn svg {
  width: 18px;
  height: 18px;
}

/* Responsive */
@media (max-width: 768px) {
  .floating-cta-container {
    bottom: 20px;
    right: 20px;
    left: 20px;
    flex-direction: row;
    justify-content: center;
  }

  .floating-cta-btn {
    flex: 1;
    font-size: 14px;
    padding: 12px 20px;
  }
}
