/* Sticky CTA Button - Mobile Only */
.sticky-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: linear-gradient(180deg, var(--primary-btn-start) 0%, var(--primary-btn-end) 100%);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  padding: 12px 16px;
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
  display: none; /* Hidden by default, shown only on mobile */
}

.sticky-cta-bar.visible {
  transform: translateY(0);
}

.sticky-cta-button {
  width: 100%;
  padding: 14px 24px;
  font-weight: 700;
  font-size: 1.1rem;
  text-align: center;
  border-radius: 8px;
  background: var(--text-dark);
  color: var(--accent-color);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.sticky-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.sticky-cta-button:active {
  transform: translateY(0);
}

.sticky-cta-button i {
  font-size: 1.2rem;
}

/* Show only on mobile devices */
@media (max-width: 768px) {
  .sticky-cta-bar {
    display: block;
  }
}

/* For very small screens */
@media (max-width: 480px) {
  .sticky-cta-button {
    font-size: 1rem;
    padding: 12px 20px;
  }
}

