footer {
    background-color: var(--color-bg);
    color: var(--color-text);
    text-align: center;
    padding: 1.25rem 2rem;
    position: static;
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: 0;
    gap: 0.75rem;
}
.footer-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
    width: 100%;
    padding: 1rem 5rem 0;
}
.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
    text-align: left;
}
.footer-logo {
    width: 100px;
    max-width: 60%;
    height: auto;
}
.footer-address,
.footer-company {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}
.footer-company {
    font-weight: 600;
}
.footer-socials {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.35rem;
}
.footer-socials a {
    color: var(--color-text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.footer-socials a:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.7);
}
.social-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}
.footer-divider {
    width: 100%;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    margin: 0.5rem 0 0;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.footer-links__title {
    margin: 0;
    font-weight: 600;
    font-size: 1rem;
}
.footer-links__actions {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    align-items: flex-end;
}
.footer-link-button {
    border-radius: 999px;
    border: 1px solid rgba(0, 194, 129, 0.6);
    background: rgba(0, 194, 129, 0.12);
    color: var(--color-text);
    font-weight: 600;
    padding: 0.45rem 1.1rem;
    cursor: pointer;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}
.footer-link-button:hover {
    background: rgba(0, 194, 129, 0.2);
    box-shadow: var(--shadow-hover);
    transform: translateY(-1px);
}
.footer-link-button[hidden] {
    display: none;
}
.footer-link {
    color: var(--color-text);
    text-decoration: underline;
    font-size: 0.95rem;
}
.footer-sections {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 1rem 5rem 0;
    gap: 1rem;
    text-align: left;
}
.footer-sections p {
    font-size: 0.85rem;
}

footer .footer-sections p + p {
    margin-top: 0.75rem;
}
footer p {
    font-size: 0.95rem;
    line-height: 1.4;
}
footer span {
    font-family: var(--font-body),sans-serif;
    font-size: 1.1em;
    font-weight: 700;
}

/*Mobile Optimisation*/
@media (max-width: 768px) {
    footer {
        flex-direction: column;
        width: 100%;
    }
    .footer-top {
        flex-direction: column;
        align-items: center;
    }
    .footer-brand {
        align-items: center;
        text-align: center;
    }
    .footer-logo {
        max-width: 35%;
    }
    .footer-links {
        align-items: center;
        text-align: center;
    }
    .footer-links__actions {
        align-items: center;
    }
    .footer-sections {
        flex-direction: column;
        padding: 1rem 1.5rem 0;
    }
}