/* ============================================================
   ROYER GOLD — Animations & Motion Design
   Premium Animation Library
   ============================================================ */

/* ===========================================
   1. KEYFRAME DEFINITIONS
   =========================================== */

/* ── Fade Animations ── */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* ── Scale Animations ── */
@keyframes scaleIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* ── Slide Animations ── */
@keyframes slideInRight {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}

/* ── Shimmer / Gold Shine ── */
@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

/* ── Ambient / Infinite Animations ── */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* ── Counter Animation ── */
@keyframes counterUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Gold Glow ── */
@keyframes goldGlow {
  0%, 100% {
    box-shadow: 0 0 5px rgba(204, 158, 81, 0.2),
                0 0 15px rgba(204, 158, 81, 0.1);
  }
  50% {
    box-shadow: 0 0 15px rgba(204, 158, 81, 0.4),
                0 0 40px rgba(204, 158, 81, 0.2);
  }
}

/* ── Border Draw ── */
@keyframes borderDraw {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  50% {
    clip-path: inset(0 0 0 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}

/* ── Text Reveal ── */
@keyframes textReveal {
  0% {
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    clip-path: inset(0 0% 0 0);
    opacity: 1;
  }
}

/* ── Parallax Float ── */
@keyframes parallaxFloat {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(5px, -8px) rotate(1deg);
  }
  50% {
    transform: translate(-3px, -12px) rotate(-0.5deg);
  }
  75% {
    transform: translate(-6px, -5px) rotate(0.5deg);
  }
}

/* ── Width Grow (for decorative lines) ── */
@keyframes widthGrow {
  0% {
    width: 0;
  }
  100% {
    width: 60px;
  }
}

/* ── Rotate In ── */
@keyframes rotateIn {
  0% {
    opacity: 0;
    transform: rotate(-10deg) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: rotate(0) scale(1);
  }
}

/* ── Subtle Breathing ── */
@keyframes breathe {
  0%, 100% {
    opacity: 0.4;
  }
  50% {
    opacity: 0.8;
  }
}

/* ── Dot Pulse (for loading) ── */
@keyframes dotPulse {
  0%, 100% {
    opacity: 0.3;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}


/* ===========================================
   2. SCROLL-TRIGGERED ANIMATIONS
   =========================================== */

/* ── Base: animate-on-scroll ── */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity, transform;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Directional Reveal Variants ── */
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity, transform;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity, transform;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity, transform;
}

.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-down {
  opacity: 0;
  transform: translateY(-40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity, transform;
}

.reveal-down.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity, transform;
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}


/* ===========================================
   3. STAGGER DELAYS
   =========================================== */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }
.stagger-7 { transition-delay: 0.7s; }
.stagger-8 { transition-delay: 0.8s; }


/* ===========================================
   4. PREMIUM EFFECT CLASSES
   =========================================== */

/* ── Shimmer Text (Gold Gradient Text) ── */
.shimmer-text {
  background: linear-gradient(
    90deg,
    #cc9e51 0%,
    #f0d48a 25%,
    #d4af61 50%,
    #f0d48a 75%,
    #cc9e51 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s linear infinite;
}

/* ── Float ── */
.float {
  animation: float 3s ease-in-out infinite;
}

/* ── Pulse Glow ── */
.pulse-glow {
  animation: goldGlow 2s ease-in-out infinite;
}

/* ── Parallax Float ── */
.parallax-float {
  animation: parallaxFloat 6s ease-in-out infinite;
}

/* ── Breathe ── */
.breathe {
  animation: breathe 4s ease-in-out infinite;
}


/* ===========================================
   5. HERO-SPECIFIC ANIMATIONS
   =========================================== */

/* ── Hero Title Reveal ── */
.hero-title-animate {
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  animation: textReveal 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards;
}

/* ── Hero Subtitle Fade In ── */
.hero-subtitle-animate {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.8s forwards;
}

/* ── Hero Buttons ── */
.hero-buttons-animate {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.1s forwards;
}

/* ── Scroll Indicator ── */
.scroll-indicator {
  opacity: 0;
  animation: fadeIn 1s ease 1.8s forwards;
}

.scroll-indicator__arrow::after {
  animation: bounce 2s ease-in-out infinite;
}

/* ── Hero Gold Line ── */
.hero-line-animate {
  width: 0;
  animation: widthGrow 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s forwards;
}


/* ===========================================
   6. HOVER MICRO-ANIMATIONS
   =========================================== */

/* ── Lift ── */
.hover-lift {
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

/* ── Gold Glow ── */
.hover-glow {
  transition: box-shadow 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hover-glow:hover {
  box-shadow: 0 0 20px rgba(204, 158, 81, 0.35),
              0 0 50px rgba(204, 158, 81, 0.15);
}

/* ── Scale ── */
.hover-scale {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hover-scale:hover {
  transform: scale(1.05);
}

/* ── Rotate ── */
.hover-rotate {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hover-rotate:hover {
  transform: rotate(5deg);
}

/* ── Shine Sweep (for buttons / cards) ── */
.hover-shine {
  position: relative;
  overflow: hidden;
}

.hover-shine::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -100%;
  width: 50%;
  height: 200%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.15),
    transparent
  );
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}

.hover-shine:hover::after {
  left: 150%;
}

/* ── Border Highlight ── */
.hover-border {
  position: relative;
}

.hover-border::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #cc9e51, #d4af61);
  transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hover-border:hover::before {
  width: 100%;
}

/* ── Icon Bounce on Hover ── */
.hover-icon-bounce:hover {
  animation: bounce 0.5s ease;
}


/* ===========================================
   7. LOADING ANIMATIONS
   =========================================== */

/* ── Page Loader ── */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #14382e;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: clip-path 1s cubic-bezier(0.76, 0, 0.24, 1),
              opacity 0.6s ease 0.6s,
              visibility 0s linear 1.2s;
  clip-path: circle(150% at 50% 50%);
}

/* Subtle radial glow behind logo */
.page-loader::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 500px;
  height: 500px;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle,
    rgba(204, 158, 81, 0.08) 0%,
    rgba(204, 158, 81, 0.03) 40%,
    transparent 70%
  );
  pointer-events: none;
}

.page-loader.loaded {
  clip-path: circle(0% at 50% 50%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader.loaded .loader-content {
  transform: scale(0.6);
  opacity: 0;
  filter: blur(10px);
}

/* ── Loader Content (Logo) ── */
.loader-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.8s cubic-bezier(0.76, 0, 0.24, 1) 0.3s,
              opacity 0.5s ease 0.4s,
              filter 0.8s ease 0.3s;
}

.loader-logo {
  max-height: 180px;
  width: auto;
  filter: drop-shadow(0 4px 30px rgba(204, 158, 81, 0.2));
}

/* ── Gold Dust Particles Container ── */
.loader-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

/* ── Individual Particle ── */
.particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform, opacity;
}

/* Particle drift keyframes */
@keyframes dustFloat1 {
  0%   { transform: translate(0, 0) scale(1);   opacity: 0; }
  10%  { opacity: 0.8; }
  50%  { opacity: 0.4; }
  90%  { opacity: 0; }
  100% { transform: translate(80px, -120px) scale(0.3); opacity: 0; }
}
@keyframes dustFloat2 {
  0%   { transform: translate(0, 0) scale(1);   opacity: 0; }
  15%  { opacity: 0.7; }
  60%  { opacity: 0.3; }
  100% { transform: translate(-60px, -150px) scale(0.2); opacity: 0; }
}
@keyframes dustFloat3 {
  0%   { transform: translate(0, 0) scale(0.5); opacity: 0; }
  20%  { opacity: 0.9; }
  70%  { opacity: 0.2; }
  100% { transform: translate(40px, -100px) scale(0.1); opacity: 0; }
}
@keyframes dustFloat4 {
  0%   { transform: translate(0, 0) scale(1);   opacity: 0; }
  10%  { opacity: 0.6; }
  80%  { opacity: 0.15; }
  100% { transform: translate(-90px, -80px) scale(0.4); opacity: 0; }
}
@keyframes dustDrift {
  0%   { transform: translateY(0) translateX(0) rotate(0deg); opacity: 0; }
  10%  { opacity: 0.7; }
  50%  { opacity: 0.5; transform: translateY(-60px) translateX(30px) rotate(180deg); }
  100% { transform: translateY(-130px) translateX(-20px) rotate(360deg); opacity: 0; }
}

/* ── Particle Styles & Positions ── */
/* Small bright particles */
.p1  { width: 3px;  height: 3px;  background: radial-gradient(circle, #f0d48a, #cc9e51); left: 10%;  bottom: 20%; animation: dustFloat1 4.5s ease-in-out infinite; }
.p2  { width: 4px;  height: 4px;  background: radial-gradient(circle, #ffe6a0, #d4af61); left: 25%;  bottom: 35%; animation: dustFloat2 5.2s ease-in-out 0.3s infinite; }
.p3  { width: 2px;  height: 2px;  background: radial-gradient(circle, #fff5d4, #cc9e51); left: 40%;  bottom: 15%; animation: dustFloat3 3.8s ease-in-out 0.8s infinite; }
.p4  { width: 5px;  height: 5px;  background: radial-gradient(circle, #f0d48a, #b8893f); left: 55%;  bottom: 45%; animation: dustFloat4 6.0s ease-in-out 0.5s infinite; }
.p5  { width: 3px;  height: 3px;  background: radial-gradient(circle, #ffe6a0, #cc9e51); left: 70%;  bottom: 25%; animation: dustFloat1 4.0s ease-in-out 1.2s infinite; }
.p6  { width: 2px;  height: 2px;  background: radial-gradient(circle, #fff5d4, #d4af61); left: 85%;  bottom: 40%; animation: dustFloat2 5.5s ease-in-out 0.7s infinite; }
.p7  { width: 4px;  height: 4px;  background: radial-gradient(circle, #f0d48a, #cc9e51); left: 15%;  bottom: 55%; animation: dustFloat3 4.2s ease-in-out 1.5s infinite; }
.p8  { width: 3px;  height: 3px;  background: radial-gradient(circle, #ffe6a0, #b8893f); left: 35%;  bottom: 60%; animation: dustFloat4 5.8s ease-in-out 0.2s infinite; }
.p9  { width: 6px;  height: 6px;  background: radial-gradient(circle, rgba(240,212,138,0.8), rgba(204,158,81,0.4)); left: 50%;  bottom: 10%; animation: dustFloat1 6.5s ease-in-out 1.0s infinite; box-shadow: 0 0 8px rgba(204,158,81,0.3); }
.p10 { width: 2px;  height: 2px;  background: radial-gradient(circle, #fff5d4, #cc9e51); left: 65%;  bottom: 50%; animation: dustFloat2 4.8s ease-in-out 0.4s infinite; }

/* Medium glowing particles */
.p11 { width: 7px;  height: 7px;  background: radial-gradient(circle, rgba(255,230,160,0.6), rgba(204,158,81,0.2)); left: 20%;  bottom: 70%; animation: dustDrift 7.0s ease-in-out 0.6s infinite; box-shadow: 0 0 12px rgba(204,158,81,0.25); }
.p12 { width: 3px;  height: 3px;  background: radial-gradient(circle, #f0d48a, #cc9e51); left: 80%;  bottom: 65%; animation: dustFloat3 4.5s ease-in-out 1.8s infinite; }
.p13 { width: 5px;  height: 5px;  background: radial-gradient(circle, rgba(255,245,212,0.7), rgba(212,175,97,0.3)); left: 45%;  bottom: 75%; animation: dustDrift 6.2s ease-in-out 0.9s infinite; box-shadow: 0 0 10px rgba(204,158,81,0.2); }
.p14 { width: 2px;  height: 2px;  background: radial-gradient(circle, #ffe6a0, #cc9e51); left: 90%;  bottom: 30%; animation: dustFloat1 3.5s ease-in-out 1.3s infinite; }
.p15 { width: 4px;  height: 4px;  background: radial-gradient(circle, #f0d48a, #b8893f); left: 5%;   bottom: 80%; animation: dustFloat4 5.0s ease-in-out 0.1s infinite; }

/* Large soft glow particles */
.p16 { width: 8px;  height: 8px;  background: radial-gradient(circle, rgba(240,212,138,0.5), rgba(204,158,81,0.1), transparent); left: 30%;  bottom: 5%;  animation: dustDrift 8.0s ease-in-out 1.4s infinite; box-shadow: 0 0 15px rgba(204,158,81,0.15); }
.p17 { width: 3px;  height: 3px;  background: radial-gradient(circle, #fff5d4, #d4af61); left: 60%;  bottom: 85%; animation: dustFloat2 4.3s ease-in-out 2.0s infinite; }
.p18 { width: 10px; height: 10px; background: radial-gradient(circle, rgba(255,230,160,0.35), rgba(204,158,81,0.08), transparent); left: 75%;  bottom: 15%; animation: dustDrift 9.0s ease-in-out 0.3s infinite; box-shadow: 0 0 20px rgba(204,158,81,0.12); }
.p19 { width: 2px;  height: 2px;  background: radial-gradient(circle, #ffe6a0, #cc9e51); left: 8%;   bottom: 45%; animation: dustFloat3 3.2s ease-in-out 1.7s infinite; }
.p20 { width: 4px;  height: 4px;  background: radial-gradient(circle, rgba(240,212,138,0.6), rgba(184,137,63,0.2)); left: 48%;  bottom: 55%; animation: dustFloat1 5.5s ease-in-out 0.8s infinite; box-shadow: 0 0 8px rgba(204,158,81,0.2); }

/* ── Logo Loader (legacy, kept for compat) ── */
.logo-loader {
  max-height: 180px;
  width: auto;
  animation: pulse 1.5s ease-in-out infinite;
}

/* ── Loading Dots ── */
.loader-dots {
  display: flex;
  gap: 8px;
}

.loader-dots__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cc9e51;
  animation: dotPulse 1.4s ease-in-out infinite;
}

.loader-dots__dot:nth-child(2) {
  animation-delay: 0.2s;
}

.loader-dots__dot:nth-child(3) {
  animation-delay: 0.4s;
}

/* ── Loading Bar ── */
.loader-bar {
  width: 120px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.loader-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, #cc9e51, #d4af61);
  border-radius: 3px;
  animation: loadingBar 1.5s ease-in-out infinite;
}

@keyframes loadingBar {
  0% {
    width: 0;
    margin-left: 0;
  }
  50% {
    width: 70%;
    margin-left: 15%;
  }
  100% {
    width: 0;
    margin-left: 100%;
  }
}


/* ===========================================
   8. COUNTER ANIMATION
   =========================================== */
.counter-animate {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.counter-animate.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ===========================================
   9. DECORATIVE ANIMATION ELEMENTS
   =========================================== */

/* ── Floating Gold Particles (use as pseudo-elements) ── */
.gold-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #cc9e51;
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 4s ease-in-out infinite;
}

@keyframes particleFloat {
  0%, 100% {
    opacity: 0;
    transform: translateY(0) scale(0);
  }
  20% {
    opacity: 0.6;
    transform: translateY(-20px) scale(1);
  }
  80% {
    opacity: 0.3;
    transform: translateY(-60px) scale(0.6);
  }
}

/* ── Rotating Ring ── */
.rotating-ring {
  border: 2px solid rgba(204, 158, 81, 0.2);
  border-top-color: #cc9e51;
  border-radius: 50%;
  animation: spin 2s linear infinite;
}

/* ── Pulsing Circle Background ── */
.pulse-circle {
  position: relative;
}

.pulse-circle::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid rgba(204, 158, 81, 0.3);
  transform: translate(-50%, -50%);
  animation: pulseCircle 2s ease-out infinite;
}

@keyframes pulseCircle {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}


/* ===========================================
   10. TRANSITION UTILITIES
   =========================================== */
.transition-fast {
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.transition-base {
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.transition-slow {
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.transition-bounce {
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}


/* ===========================================
   11. ANIMATION DELAY UTILITIES
   =========================================== */
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }
.delay-600 { animation-delay: 0.6s; }
.delay-700 { animation-delay: 0.7s; }
.delay-800 { animation-delay: 0.8s; }
.delay-1000 { animation-delay: 1s; }
.delay-1200 { animation-delay: 1.2s; }
.delay-1500 { animation-delay: 1.5s; }


/* ===========================================
   12. PREFERS-REDUCED-MOTION
   =========================================== */
@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll,
  .reveal-left,
  .reveal-right,
  .reveal-up,
  .reveal-down,
  .reveal-scale {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-title-animate,
  .hero-subtitle-animate,
  .hero-buttons-animate {
    opacity: 1;
    transform: none;
    clip-path: none;
    animation: none;
  }

  .shimmer-text {
    animation: none;
  }

  .float,
  .pulse-glow,
  .parallax-float,
  .breathe {
    animation: none;
  }

  .scroll-indicator__arrow::after {
    animation: none;
  }

  .page-loader {
    transition: none;
  }

  .hover-lift:hover,
  .hover-glow:hover,
  .hover-scale:hover,
  .hover-rotate:hover {
    transform: none;
    box-shadow: none;
  }
}
