.footer {
    background-color: var(--color-footer-bg);
    padding: 1.2rem 0;
    margin-top: auto;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.footer-logo {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-white);
}

.footer-links {
    display: flex;
    gap: 1.2rem;
}

.footer-links a {
    color: var(--color-white);
    text-decoration: none;
    font-size: 0.85rem;
    transition: opacity 0.2s;
}

.footer-links a:hover {
    opacity: 0.7;
}

.footer-right span {
    font-size: 0.85rem;
    color: var(--color-white);
}

.footer-bottom {
    text-align: center;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.82rem;
    color: var(--color-white);
}

/* ===== Responsive: 768px (Small Tablet) ===== */
@media (max-width: 768px) {
    .footer-container {
        padding: 0 1.5rem;
    }

    .footer-top {
        gap: 0.8rem;
    }

    .footer-left {
        gap: 1rem;
    }

    .footer-links {
        justify-content: center;
    }
}

/* ===== Responsive: 600px (Large Phone) ===== */
@media (max-width: 600px) {
    .footer {
        padding: 1rem 0;
    }

    .footer-container {
        padding: 0 1rem;
        gap: 0.6rem;
    }

    .footer-top {
        flex-direction: column;
        gap: 0.6rem;
    }

    .footer-left {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .footer-logo {
        font-size: 0.9rem;
    }

    .footer-links {
        gap: 0.8rem;
        justify-content: center;
    }

    .footer-links a {
        font-size: 0.8rem;
    }

    .footer-right span {
        font-size: 0.8rem;
    }

    .footer-bottom {
        font-size: 0.75rem;
        padding-top: 0.6rem;
    }
}

/* ===== Responsive: 480px (Small Phone) ===== */
@media (max-width: 480px) {
    .footer-container {
        padding: 0 0.75rem;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.4rem 0.7rem;
    }

    .footer-links a {
        font-size: 0.75rem;
    }

    .footer-right span {
        font-size: 0.75rem;
    }

    .footer-bottom {
        font-size: 0.7rem;
    }
}
