/* Premium Mobile Enhancements */

/* Sticky Mobile CTA */
@media (max-width: 768px) {
  .mobile-cta-sticky {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 1000;
    background: var(--gradient-gold);
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.4);
    backdrop-filter: blur(20px);
    transform: translateY(100px);
    transition: all var(--transition-elegant);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 1.1rem;
    letter-spacing: 0.5px;
  }

  .mobile-cta-sticky.visible {
    transform: translateY(0);
  }

  .mobile-cta-sticky:active {
    transform: translateY(0) scale(0.98);
  }

  /* Enhanced mobile hero */
  .hero {
    min-height: 100vh;
    padding: calc(80px + var(--spacing-xl)) var(--spacing-md) var(--spacing-xl);
  }

  .hero-content {
    gap: var(--spacing-xl);
  }

  .hero h1 {
    font-size: clamp(2rem, 8vw, 3.5rem);
    line-height: 1.05;
  }

  .hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
  }

  .hero-cta {
    flex-direction: column;
    gap: var(--spacing-md);
  }

  .btn {
    width: 100%;
    justify-content: center;
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
  }
}

/* Scroll-to-top button */
.scroll-to-top {
  position: fixed;
  bottom: 100px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: var(--gradient-gold);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition-elegant);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  box-shadow: var(--shadow-lg);
}

.scroll-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-to-top:hover {
  transform: translateY(-2px) scale(1.1);
  box-shadow: var(--shadow-xl);
}

@media (min-width: 769px) {
  .scroll-to-top {
    bottom: 30px;
    right: 30px;
  }
}