/* Sticky footer - all pages */
html { min-height: 100vh; }
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
body > * { width: 100%; }
body > .nav-toast,
body > .toast-msg,
body > .toast,
body > #toast { width: auto !important; text-align: center !important; }

/* Footer */
.site-footer {
    background: #1e293b;
    color: #e2e8f0;
    padding: 40px 0 0;
    font-size: 14px;
    line-height: 1.8;
    margin-top: auto;
    flex-shrink: 0;
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 30px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}
.footer-brand { flex: 0 0 240px; }
.footer-brand .brand-name {
    font-size: 22px; font-weight: 700; color: #fff;
    margin-bottom: 8px; letter-spacing: 2px;
}
.footer-brand .brand-desc { color: #94a3b8; font-size: 13px; }
.footer-contact { flex: 1; }
.footer-contact-title {
    font-size: 15px; font-weight: 600; color: #fff; margin-bottom: 12px;
}
.footer-contact-grid { display: flex; gap: 60px; }
.footer-contact-item {
    display: flex; align-items: flex-start; gap: 8px;
    margin-bottom: 10px; color: #cbd5e1;
}
.footer-contact-item .icon {
    flex-shrink: 0; width: 18px; height: 18px; margin-top: 2px;
}
.footer-qr { flex: 0 0 140px; text-align: center; }
.footer-qr-title {
    font-size: 15px; font-weight: 600; color: #fff; margin-bottom: 12px;
}
.footer-qr-box {
    width: 100px; height: 100px; margin: 0 auto 8px;
    background: #fff; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: #94a3b8; font-size: 12px;
}
.footer-qr-text { color: #94a3b8; font-size: 12px; line-height: 1.5; }
.footer-bottom {
    border-top: 1px solid #334155; text-align: center;
    padding: 16px 20px; color: #94a3b8; font-size: 13px;
}
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column; align-items: center;
        text-align: center; gap: 30px;
    }
    .footer-contact-grid { flex-direction: column; gap: 10px; align-items: center; }
    .footer-brand, .footer-qr { flex: none; }
}
/* Global scrollbar - enterprise minimal style */
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: rgba(150, 160, 180, 0.3);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(150, 160, 180, 0.5);
}
::-webkit-scrollbar-corner {
    background: transparent;
}
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(150, 160, 180, 0.3) transparent;
}
