/* Site Footer */
.site-footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
}

.footer-main {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--gap-2xl) var(--gap-md) var(--gap-lg);
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--gap-lg);
}

/* Footer Brand */
.footer-brand {
    max-width: 300px;
}

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: var(--gap-sm);
    margin-bottom: var(--gap-sm);
}

.footer-brand .footer-logo .logo-text {
    font-size: var(--fs-md);
    font-weight: var(--fw-bold);
    color: var(--text-primary);
    font-family: var(--font-mono);
}

.footer-brand .footer-logo .logo-text span {
    color: var(--neon-green);
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: var(--fs-sm);
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: var(--gap-sm);
    margin-top: var(--gap-md);
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    font-size: var(--fs-sm);
}
.footer-social a:hover {
    color: var(--neon-green);
    border-color: var(--neon-green);
}

/* Footer Column */
.footer-column h4 {
    color: var(--text-primary);
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    margin-bottom: var(--gap-sm);
    padding-bottom: var(--gap-xs);
    border-bottom: 1px solid var(--border);
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li { margin-bottom: var(--gap-xs); }

.footer-column ul a {
    color: var(--text-secondary);
    font-size: var(--fs-sm);
    transition: color var(--transition-fast);
}
.footer-column ul a:hover {
    color: var(--neon-green);
}

/* Footer Contact */
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--gap-sm);
    margin-bottom: var(--gap-sm);
    color: var(--text-secondary);
    font-size: var(--fs-sm);
}

.footer-contact-item i {
    color: var(--neon-green);
    width: 16px;
    text-align: center;
    margin-top: 3px;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid var(--border);
}

.footer-bottom-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--gap-sm) var(--gap-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--gap-sm);
}

.footer-copyright {
    color: var(--text-muted);
    font-size: var(--fs-xs);
    font-family: var(--font-mono);
}

.footer-copyright a { color: var(--neon-green); }

.footer-bottom-links {
    display: flex;
    gap: var(--gap-md);
}

.footer-bottom-links a {
    color: var(--text-muted);
    font-size: var(--fs-xs);
    transition: color var(--transition-fast);
}
.footer-bottom-links a:hover { color: var(--neon-green); }

/* Scroll to top */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    background: var(--bg-secondary);
    color: var(--neon-green);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: var(--z-dropdown);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-base);
}
.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.scroll-to-top:hover {
    border-color: var(--neon-green);
    background: rgba(0, 255, 136, 0.1);
}

/* Responsive */
@media (min-width: 576px) {
    .footer-main { grid-template-columns: repeat(2, 1fr); }
    .footer-bottom-inner { flex-direction: row; justify-content: space-between; }
}

@media (min-width: 1024px) {
    .footer-main {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
        padding: var(--gap-2xl) var(--gap-lg) var(--gap-lg);
    }
}
