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

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

@keyframes loading-bar {
    0% { transform: translateX(-100%); }
    50% { transform: translateX(0); }
    100% { transform: translateX(100%); }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

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

.animate-loading-bar {
    animation: loading-bar 1.5s infinite linear;
}

#transition-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.service-card:hover img {
    transform: scale(1.1);
}

.hero-gradient {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.4)), url('hero-bg.png');
    background-size: cover;
    background-position: center;
}

.legal-section h1 { @apply text-4xl font-black mb-8 text-orange-500; }
.legal-section h2 { @apply text-2xl font-bold mt-12 mb-4 text-gray-800 border-l-4 border-orange-500 pl-4; }
.legal-section p { @apply mb-6 leading-relaxed text-gray-600; }
.legal-section ul { @apply list-disc list-inside mb-6 space-y-2 text-gray-600; }

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #f97316;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #ea580c;
}

html {
    scroll-behavior: smooth;
}