/* FOOTER */
.global-footer { border-top: 1px solid var(--border-color); padding: 60px 0 24px 0; background: #ffffff; position: relative; z-index: 1; width: 100%; max-width: 100%; box-sizing: border-box; }
.footer-top { display: flex; justify-content: space-between; gap: 40px; width: 100%; max-width: 100%; margin: 0; padding: 0 40px; flex-wrap: wrap; box-sizing: border-box; }
.footer-col { flex: 1; min-width: 150px; }
.footer-col.brand-col { flex: 2; min-width: 250px; }
.footer-col p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 24px; margin-top: 16px; }
.footer-col h4 { font-size: 15px; font-weight: 700; color: var(--text-main); margin-bottom: 20px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { color: var(--text-secondary); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--primary); }
.footer-socials { display: flex; gap: 12px; }
.social-link { width: 36px; height: 36px; border-radius: 50%; background: var(--bg-accent); display: flex; align-items: center; justify-content: center; color: var(--primary); text-decoration: none; font-weight: 700; font-size: 14px; transition: all 0.2s; border: 1px solid var(--border-color); }
.social-link:hover { background: var(--primary); color: white; transform: translateY(-2px); }
.footer-bottom { border-top: 1px solid var(--border-color); padding: 24px 40px 0 40px; margin-top: 48px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; width: 100%; max-width: 100%; margin-left: 0; margin-right: 0; box-sizing: border-box; }
.footer-bottom p { font-size: 14px; color: var(--text-secondary); margin: 0; }
.footer-bottom-center { display: flex; align-items: center; gap: 8px; color: var(--text-secondary); font-size: 14px; font-weight: 500; }
.footer-bottom-right { color: var(--text-secondary); font-size: 14px; }
.social-link svg { width: 18px; height: 18px; fill: currentColor; }

/* Mobile Adjustments */
@media (max-width: 768px) {
    .global-footer {
        padding: 40px 0 20px 0;
    }
    .footer-top {
        gap: 32px;
        padding: 0 20px;
    }
    .footer-bottom {
        padding: 20px 20px 0 20px;
    }
    .footer-col {
        min-width: 100%;
    }
}
