/* 
    Griman Forensics Srl - Animations
*/

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

/* Micro-animations for Cyber feel */
.cyber-line {
    position: relative;
}

.cyber-line::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-cyan);
    transition: width 0.4s ease;
}

.reveal.active.cyber-line::after {
    width: 60px;
}

/* Hover effects */
.card-hover {
    transition: var(--transition-smooth);
}

.card-hover:hover {
    transform: translateY(-5px);
    border-color: var(--accent-cyan);
    background: rgba(15, 23, 42, 0.8);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}