.site-footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 24px 0 16px;
    margin-top: auto;
}

.site-footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 20px;
}

.footer-col {
    display: block;
}

.footer-col h4 {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0 0 12px 0;
    padding: 0;
    color: var(--text);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.footer-col ul {
    display: block;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col li {
    display: block;
    margin-bottom: 8px;
}

.footer-col li:last-child {
    margin-bottom: 0;
}

.site-footer .footer-col a,
.site-footer .footer-col a span,
.site-footer .footer-col li,
.site-footer .contact-link,
.site-footer .contact-link span {
    color: #9ca3af !important;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400 !important;
    transition: color 0.2s;
}

.site-footer .contact-link svg {
    color: #9ca3af;
    fill: #9ca3af;
}

.footer-col a:hover {
    color: var(--primary);
}

.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-contact li {
    margin-bottom: 0;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.contact-link svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

.footer-copyright {
    text-align: center;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.site-footer .footer-copyright p {
    color: #9ca3af !important;
    font-size: 0.8rem;
    font-weight: 400 !important;
    margin: 0;
}

/* Mobile/Tablet styles */
@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
    
    .footer-col h4 {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }
    
    .footer-col a {
        font-size: 0.8rem;
    }
    
    .contact-link svg {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 480px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
}

.nav-link__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ef4444;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 9px;
    margin-left: 6px;
    line-height: 1;
}