/* Footer Styles */
.footer {
    color: var(--white);
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-company-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-link {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: var(--light-purple);
    text-decoration: underline;
}

.footer-copyright {
    font-size: 0.8rem;
    opacity: 0.7;
    text-align: center;
}

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

    .footer-links {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .footer-link {
        font-size: 0.95rem;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 360px) {
    .footer {
        padding: 1.5rem 0;
    }

    .footer-container {
        padding: 0 0.75rem;
    }

    .footer-company-name {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .footer-links {
        gap: 0.75rem;
        margin-bottom: 1rem;
    }

    .footer-link {
        font-size: 0.82rem;
        min-height: 40px;
    }

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

/* ========== Desktop Optimization (1920px+) ========== */
@media (min-width: 1920px) {
    .footer {
        padding: 3rem 0;
    }

    .footer-container {
        max-width: 1400px;
        padding: 0 2.5rem;
    }

    .footer-company-name {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .footer-links {
        gap: 3rem;
        margin-bottom: 2rem;
    }

    .footer-link {
        font-size: 1rem;
        min-height: 48px;
        transition: color 0.2s ease, opacity 0.2s ease;
    }

    .footer-link:hover {
        opacity: 0.8;
    }

    .footer-copyright {
        font-size: 0.95rem;
        margin-top: 1.5rem;
    }
}
