html {
    scroll-behavior: smooth;
}

/* Enhancing input borders on focus to glow with the premium primary color */
.get-quote-box .form-control:focus, 
.get-quote-box .form-select:focus {
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.4) !important;
    border-color: var(--premium-primary) !important;
}

/* Animate feature list items gently on hover */
.hero-box ul li {
    transition: transform 0.3s ease;
}
.hero-box ul li:hover {
    transform: translateX(10px);
    color: var(--premium-primary-light) !important;
}
