body { font-family: 'Nunito Sans', sans-serif; position: relative; }
h1, h2, h3, .font-display { font-family: 'Poppins', sans-serif; }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-thumb { background: #FF9285; border-radius: 8px; }
[dir="rtl"] .space-x-reverse { direction: rtl; }

/* ---------- Futuristik / tatil temali animasyonlar ---------- */

@keyframes floatBlob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -30px) scale(1.05); }
  66% { transform: translate(-15px, 15px) scale(0.97); }
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes shine {
  0% { transform: translateX(-120%) skewX(-20deg); }
  100% { transform: translateX(220%) skewX(-20deg); }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 107, 91, 0.35); }
  50% { box-shadow: 0 0 0 10px rgba(255, 107, 91, 0); }
}

@keyframes countUpFade {
  from { opacity: 0; transform: scale(0.85); }
  to { opacity: 1; transform: scale(1); }
}

.bg-blob {
  position: fixed;
  border-radius: 9999px;
  filter: blur(60px);
  opacity: 0.35;
  z-index: -1;
  animation: floatBlob 14s ease-in-out infinite;
  pointer-events: none;
}
.bg-blob-1 { width: 380px; height: 380px; background: #FF6B5B; top: -120px; left: -100px; animation-delay: 0s; }
.bg-blob-2 { width: 320px; height: 320px; background: #00C2CB; top: 30%; right: -120px; animation-delay: -5s; }
.bg-blob-3 { width: 300px; height: 300px; background: #FFC93C; bottom: -100px; left: 20%; animation-delay: -9s; }

.gradient-animated {
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
}

.fade-in-up {
  animation: fadeInUp 0.5s ease both;
}

.shine-btn {
  position: relative;
  overflow: hidden;
}
.shine-btn::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 40%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.55), transparent);
  animation: shine 2.8s ease-in-out infinite;
}

.glass-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.hover-lift {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.hover-lift:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 20px 40px -12px rgba(255, 107, 91, 0.25);
}

.pulse-badge {
  animation: pulseGlow 2s infinite;
}

.stat-number {
  animation: countUpFade 0.6s ease both;
}

.stagger > * { animation: fadeInUp 0.5s ease both; }
.stagger > *:nth-child(1) { animation-delay: 0.03s; }
.stagger > *:nth-child(2) { animation-delay: 0.08s; }
.stagger > *:nth-child(3) { animation-delay: 0.13s; }
.stagger > *:nth-child(4) { animation-delay: 0.18s; }
.stagger > *:nth-child(5) { animation-delay: 0.23s; }
.stagger > *:nth-child(6) { animation-delay: 0.28s; }
