/* About Page Additional Styles */

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

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

/* Enhanced animations */
.company-intro {
    animation: fadeInUp 0.8s ease-out;
}

.vmv-card {
    animation: fadeInUp 0.8s ease-out;
    animation-delay: 0.2s;
    animation-fill-mode: both;
}

.vmv-card:nth-child(2) {
    animation-delay: 0.4s;
}

.vmv-card:nth-child(3) {
    animation-delay: 0.6s;
}

.value-item {
    animation: slideInLeft 0.6s ease-out;
    animation-fill-mode: both;
}

.value-item:nth-child(1) {
    animation-delay: 0.1s;
}
.value-item:nth-child(2) {
    animation-delay: 0.2s;
}
.value-item:nth-child(3) {
    animation-delay: 0.3s;
}
.value-item:nth-child(4) {
    animation-delay: 0.4s;
}
.value-item:nth-child(5) {
    animation-delay: 0.5s;
}

/* Enhanced hover effects */
.vmv-card:hover .vmv-icon {
    transform: scale(1.1);
    transition: var(--transition);
}

.value-item:hover .value-number {
    transform: scale(1.2);
    background: var(--brand-red);
    transition: var(--transition);
}

/* Print styles */
@media print {
    .about-hero {
        background: none !important;
        color: var(--text-dark) !important;
        padding: 40px 0 !important;
    }

    .about-hero::before {
        display: none !important;
    }

    .hero-breadcrumb {
        display: none !important;
    }

    .vmv-card,
    .value-item,
    .company-intro {
        box-shadow: none !important;
        border: 1px solid #ddd !important;
        break-inside: avoid;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .company-intro,
    .vmv-card,
    .value-item {
        animation: none;
    }

    .vmv-card:hover,
    .value-item:hover,
    .company-intro:hover {
        transform: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .vmv-card,
    .value-item,
    .company-intro {
        border: 2px solid var(--text-dark);
    }

    .hero-breadcrumb {
        border: 1px solid var(--text-dark);
    }
}
