/* === SAKAY.TO LANDING PAGE STYLES === */
/* Custom animations and utilities for Tailwind CSS landing page */

/* Font imports */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap');

/* Typography */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 500;
}

.heading-font {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Custom Animations */
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(-2deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
}

@keyframes float-slow {
  0%, 100% { transform: translateY(0px) rotate(-6deg); }
  50% { transform: translateY(-8px) rotate(-4deg); }
}

@keyframes float-reverse {
  0%, 100% { transform: translateY(0px) rotate(6deg); }
  50% { transform: translateY(-8px) rotate(4deg); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes countUp {
  from { opacity: 0; transform: scale(0.5); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes bounce-slow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* Animation Classes */
.phone-mockup {
  animation: float 6s ease-in-out infinite;
}

.fade-in {
  animation: fadeIn 0.8s ease-in;
}

.stat-number {
  animation: countUp 2s ease-out;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.animate-float-slow {
  animation: float-slow 4s ease-in-out infinite;
}

.animate-float-reverse {
  animation: float-reverse 4s ease-in-out infinite;
}

.animate-spin-slow {
  animation: spin-slow 8s linear infinite;
}

.animate-bounce-slow {
  animation: bounce-slow 2s ease-in-out infinite;
}

/* Component Styles */
.service-card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
  transform: translateY(-8px);
}

.nav-floating {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.gradient-text {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hover-lift {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift:hover {
  transform: translateY(-2px);
}

/* Custom Gradients */
.bg-gradient-radial {
  background: radial-gradient(ellipse at center, var(--tw-gradient-stops));
}

/* Custom scrollbar for webkit browsers */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #18181b;
}

::-webkit-scrollbar-thumb {
  background: #3f3f46;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #facc15;
}

/* Base styles that work with Tailwind */
html {
  scroll-behavior: smooth;
}

/* Lucide icons initialization */
.lucide {
  display: inline-block;
  vertical-align: middle;
}

/* === REGISTRATION SUCCESS PAGE STYLES === */
.success-icon i {
  animation: scaleIn 0.5s ease-in-out;
}

@keyframes scaleIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.timeline {
  position: relative;
  padding-left: 3rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 1.25rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #FFD23F, #FBBF24);
}

.timeline-item {
  position: relative;
  margin-bottom: 2rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-icon {
  position: absolute;
  left: -3rem;
  top: 0;
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, #FFD23F, #FBBF24);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #18181B;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.timeline-content h5 {
  color: #18181B;
  margin-bottom: 0.5rem;
}

.card {
  border-radius: 16px;
}

.btn-primary {
  background-color: #FFD23F;
  border-color: #FFD23F;
  color: #18181B;
  border-radius: 12px;
  transition: all 0.3s ease;
  font-weight: 600;
}

.btn-primary:hover {
  background-color: #FBBF24;
  border-color: #FBBF24;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 210, 63, 0.4);
}

.contact-info {
  border-left: 4px solid #FFD23F;
}

.alert-info {
  border-left: 4px solid #0dcaf0;
  background-color: #cff4fc;
  border-radius: 8px;
}