/* sticky-cta.css */
.sticky-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  padding: 12px 20px;
  background: var(--secondary-color);
  color: var(--btn-color);
  border: none;
  border-radius: 30px;
  font-size: 16px;
  cursor: pointer;
  box-shadow: var(--shadow-hover);
  transition: transform 0.2s ease;
  z-index: 10000; /* Ensure it's above all other elements including modals */
  font-family: var(--font-primary);
  font-weight: 600;
}
.sticky-cta:hover {
  transform: translateY(-3px);
}
