/* Animation styles */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animations for grid children */
.animate-visible:nth-child(2) { transition-delay: 0.1s; }
.animate-visible:nth-child(3) { transition-delay: 0.2s; }
.animate-visible:nth-child(4) { transition-delay: 0.3s; }
.animate-visible:nth-child(5) { transition-delay: 0.4s; }
.animate-visible:nth-child(6) { transition-delay: 0.5s; }

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* FAQ icon rotation */
.faq-icon {
    transition: transform 0.3s ease;
}

.rotate-45 {
    transform: rotate(45deg);
}

/* Selection color */
::selection {
    background-color: #a81125;
    color: white;
}

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid #a81125;
    outline-offset: 2px;
}
