/* Custom styles for Intercap Lending */

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

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f5f3ee;
}

::-webkit-scrollbar-thumb {
    background: #c9a092;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a56957;
}

/* Navigation scroll effect */
.nav-scrolled {
    background: rgba(250, 249, 247, 0.98) !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.nav-scrolled #navbar a {
    color: #554a38;
}

/* Form focus states */
input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #c9a092;
    box-shadow: 0 0 0 3px rgba(201, 160, 146, 0.15);
}

/* Button hover effects */
button,
a {
    transition: all 0.2s ease-in-out;
}

/* Image hover zoom */
img {
    transition: transform 0.3s ease;
}

/* Animation for scroll reveal */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }
    
    .reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Print styles */
@media print {
    nav,
    #contact-form,
    .animate-bounce {
        display: none;
    }
    
    body {
        color: #000;
        background: #fff;
    }
}
