/* assets/css/animations.css */

/* ==========================================
   WISMERCH ADVANCED ANIMATIONS LIBRARY
   8K Quality Visual Effects & Transitions
========================================== */

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

/* Fade Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scale Animations */
@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes scaleOut {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(0.8);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.3);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes zoomOut {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(0.3);
    }
}

/* Rotation Animations */
@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-180deg);
    }
    to {
        opacity: 1;
        transform: rotate(0deg);
    }
}

@keyframes rotateOut {
    from {
        opacity: 1;
        transform: rotate(0deg);
    }
    to {
        opacity: 0;
        transform: rotate(180deg);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes spinReverse {
    from {
        transform: rotate(360deg);
    }
    to {
        transform: rotate(0deg);
    }
}

/* Slide Animations */
@keyframes slideInTop {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInBottom {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Bounce Animations */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-30px);
    }
    60% {
        transform: translateY(-15px);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes bounceInLeft {
    0% {
        opacity: 0;
        transform: translateX(-2000px);
    }
    60% {
        opacity: 1;
        transform: translateX(30px);
    }
    80% {
        transform: translateX(-10px);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes bounceInRight {
    0% {
        opacity: 0;
        transform: translateX(2000px);
    }
    60% {
        opacity: 1;
        transform: translateX(-30px);
    }
    80% {
        transform: translateX(10px);
    }
    100% {
        transform: translateX(0);
    }
}

/* Pulse Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes pulseShadow {
    0% {
        box-shadow: 0 0 0 0 rgba(69, 59, 173, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(69, 59, 173, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(69, 59, 173, 0);
    }
}

@keyframes heartBeat {
    0% {
        transform: scale(1);
    }
    14% {
        transform: scale(1.3);
    }
    28% {
        transform: scale(1);
    }
    42% {
        transform: scale(1.3);
    }
    70% {
        transform: scale(1);
    }
}

/* Shake Animations */
@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-10px);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(10px);
    }
}

@keyframes wobble {
    0% {
        transform: translateX(0%);
    }
    15% {
        transform: translateX(-25%) rotate(-5deg);
    }
    30% {
        transform: translateX(20%) rotate(3deg);
    }
    45% {
        transform: translateX(-15%) rotate(-3deg);
    }
    60% {
        transform: translateX(10%) rotate(2deg);
    }
    75% {
        transform: translateX(-5%) rotate(-1deg);
    }
    100% {
        transform: translateX(0%);
    }
}

/* Float Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes floatBubble {
    0% {
        transform: translateY(100vh) scale(0);
    }
    10% {
        transform: translateY(80vh) scale(0.2);
    }
    20% {
        transform: translateY(60vh) scale(0.4);
    }
    40% {
        transform: translateY(40vh) scale(0.6);
    }
    60% {
        transform: translateY(20vh) scale(0.8);
    }
    80% {
        transform: translateY(0vh) scale(1);
    }
    100% {
        transform: translateY(-100vh) scale(1.2);
    }
}

/* Gradient Animations */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes gradientMove {
    0% {
        background-position: 0% 0%;
    }
    25% {
        background-position: 100% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    75% {
        background-position: 0% 100%;
    }
    100% {
        background-position: 0% 0%;
    }
}

/* Glow Animations */
@keyframes glow {
    0% {
        box-shadow: 0 0 5px rgba(69, 59, 173, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(69, 59, 173, 0.8), 0 0 30px rgba(69, 59, 173, 0.6);
    }
    100% {
        box-shadow: 0 0 5px rgba(69, 59, 173, 0.5);
    }
}

@keyframes textGlow {
    0% {
        text-shadow: 0 0 10px rgba(69, 59, 173, 0.5);
    }
    50% {
        text-shadow: 0 0 20px rgba(69, 59, 173, 0.8), 0 0 30px rgba(69, 59, 173, 0.6);
    }
    100% {
        text-shadow: 0 0 10px rgba(69, 59, 173, 0.5);
    }
}

/* Wave Animations */
@keyframes wave {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(20deg);
    }
    75% {
        transform: rotate(-20deg);
    }
}

@keyframes waveText {
    0%, 100% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(-10px);
    }
    75% {
        transform: translateY(10px);
    }
}

/* Flip Animations */
@keyframes flipInX {
    0% {
        transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
    40% {
        transform: perspective(400px) rotateX(-10deg);
    }
    70% {
        transform: perspective(400px) rotateX(10deg);
    }
    100% {
        transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
}

@keyframes flipInY {
    0% {
        transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }
    40% {
        transform: perspective(400px) rotateY(-10deg);
    }
    70% {
        transform: perspective(400px) rotateY(10deg);
    }
    100% {
        transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }
}

/* Morph Animation */
@keyframes morph {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

/* Typing Animation */
@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes blinkCursor {
    0%, 50% {
        border-color: transparent;
    }
    50%, 100% {
        border-color: var(--primary-color);
    }
}

/* Drawing Animation */
@keyframes draw {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes fillIn {
    from {
        fill: transparent;
    }
    to {
        fill: var(--primary-color);
    }
}

/* ==========================================
   2. ANIMATION CLASSES
========================================== */

/* Fade Classes */
.animate-fadeIn {
    animation: fadeIn 1s ease-in-out;
}

.animate-fadeInUp {
    animation: fadeInUp 1s ease-out;
}

.animate-fadeInDown {
    animation: fadeInDown 1s ease-out;
}

.animate-fadeInLeft {
    animation: fadeInLeft 1s ease-out;
}

.animate-fadeInRight {
    animation: fadeInRight 1s ease-out;
}

/* Scale Classes */
.animate-scaleIn {
    animation: scaleIn 0.5s ease-out;
}

.animate-zoomIn {
    animation: zoomIn 0.5s ease-out;
}

/* Rotation Classes */
.animate-rotateIn {
    animation: rotateIn 0.5s ease-out;
}

.animate-spin {
    animation: spin 2s linear infinite;
}

.animate-spinSlow {
    animation: spin 3s linear infinite;
}

.animate-spinFast {
    animation: spin 1s linear infinite;
}

/* Slide Classes */
.animate-slideInTop {
    animation: slideInTop 0.5s ease-out;
}

.animate-slideInBottom {
    animation: slideInBottom 0.5s ease-out;
}

.animate-slideInLeft {
    animation: slideInLeft 0.5s ease-out;
}

.animate-slideInRight {
    animation: slideInRight 0.5s ease-out;
}

/* Bounce Classes */
.animate-bounce {
    animation: bounce 2s infinite;
}

.animate-bounceIn {
    animation: bounceIn 0.75s ease-out;
}

.animate-bounceInLeft {
    animation: bounceInLeft 1s ease-out;
}

.animate-bounceInRight {
    animation: bounceInRight 1s ease-out;
}

/* Pulse Classes */
.animate-pulse {
    animation: pulse 2s infinite;
}

.animate-pulseShadow {
    animation: pulseShadow 2s infinite;
}

.animate-heartBeat {
    animation: heartBeat 1.3s ease-in-out infinite;
}

/* Shake Classes */
.animate-shake {
    animation: shake 0.5s;
}

.animate-wobble {
    animation: wobble 1s;
}

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

.animate-floatBubble {
    animation: floatBubble 15s infinite;
}

/* Gradient Classes */
.animate-gradient {
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

.animate-gradientMove {
    background-size: 400% 400%;
    animation: gradientMove 10s ease infinite;
}

/* Glow Classes */
.animate-glow {
    animation: glow 2s ease-in-out infinite;
}

.animate-textGlow {
    animation: textGlow 2s ease-in-out infinite;
}

/* Wave Classes */
.animate-wave {
    animation: wave 1s ease-in-out infinite;
}

.animate-waveText {
    display: inline-block;
    animation: waveText 1s ease-in-out infinite;
}

/* Flip Classes */
.animate-flipInX {
    animation: flipInX 1s ease-out;
}

.animate-flipInY {
    animation: flipInY 1s ease-out;
}

/* Morph Class */
.animate-morph {
    animation: morph 8s ease-in-out infinite;
}

/* Typing Effect */
.animate-typing {
    overflow: hidden;
    white-space: nowrap;
    border-left: 3px solid;
    animation: typing 3s steps(40, end), blinkCursor 0.75s step-end infinite;
}

/* ==========================================
   3. HOVER ANIMATIONS
========================================== */

/* Hover Grow */
.hover-grow {
    transition: transform 0.3s ease;
}

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

/* Hover Shrink */
.hover-shrink {
    transition: transform 0.3s ease;
}

.hover-shrink:hover {
    transform: scale(0.95);
}

/* Hover Rotate */
.hover-rotate {
    transition: transform 0.3s ease;
}

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

/* Hover Lift */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(69, 59, 173, 0.2);
}

/* Hover Sink */
.hover-sink {
    transition: transform 0.3s ease;
}

.hover-sink:hover {
    transform: translateY(5px);
}

/* Hover Shadow */
.hover-shadow {
    transition: box-shadow 0.3s ease;
}

.hover-shadow:hover {
    box-shadow: 0 10px 30px rgba(69, 59, 173, 0.3);
}

/* Hover Glow */
.hover-glow {
    transition: box-shadow 0.3s ease;
}

.hover-glow:hover {
    box-shadow: 0 0 30px rgba(69, 59, 173, 0.6);
}

/* Hover Border */
.hover-border {
    position: relative;
    overflow: hidden;
}

.hover-border::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-color);
    transition: left 0.3s ease;
}

.hover-border:hover::before {
    left: 0;
}

/* Hover Underline */
.hover-underline {
    position: relative;
}

.hover-underline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.hover-underline:hover::after {
    width: 100%;
}

/* Hover Fill */
.hover-fill {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hover-fill::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
    z-index: -1;
}

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

/* ==========================================
   4. SCROLL ANIMATIONS
========================================== */

/* Scroll Reveal */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease, transform 1s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll Scale */
.scroll-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 1s ease, transform 1s ease;
}

.scroll-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

/* Scroll Rotate */
.scroll-rotate {
    opacity: 0;
    transform: rotate(-45deg);
    transition: opacity 1s ease, transform 1s ease;
}

.scroll-rotate.revealed {
    opacity: 1;
    transform: rotate(0);
}

/* Parallax Scroll */
.parallax-bg {
    position: relative;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.parallax-element {
    will-change: transform;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ==========================================
   5. LOADING ANIMATIONS
========================================== */

/* Spinner */
.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(69, 59, 173, 0.1);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Dots */
.loading-dots {
    display: inline-flex;
    gap: 5px;
}

.loading-dots span {
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: bounce 1.4s ease-in-out infinite;
}

.loading-dots span:nth-child(1) {
    animation-delay: -0.32s;
}

.loading-dots span:nth-child(2) {
    animation-delay: -0.16s;
}

/* Progress Bar */
.progress-bar {
    position: relative;
    height: 4px;
    background: rgba(69, 59, 173, 0.1);
    overflow: hidden;
}

.progress-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    animation: slideInRight 2s ease-in-out infinite;
}

/* ==========================================
   6. TEXT ANIMATIONS
========================================== */

/* Glitch Effect */
.glitch {
    position: relative;
    animation: glitch 2s infinite;
}

@keyframes glitch {
    0%, 100% {
        text-shadow: 
            0.05em 0 0 rgba(255, 0, 0, 0.75),
            -0.05em -0.025em 0 rgba(0, 255, 0, 0.75),
            0.025em 0.05em 0 rgba(0, 0, 255, 0.75);
    }
    14% {
        text-shadow: 
            0.05em 0 0 rgba(255, 0, 0, 0.75),
            -0.05em -0.025em 0 rgba(0, 255, 0, 0.75),
            0.025em 0.05em 0 rgba(0, 0, 255, 0.75);
    }
    15% {
        text-shadow: 
            -0.05em -0.025em 0 rgba(255, 0, 0, 0.75),
            0.025em 0.025em 0 rgba(0, 255, 0, 0.75),
            -0.05em -0.05em 0 rgba(0, 0, 255, 0.75);
    }
    49% {
        text-shadow: 
            -0.05em -0.025em 0 rgba(255, 0, 0, 0.75),
            0.025em 0.025em 0 rgba(0, 255, 0, 0.75),
            -0.05em -0.05em 0 rgba(0, 0, 255, 0.75);
    }
    50% {
        text-shadow: 
            0.025em 0.05em 0 rgba(255, 0, 0, 0.75),
            0.05em 0 0 rgba(0, 255, 0, 0.75),
            0 -0.05em 0 rgba(0, 0, 255, 0.75);
    }
    99% {
        text-shadow: 
            0.025em 0.05em 0 rgba(255, 0, 0, 0.75),
            0.05em 0 0 rgba(0, 255, 0, 0.75),
            0 -0.05em 0 rgba(0, 0, 255, 0.75);
    }
}

/* Rainbow Text */
.rainbow-text {
    background: linear-gradient(
        to right,
        #ff0000,
        #ff7f00,
        #ffff00,
        #00ff00,
        #0000ff,
        #4b0082,
        #9400d3
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s linear infinite;
}

/* ==========================================
   7. BUTTON ANIMATIONS
========================================== */

/* Button Ripple */
.btn-ripple {
    position: relative;
    overflow: hidden;
}

.btn-ripple .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: scale(0);
    animation: ripple 0.6s ease-out;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Button Sweep */
.btn-sweep {
    position: relative;
    overflow: hidden;
}

.btn-sweep::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease;
}

.btn-sweep:hover::before {
    left: 100%;
}

/* Button Slide */
.btn-slide {
    position: relative;
    overflow: hidden;
}

.btn-slide span {
    position: relative;
    z-index: 2;
}

.btn-slide::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-dark);
    transition: top 0.3s ease;
}

.btn-slide:hover::before {
    top: 0;
}

/* ==========================================
   8. CARD ANIMATIONS
========================================== */

/* Card Flip */
.card-flip {
    perspective: 1000px;
}

.card-flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.card-flip:hover .card-flip-inner {
    transform: rotateY(180deg);
}

.card-flip-front,
.card-flip-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.card-flip-back {
    transform: rotateY(180deg);
}

/* Card 3D */
.card-3d {
    transform-style: preserve-3d;
    transition: transform 0.3s;
}

.card-3d:hover {
    transform: rotateY(10deg) rotateX(10deg);
}

/* ==========================================
   9. SPECIAL EFFECTS
========================================== */

/* Neon Glow */
.neon-glow {
    color: var(--white);
    text-shadow:
        0 0 10px var(--primary-color),
        0 0 20px var(--primary-color),
        0 0 30px var(--primary-color),
        0 0 40px var(--primary-color);
    animation: neonFlicker 1.5s infinite alternate;
}

@keyframes neonFlicker {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

/* Particle Effect */
.particles {
    position: relative;
}

.particles::before {
    content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: particle 3s linear infinite;
}

@keyframes particle {
    0% {
        transform: translate(0, 0);
        opacity: 1;
    }
    100% {
        transform: translate(100px, -100px);
        opacity: 0;
    }
}

/* Glass Morphism Animation */
.glass-morph {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: glassPulse 3s ease-in-out infinite;
}

@keyframes glassPulse {
    0%, 100% {
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
    50% {
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
    }
}

/* ==========================================
   10. STAGGER ANIMATIONS
========================================== */

.stagger-container > * {
    opacity: 0;
    transform: translateY(20px);
}

.stagger-container.animated > * {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.5s ease;
}

.stagger-container.animated > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-container.animated > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-container.animated > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-container.animated > *:nth-child(4) { transition-delay: 0.4s; }
.stagger-container.animated > *:nth-child(5) { transition-delay: 0.5s; }
.stagger-container.animated > *:nth-child(6) { transition-delay: 0.6s; }
.stagger-container.animated > *:nth-child(7) { transition-delay: 0.7s; }
.stagger-container.animated > *:nth-child(8) { transition-delay: 0.8s; }
.stagger-container.animated > *:nth-child(9) { transition-delay: 0.9s; }
.stagger-container.animated > *:nth-child(10) { transition-delay: 1s; }

/* ==========================================
   11. PERFORMANCE OPTIMIZATIONS
========================================== */

/* GPU Acceleration */
.gpu-accelerated {
    transform: translateZ(0);
    will-change: transform, opacity;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ==========================================
   12. CUSTOM CURSOR ANIMATIONS
========================================== */

.custom-cursor {
    cursor: none;
}

.cursor-dot {
    position: fixed;
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: transform 0.2s, width 0.2s, height 0.2s;
}

.cursor-outline {
    position: fixed;
    width: 30px;
    height: 30px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: all 0.1s;
}

.cursor-hover {
    width: 50px;
    height: 50px;
}

/* ==========================================
   13. SVG ANIMATIONS
========================================== */

.svg-draw {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: draw 3s ease forwards;
}

.svg-morph {
    animation: svgMorph 4s ease-in-out infinite;
}

@keyframes svgMorph {
    0%, 100% {
        d: path("M100,100 L200,100 L200,200 L100,200 Z");
    }
    50% {
        d: path("M150,50 L250,150 L150,250 L50,150 Z");
    }
}