/* Luxury Animations and Effects */

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

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

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

@keyframes goldGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(212, 175, 55, 0.6);
    }
}

.vision-card,
.feature-card,
.stat-card,
.pipeline-step {
    animation: fadeInUp 0.6s ease-out;
}

.vision-card:nth-child(1) { animation-delay: 0.1s; }
.vision-card:nth-child(2) { animation-delay: 0.2s; }

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }

.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.3s; }

.pipeline-step:nth-child(odd) { animation-delay: 0.1s; }
.pipeline-step:nth-child(even) { animation-delay: 0.2s; }

.logo h1 {
    animation: goldGlow 3s ease-in-out infinite;
}

.icon {
    animation: float 3s ease-in-out infinite;
}

.feature-icon {
    animation: float 4s ease-in-out infinite;
}

.stat-number {
    position: relative;
    overflow: hidden;
}

.stat-number::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 3s infinite;
}
