html, body{
    scroll-behavior: smooth;
    -webkit-scroll-behavior: smooth;
    -moz-scroll-behavior: smooth;
    -ms-scroll-behavior: smooth;
    -o-scroll-behavior: smooth;
}
#free-case-form input::placeholder, #free-case-form textarea::placeholder {
    color: #4892df;
    font-weight: 600;
}
/* Footer styles to match provided screenshot */
.site-footer{
    background-color: #0f2633; /* dark teal/navy */
    color: #94a3b8; /* muted gray-blue for general text */
}
.site-footer a.footer-link{
    color: #9fb0bd; /* slightly brighter muted link */
    text-decoration: none;
}
.site-footer a.footer-link:hover{
    text-decoration: underline;
    color: #cbd7df;
}
.site-footer .mx-2.text-gray-500{ color: rgba(255,255,255,0.35);} /* separator color */
.site-footer .max-w-7xl{ max-width: 1100px; }
.site-footer .text-xs{ font-size: 12px; }

@media (max-width: 640px){
    .site-footer .text-right{ text-align: left; }
}
h2.text-center.text-5xl.font-bondBold {
    line-height: inherit !important;
}
#free-case-review input[type="checkbox"] {
display: flex;
flex: 0 0 24px;
max-width: 24px;
height: 24px;
width: 24px;
}
/* Form focus and label tweaks */
:root{
    --bond-blue: #1e4fcc;
}
.text-bondBlue{ color: var(--bond-blue); }
input[type="text"], input[type="tel"], input[type="email"], textarea{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
input:focus, textarea:focus{
    box-shadow: none !important;
}

/* Ensure bottom-only border visuals */
input, textarea{
    border-radius: 0 !important;
    background-color: transparent;
}

/* Error visuals */
.input-error{ border-bottom-color: #c53030 !important; }
.field-error{ color: #c53030; margin-top: 6px; font-size: 13px; }

/* Small improvement: subtle transition for bottom border */
input, textarea{ transition: border-color 160ms ease-in-out; }

/* Placeholder color (Bond blue) - cross-browser */
::placeholder { color: var(--bond-blue); opacity: 1; }
:-ms-input-placeholder { color: var(--bond-blue); } /* Internet Explorer 10-11 */
::-ms-input-placeholder { color: var(--bond-blue); } /* Microsoft Edge */