/* ============================================
   FOOTER STYLES - MIGRATIVE PARTNERS
   Simple, Startup Feel, Direct Information
   ============================================ */

/* Footer */
.footer {
    background: var(--bg-primary);
    border-top: 1px solid rgba(0, 255, 170, 0.1);
    padding: var(--spacing-xl) 0 var(--spacing-lg);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: var(--neon-green);
    opacity: 0.6;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--spacing-xl);
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* Footer Brand */
.footer-brand {
    flex-shrink: 0;
}

.footer-logo {
    height: 32px;
    width: auto;
    opacity: 0.8;
    transition: opacity var(--transition-base);
}

.footer-logo:hover {
    opacity: 1;
}

/* Footer Info */
.footer-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    text-align: right;
}

/* Contact */
.footer-contact {
    margin-bottom: var(--spacing-md);
}

.footer-email {
    font-size: var(--text-sm);
    color: var(--neon-green);
    text-decoration: none;
    font-weight: var(--font-medium);
    font-family: var(--font-mono);
    letter-spacing: var(--tracking-wide);
    transition: all var(--transition-base);
}

.footer-email:hover {
    color: var(--white);
    text-decoration: underline;
    text-decoration-color: var(--neon-green);
    text-underline-offset: 2px;
}

/* Legal Info */

.footer-legal p {
    font-size: var(--text-xs);
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.4);
    margin: 0 0 var(--spacing-xs) 0;
    font-weight: var(--font-light);
}

.footer-legal p:last-child {
    margin-bottom: 0;
}

.company-name {
    color: rgba(255, 255, 255, 0.6);
    font-weight: var(--font-medium);
}

.footer-copyright {
    font-family: var(--font-mono);
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    font-size: 0.65rem !important;
    color: rgba(255, 255, 255, 0.3) !important;
}

/* Social Media Links */
.footer-social {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
}

.social-link {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: all var(--transition-base);
}

.social-link:hover {
    color: var(--neon-green);
}

.social-link svg {
    width: 17px;
    height: 17px;
    fill: currentColor;
    transition: fill var(--transition-base);
}

/* Made in USA */
.made-in-usa {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: var(--spacing-xs);
    margin: var(--spacing-sm) 0;
    font-size: 0.51rem;
    font-weight: var(--font-light);
    font-family: var(--font-mono);
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    order: -1;
}

.made-in-usa svg {
    width: 11px;
    height: auto;
    opacity: 0.5;
}

/* Responsive - Tablet */
@media (max-width: 768px) {
    .footer {
        padding: var(--spacing-lg) 0;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: var(--spacing-lg);
    }
    
    .footer-info {
        text-align: center;
        gap: var(--spacing-sm);
    }
    
    .footer-social {
        justify-content: center;
        margin-bottom: var(--spacing-sm);
        gap: var(--spacing-lg);
    }
    
    .made-in-usa {
        justify-content: center;
        margin: var(--spacing-sm) 0;
        order: 0;
    }
    
    .footer-content {
        padding: 0 var(--spacing-md);
    }
    
    .footer-logo {
        height: 28px;
    }
    
    .footer-email {
        font-size: var(--text-base);
    }
    
    .footer-legal p {
        font-size: var(--text-xs);
    }
}

/* Mobile */
@media (max-width: 480px) {
    .footer {
        padding: var(--spacing-md) 0;
    }
    
    .footer-content {
        gap: var(--spacing-md);
    }
    
    .footer-logo {
        height: 24px;
    }
    
    .footer-email {
        font-size: var(--text-sm);
    }
    
    .footer-legal p {
        font-size: 0.7rem;
        line-height: 1.3;
    }
    
    .footer-copyright {
        font-size: 0.6rem !important;
    }
    
    .social-link svg {
        width: 19px;
        height: 19px;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .footer {
        border-top-width: 2px;
    }
    
    .footer-legal p {
        color: rgba(255, 255, 255, 0.6);
    }
    
    .footer-copyright {
        color: rgba(255, 255, 255, 0.5) !important;
    }
}

/* Print styles */
@media print {
    .footer {
        border-top: 1px solid #333;
        background: white;
        color: #333;
    }
    
    .footer-logo,
    .footer-email,
    .footer-legal p,
    .company-name,
    .footer-copyright {
        color: #333 !important;
    }
    
    .footer::before {
        display: none;
    }
}