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

.footer-compact {
    background: linear-gradient(135deg, var(--color-dark) 0%, #1a1a2e 100%);
    color: white;
    padding: 30px 0 20px;
    border-top: 3px solid var(--color-primary);
}

.footer-compact-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

/* Quick Links */
.footer-links-compact {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-links-compact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all var(--transition-normal);
    position: relative;
}

.footer-links-compact a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width var(--transition-normal);
}

.footer-links-compact a:hover {
    color: var(--color-primary);
}

.footer-links-compact a:hover::after {
    width: 100%;
}

/* Social Links */
.footer-social-compact {
    display: flex;
    gap: 12px;
}

.footer-social-compact a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 1rem;
    transition: all var(--transition-normal);
    text-decoration: none;
}

.footer-social-compact a:hover {
    background: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 197, 142, 0.3);
}

/* Footer Bottom */
.footer-bottom-compact {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-compact p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

.footer-legal-compact {
    display: flex;
    gap: 20px;
}

.footer-legal-compact a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color var(--transition-normal);
}

.footer-legal-compact a:hover {
    color: var(--color-primary);
}

/* ================================
   DARK MODE
   ================================ */

body.dark-mode .footer-compact {
    background: linear-gradient(135deg, #0d1117 0%, #161b22 100%);
    border-top-color: var(--color-primary);
}

body.dark-mode .footer-compact-content {
    border-bottom-color: rgba(255, 255, 255, 0.05);
}

body.dark-mode .footer-social-compact a {
    background: rgba(255, 255, 255, 0.05);
}

body.dark-mode .footer-social-compact a:hover {
    background: var(--color-primary);
}

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

@media (max-width: 992px) {
    .footer-compact-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links-compact {
        justify-content: center;
        gap: 15px;
    }
    
    .footer-bottom-compact {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .footer-compact {
        padding: 25px 0 15px;
    }
    
    .footer-links-compact {
        gap: 12px;
        font-size: 0.9rem;
    }
    
    .footer-links-compact a {
        font-size: 0.85rem;
    }
    
    .footer-social-compact a {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    
    .footer-legal-compact {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .footer-links-compact {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px 15px;
        width: 100%;
    }
    
    .footer-links-compact a {
        font-size: 0.8rem;
    }
    
    .footer-social-compact {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-legal-compact {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px 15px;
    }
    
    .footer-legal-compact a {
        font-size: 0.75rem;
    }
}
