/* Custom styles yang tidak bisa dilakukan dengan Tailwind CDN */

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

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #0f172a;
}
::-webkit-scrollbar-thumb {
    background: #334155;
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: #f97316;
}

/* FAQ answer transition */
.faq-answer {
    animation: slideDown 0.2s ease-out;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Select dropdown — maroon theme */
select {
    background-color: #6B1208 !important;
    color: white !important;
}
select option {
    background-color: #8B1A0A;
    color: white;
}
select option:checked,
select option:hover {
    background-color: #F5A623;
    color: #fff;
}

/* Print styles */
@media print {
    nav, footer, .no-print { display: none !important; }
}
