

.unified-footer {
    background: #000;
    border-top: 1px solid #222;
    padding: 30px 0;
    color: #999;
    font-family: 'Inter', sans-serif;
    margin-top: auto;
}

.footer-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    gap: 40px;
}

.footer-copy {
    flex: 0 0 auto;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    color: #666;
}

.footer-legal {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 0.9rem;
}

.footer-legal a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 400;
}

.footer-legal a:hover {
    color: #fff;
}

.footer-divider {
    color: #444;
}

.footer-socials {
    flex: 0 0 auto;
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer-social-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.footer-social-icon:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.footer-social-icon svg {
    width: 100%;
    height: 100%;
    fill: #999;
    transition: fill 0.3s ease;
}

.footer-social-icon:hover svg {
    fill: #fff;
}

@media (max-width: 1024px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-copy {
        order: 1;
    }

    .footer-legal {
        order: 2;
    }

    .footer-socials {
        order: 3;
    }
}

@media (max-width: 768px) {
    .footer-container {
        padding: 0 20px;
    }

    .footer-copy {
        font-size: 0.75rem;
    }

    .footer-legal {
        font-size: 0.8rem;
        flex-wrap: wrap;
    }

    .footer-social-icon {
        width: 28px;
        height: 28px;
    }
}