.footer {
    background-color: var(--bg-secondary);
    padding: 16px 64px;
    padding-bottom: 32px;
    box-shadow: inset 0 0px 0 var(--box-shadow),
        0 -3px 6px var(--box-shadow);
}

.footer-content {
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.footer-brand {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    flex-direction: column;
    align-items: left;
    gap: 8px;
}

.footer-brand svg {
    width: 24px;
    height: 24px;
    fill: var(--accent);
}

.footer-note {
    display: flex;
    padding-top: 12px;
    padding-bottom: 12px;
    gap: 6px;
    font-size: 18px;
    color: var(--text-secondary);
}

.footer-info {
    font-size: 17px;
    color: var(--text-primary);
    line-height: 1.6;
}

.footer-info a {
    color: var(--accent);
    text-decoration: none;
    transition: opacity 0.2s;
    color: #60a5fa;
}

.footer-info a:hover {
    text-decoration: underline;
}

.footer-email {
    color: var(--accent);
    text-decoration: none;
    transition: opacity 0.2s;
}

.footer-email:hover {
    text-decoration: underline;
}

.footer-right {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: right;
}

.footer-links {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.footer-link {
    background-color: var(--bg-primary);
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 18px;
    text-decoration: none;
    color: var(--text-primary);
    outline: 1px solid var(--text-primary);
    transition: 0.15s ease-in-out;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-link:hover {
    background-color: var(--text-primary);
    color: var(--bg-primary);
}

.footer-link svg {
    width: 16px;
    height: 16px;
}

.footer-copyright {
    font-size: 15px;
    color: var(--text-secondary);
}

/* RESPONSIVE DESIGN - TABLET */
@media (max-width: 935px) {
    .footer {
        box-shadow: inset 0 0px 0 var(--box-shadow),
            0 -4.5px 9px var(--box-shadow);
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-left,
    .footer-right {
        text-align: center;
    }

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

/* RESPONSIVE DESIGN - MOBILE */
@media (max-width: 768px) {
    .footer {
        padding: 20px 16px;
        box-shadow: inset 0 0px 0 var(--box-shadow),
            0 -4px 8px var(--box-shadow);
    }

    .footer-content {
        gap: 20px;
    }

    .footer-brand {
        font-size: 18px;
    }

    .footer-info {
        font-size: 13px;
    }

    .footer-links {
        flex-direction: column;
        width: 100%;
        gap: 8px;
    }

    .footer-link {
        width: 100%;
        justify-content: center;
    }

    .footer-badge {
        font-size: 12px;
    }

    .footer-copyright {
        font-size: 12px;
    }
}