/* ---------- FOOTER STYLES ---------- */
.main-footer {
    background: #020202;
    padding: 80px 0 30px;
    border-top: 1px solid var(--glass-border);
    color: #ccc;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    font-family: 'Orbitron', sans-serif;
    color: #fff;
    margin-bottom: 25px;
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 30px; height: 2px;
    background: var(--neon-cyan);
}

.footer-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.footer-about {
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a, .footer-links li i {
    color: #888;
    transition: 0.3s;
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--neon-cyan);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link i {
    width: 35px; height: 35px;
    background: rgba(255,255,255,0.05);
    display: flex; align-items: center; justify-content: center;
    border-radius: 4px;
    color: #fff;
    transition: 0.3s;
}

.social-link i:hover {
    background: var(--neon-cyan);
    color: #000;
    box-shadow: 0 0 10px var(--neon-cyan);
}

/* Army Badge in Footer */
.army-tribute-badge {
    margin-top: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border: 1px solid var(--neon-orange);
    background: rgba(255, 95, 0, 0.05);
    color: var(--neon-orange);
    font-family: 'Orbitron';
    font-size: 0.75rem;
    text-transform: uppercase;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
    font-size: 0.85rem;
    color: #666;
}

.footer-bottom strong { color: #888; }

/* ---------- RESPONSIVE FOOTER ---------- */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .social-links, .army-tribute-badge {
        justify-content: center;
    }
    .footer-about {
        max-width: 300px;
        margin: 0 auto 25px;
    }
}