/* =============================================
   FOOTER STYLES
   ============================================= */

.main-footer {
    background: var(--bg-darker);
    padding: 50px 0 30px;
    color: var(--text-white);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 30px;
    border-bottom: 1px solid #222;
    margin-bottom: 20px;
}

.footer-logo {
    font-size: 20px;
    font-weight: 800;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--text-white);
}

.footer-powered {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-gray);
    font-size: 12px;
}

.footer-powered img {
    height: 20px;
    opacity: 0.6;
    filter: brightness(0) invert(1);
}

.footer-copy {
    text-align: center;
    color: var(--text-gray);
    font-size: 13px;
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 768px) {
    .footer-inner {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}