/* Custom styles and overrides */

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

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #fafaf8;
}
::-webkit-scrollbar-thumb {
    background: #d4af37;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #c5a028;
}

/* Selection color */
::selection {
    background: #d4af37;
    color: #0a1628;
}

/* Service item hover */
.service-item {
    transition: transform 0.3s ease;
}
.service-item:hover {
    transform: translateX(8px);
}

/* Mobile menu animation */
#mobile-menu {
    animation: slideDown 0.3s ease-out;
}
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form focus states */
input:focus,
textarea:focus {
    border-bottom-color: #d4af37 !important;
}

/* Image hover zoom with overflow hidden parent */
.overflow-hidden img {
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Subtle line decoration */
.service-item::before {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: #d4af37;
    margin-bottom: 12px;
    transition: width 0.3s ease;
}
.service-item:hover::before {
    width: 60px;
}
