/* ============================================================
   InvestBenue – Animations & Motion Design System
   The Benue Economic Investment Exchange
   Version: 1.0.0
   ============================================================ */

/* ============================================================
   1. KEYFRAME ANIMATIONS
   ============================================================ */

/* --- Fade Animations --- */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeInScaleUp {
  from {
    opacity: 0;
    transform: scale(0.85) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* --- Slide Animations --- */
@keyframes slideInUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

@keyframes slideInDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

@keyframes slideInLeft {
  from { transform: translateX(-100%); }
  to { transform: translateX(0); }
}

@keyframes slideInRight {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

@keyframes slideOutUp {
  from { transform: translateY(0); }
  to { transform: translateY(-100%); }
}

@keyframes slideOutDown {
  from { transform: translateY(0); }
  to { transform: translateY(100%); }
}

/* --- Scale Animations --- */
@keyframes scaleIn {
  from { transform: scale(0); }
  to { transform: scale(1); }
}

@keyframes scaleInBounce {
  0% { transform: scale(0); }
  60% { transform: scale(1.1); }
  80% { transform: scale(0.95); }
  100% { transform: scale(1); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes pulseSlow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* --- Rotation Animations --- */
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes spinReverse {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* --- Float Animations --- */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-16px); }
}

@keyframes floatSm {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

@keyframes floatRotate {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-12px) rotate(3deg);
  }
  66% {
    transform: translateY(-6px) rotate(-2deg);
  }
}

/* --- Shimmer / Glow Animations --- */
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes shimmerLeft {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(200%); }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(0, 107, 63, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(0, 200, 83, 0.5),
                0 0 80px rgba(0, 107, 63, 0.2);
  }
}

@keyframes glowGold {
  0%, 100% {
    box-shadow: 0 0 20px rgba(255, 179, 0, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(255, 179, 0, 0.5),
                0 0 80px rgba(255, 179, 0, 0.2);
  }
}

@keyframes glowText {
  0%, 100% {
    text-shadow: 0 0 20px rgba(0, 200, 83, 0.5);
  }
  50% {
    text-shadow: 0 0 40px rgba(0, 200, 83, 0.8),
                 0 0 60px rgba(0, 200, 83, 0.4);
  }
}

/* --- Typing/Blink Animation --- */
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

@keyframes typewriter {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes cursorBlink {
  0%, 100% { border-right-color: var(--green-light); }
  50% { border-right-color: transparent; }
}

/* --- Counter Animation --- */
@keyframes countUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- Border / Outline Animations --- */
@keyframes borderDraw {
  from { stroke-dashoffset: 1000; }
  to { stroke-dashoffset: 0; }
}

@keyframes borderGlow {
  0%, 100% { border-color: var(--border-green); }
  50% { border-color: var(--green-light); }
}

/* --- Gradient Shift --- */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes gradientFlow {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* --- Particle / Dot Animations --- */
@keyframes particleFloat {
  0% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-60px) translateX(20px) scale(1.2);
    opacity: 0.3;
  }
  100% {
    transform: translateY(-120px) translateX(-10px) scale(0.8);
    opacity: 0;
  }
}

@keyframes dotPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.5;
  }
}

/* --- Shake / Wobble --- */
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  15% { transform: translateX(-8px); }
  30% { transform: translateX(8px); }
  45% { transform: translateX(-6px); }
  60% { transform: translateX(6px); }
  75% { transform: translateX(-3px); }
  90% { transform: translateX(3px); }
}

@keyframes wobble {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-3deg); }
  75% { transform: rotate(3deg); }
}

/* --- Bounce Animations --- */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: translateY(-20px);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* --- Progress Bar --- */
@keyframes progressFill {
  from { width: 0%; }
  to { width: var(--progress-width, 100%); }
}

@keyframes progressStripe {
  from { background-position: 0 0; }
  to { background-position: 40px 0; }
}

/* --- Ripple --- */
@keyframes ripple {
  0% {
    transform: scale(0);
    opacity: 0.6;
  }
  100% {
    transform: scale(4);
    opacity: 0;
  }
}

/* --- Wave --- */
@keyframes wave {
  0% { transform: rotate(0deg); }
  10% { transform: rotate(14deg); }
  20% { transform: rotate(-8deg); }
  30% { transform: rotate(14deg); }
  40% { transform: rotate(-4deg); }
  50% { transform: rotate(10deg); }
  60% { transform: rotate(0deg); }
  100% { transform: rotate(0deg); }
}

/* --- Ping (for live indicators) --- */
@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

/* --- Map Pin Drop --- */
@keyframes pinDrop {
  0% {
    transform: translateY(-40px) scale(0.8);
    opacity: 0;
  }
  60% {
    transform: translateY(4px) scale(1.1);
    opacity: 1;
  }
  80% {
    transform: translateY(-4px) scale(0.95);
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

/* --- Reveal from clip --- */
@keyframes revealUp {
  from {
    clip-path: inset(100% 0 0 0);
    transform: translateY(20px);
  }
  to {
    clip-path: inset(0% 0 0 0);
    transform: translateY(0);
  }
}

@keyframes revealLeft {
  from { clip-path: inset(0 100% 0 0); }
  to { clip-path: inset(0 0% 0 0); }
}

/* --- Number Flip --- */
@keyframes numberFlip {
  0% { transform: rotateX(90deg); opacity: 0; }
  100% { transform: rotateX(0deg); opacity: 1; }
}

/* ============================================================
   2. ANIMATION UTILITY CLASSES
   ============================================================ */

/* Base animation properties */
.animate {
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Fade In Variants */
.animate-fade-in {
  animation: fadeIn 0.6s ease forwards;
}

.animate-fade-in-up {
  animation: fadeInUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-fade-in-down {
  animation: fadeInDown 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-fade-in-left {
  animation: fadeInLeft 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-fade-in-right {
  animation: fadeInRight 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-fade-in-scale {
  animation: fadeInScale 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Slide Variants */
.animate-slide-in-up {
  animation: slideInUp 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-slide-in-left {
  animation: slideInLeft 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-slide-in-right {
  animation: slideInRight 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Bounce Variants */
.animate-bounce-in {
  animation: bounceIn 0.8s cubic-bezier(0.36, 0.07, 0.19, 0.97) forwards;
}

.animate-bounce {
  animation: bounce 1s ease infinite;
}

/* Float */
.animate-float {
  animation: float 4s ease-in-out infinite;
}

.animate-float-sm {
  animation: floatSm 3s ease-in-out infinite;
}

.animate-float-rotate {
  animation: floatRotate 5s ease-in-out infinite;
}

/* Pulse */
.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}

.animate-pulse-slow {
  animation: pulseSlow 3s ease-in-out infinite;
}

/* Glow */
.animate-glow {
  animation: glow 3s ease-in-out infinite;
}

.animate-glow-gold {
  animation: glowGold 3s ease-in-out infinite;
}

/* Spin */
.animate-spin {
  animation: spin 1s linear infinite;
}

.animate-spin-slow {
  animation: rotateSlow 8s linear infinite;
}

/* Shimmer */
.animate-shimmer {
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.08) 50%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: shimmer 2s linear infinite;
}

/* Gradient shift */
.animate-gradient {
  background-size: 200% 200%;
  animation: gradientShift 4s ease infinite;
}

/* Ping (live dot) */
.animate-ping {
  animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

/* Blink */
.animate-blink {
  animation: blink 1.5s ease-in-out infinite;
}

/* Shake */
.animate-shake {
  animation: shake 0.5s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

/* Wave */
.animate-wave {
  animation: wave 2s linear infinite;
  transform-origin: 70% 70%;
  display: inline-block;
}

/* Reveal */
.animate-reveal-up {
  animation: revealUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* ============================================================
   3. ANIMATION DELAYS
   ============================================================ */
.delay-0 { animation-delay: 0ms; }
.delay-100 { animation-delay: 100ms; }
.delay-150 { animation-delay: 150ms; }
.delay-200 { animation-delay: 200ms; }
.delay-300 { animation-delay: 300ms; }
.delay-400 { animation-delay: 400ms; }
.delay-500 { animation-delay: 500ms; }
.delay-600 { animation-delay: 600ms; }
.delay-700 { animation-delay: 700ms; }
.delay-800 { animation-delay: 800ms; }
.delay-900 { animation-delay: 900ms; }
.delay-1000 { animation-delay: 1000ms; }
.delay-1200 { animation-delay: 1200ms; }
.delay-1500 { animation-delay: 1500ms; }
.delay-2000 { animation-delay: 2000ms; }

/* ============================================================
   4. ANIMATION DURATIONS
   ============================================================ */
.duration-150 { animation-duration: 150ms; }
.duration-200 { animation-duration: 200ms; }
.duration-300 { animation-duration: 300ms; }
.duration-400 { animation-duration: 400ms; }
.duration-500 { animation-duration: 500ms; }
.duration-600 { animation-duration: 600ms; }
.duration-700 { animation-duration: 700ms; }
.duration-800 { animation-duration: 800ms; }
.duration-1000 { animation-duration: 1000ms; }
.duration-1500 { animation-duration: 1500ms; }
.duration-2000 { animation-duration: 2000ms; }
.duration-3000 { animation-duration: 3000ms; }

/* ============================================================
   5. SCROLL-TRIGGERED REVEAL SYSTEM
   ============================================================ */

/* Elements start hidden and animate in on scroll */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

.reveal-fast {
  transition-duration: 0.4s;
}

.reveal-slow {
  transition-duration: 1s;
}

/* Stagger delays for child elements */
.stagger-children > *:nth-child(1) { transition-delay: 0ms; }
.stagger-children > *:nth-child(2) { transition-delay: 100ms; }
.stagger-children > *:nth-child(3) { transition-delay: 200ms; }
.stagger-children > *:nth-child(4) { transition-delay: 300ms; }
.stagger-children > *:nth-child(5) { transition-delay: 400ms; }
.stagger-children > *:nth-child(6) { transition-delay: 500ms; }
.stagger-children > *:nth-child(7) { transition-delay: 600ms; }
.stagger-children > *:nth-child(8) { transition-delay: 700ms; }

/* ============================================================
   6. HOVER TRANSITION EFFECTS
   ============================================================ */

/* Lift on hover */
.hover-lift {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hover-lift-sm:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Scale on hover */
.hover-scale {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-scale:hover {
  transform: scale(1.03);
}

.hover-scale-lg:hover {
  transform: scale(1.06);
}

/* Glow on hover */
.hover-glow {
  transition: box-shadow 0.3s ease;
}

.hover-glow:hover {
  box-shadow: 0 0 30px rgba(0, 107, 63, 0.4),
              0 0 60px rgba(0, 107, 63, 0.15);
}

.hover-glow-gold:hover {
  box-shadow: 0 0 30px rgba(255, 179, 0, 0.4),
              0 0 60px rgba(255, 179, 0, 0.15);
}

/* Bright on hover */
.hover-bright {
  transition: filter 0.3s ease;
}

.hover-bright:hover {
  filter: brightness(1.15);
}

/* Slide right arrow */
.hover-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease;
}

.hover-arrow::after {
  content: '→';
  transition: transform 0.3s ease;
}

.hover-arrow:hover::after {
  transform: translateX(4px);
}

/* Image zoom on hover */
.hover-zoom {
  overflow: hidden;
}

.hover-zoom img {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-zoom:hover img {
  transform: scale(1.08);
}

/* Border glow on hover */
.hover-border-glow {
  transition: border-color 0.3s ease,
              box-shadow 0.3s ease;
}

.hover-border-glow:hover {
  border-color: var(--border-green-strong);
  box-shadow: 0 0 0 1px rgba(0, 200, 83, 0.2),
              inset 0 0 20px rgba(0, 107, 63, 0.05);
}

/* ============================================================
   7. LOADING SPINNER VARIANTS
   ============================================================ */
.loader {
  display: inline-block;
  position: relative;
}

.loader-ring {
  width: 40px;
  height: 40px;
  border: 3px solid var(--border-glass);
  border-top-color: var(--green-light);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.loader-ring-sm {
  width: 24px;
  height: 24px;
  border-width: 2px;
}

.loader-ring-lg {
  width: 64px;
  height: 64px;
  border-width: 4px;
}

.loader-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}

.loader-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-light);
  animation: dotPulse 1.4s ease-in-out infinite;
}

.loader-dots span:nth-child(1) { animation-delay: 0ms; }
.loader-dots span:nth-child(2) { animation-delay: 160ms; }
.loader-dots span:nth-child(3) { animation-delay: 320ms; }

.loader-bar {
  width: 200px;
  height: 3px;
  background: var(--border-glass);
  border-radius: var(--radius-full);
  overflow: hidden;
  position: relative;
}

.loader-bar::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 40%;
  background: var(--gradient-brand);
  border-radius: var(--radius-full);
  animation: progressStripe 1.2s ease-in-out infinite alternate;
}

@keyframes progressStripe {
  0% { left: 0; }
  100% { left: 60%; }
}

/* ============================================================
   8. LIVE INDICATOR
   ============================================================ */
.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-light);
}

.live-dot {
  position: relative;
  width: 8px;
  height: 8px;
  flex-shrink: 0;
}

.live-dot::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--green-light);
  animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.live-dot::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: 50%;
  background: var(--green-light);
}

/* ============================================================
   9. PROGRESS BAR COMPONENT
   ============================================================ */
.progress-bar-wrap {
  width: 100%;
  height: 6px;
  background: var(--bg-glass);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: var(--gradient-brand);
  border-radius: var(--radius-full);
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.progress-bar-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  animation: shimmerLeft 2s ease-in-out infinite;
}

.progress-bar-fill.gold {
  background: var(--gradient-gold);
}

/* ============================================================
   10. COUNTER ANIMATION COMPONENT
   ============================================================ */
.counter-wrap {
  overflow: hidden;
}

.counter-number {
  display: inline-block;
  animation: countUp 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* ============================================================
   11. PARTICLE SYSTEM
   ============================================================ */
.particles-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--green-light);
  opacity: 0;
  animation: particleFloat linear infinite;
}

/* ============================================================
   12. TYPEWRITER EFFECT
   ============================================================ */
.typewriter {
  overflow: hidden;
  border-right: 2px solid var(--green-light);
  white-space: nowrap;
  animation:
    typewriter 3s steps(40, end) forwards,
    cursorBlink 0.75s step-end infinite;
}

.typewriter-cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: var(--green-light);
  margin-left: 2px;
  vertical-align: middle;
  animation: blink 0.75s step-end infinite;
}

/* ============================================================
   13. MARQUEE / TICKER ANIMATION
   ============================================================ */
.marquee-wrap {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.marquee-wrap::before,
.marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.marquee-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-dark), transparent);
}

.marquee-wrap::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg-dark), transparent);
}

.marquee-track {
  display: flex;
  gap: var(--space-8);
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ============================================================
   14. RIPPLE EFFECT ON CLICK
   ============================================================ */
.ripple-container {
  position: relative;
  overflow: hidden;
}

.ripple-effect {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  pointer-events: none;
  animation: ripple 0.6s linear;
  transform: scale(0);
}

/* ============================================================
   15. PAGE TRANSITION
   ============================================================ */
.page-transition-enter {
  animation: fadeInUp 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.page-transition-exit {
  animation: fadeOut 0.3s ease forwards;
}

/* ============================================================
   16. NOTIFICATION BADGE BOUNCE
   ============================================================ */
.notification-badge {
  position: relative;
}

.notification-badge::after {
  content: '';
  position: absolute;
  top: -4px;
  right: -4px;
  width: 10px;
  height: 10px;
  background: var(--red-primary);
  border-radius: 50%;
  border: 2px solid var(--bg-dark);
  animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

/* ============================================================
   17. CARD HOVER OVERLAY
   ============================================================ */
.card-hover-overlay {
  position: relative;
  overflow: hidden;
}

.card-hover-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 107, 63, 0.06) 0%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.card-hover-overlay:hover::after {
  opacity: 1;
}

/* ============================================================
   18. REDUCED MOTION OVERRIDES
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .animate-fade-in,
  .animate-fade-in-up,
  .animate-fade-in-down,
  .animate-fade-in-left,
  .animate-fade-in-right,
  .animate-fade-in-scale,
  .animate-slide-in-up,
  .animate-slide-in-left,
  .animate-slide-in-right,
  .animate-bounce-in,
  .animate-float,
  .animate-float-sm,
  .animate-float-rotate,
  .animate-pulse,
  .animate-pulse-slow,
  .animate-glow,
  .animate-glow-gold,
  .animate-shimmer,
  .animate-gradient,
  .animate-ping,
  .animate-blink,
  .animate-wave,
  .animate-reveal-up,
  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale,
  .marquee-track,
  .typewriter,
  .live-dot::before,
  .particle,
  .loader-ring,
  .loader-dots span,
  .loader-bar::after,
  .progress-bar-fill::after {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .hover-lift:hover,
  .hover-scale:hover,
  .hover-lift-sm:hover,
  .hover-scale-lg:hover {
    transform: none;
  }
}