/**
 * BussJets / Hawker 800 — Footer navy
 */

.footer {
    background: #001f3f;
    width: 100%;
    padding: clamp(2.5rem, 5vw, 3.75rem) clamp(1.25rem, 4vw, 3rem);
    color: #ffffff;
    font-family: 'Montserrat', 'Helvetica Neue', sans-serif;
    box-sizing: border-box;
    border-top: none;
}

.footer * {
    box-sizing: border-box;
}

.footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(2rem, 4vw, 2.75rem);
}

@media (min-width: 900px) {
    .footer__inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 2rem;
    }
}

.footer__left {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1 1 0;
    order: 2;
}

@media (min-width: 900px) {
    .footer__left {
        align-items: flex-start;
        order: 0;
    }
}

.footer__legal {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    text-align: center;
}

@media (min-width: 900px) {
    .footer__legal {
        align-items: flex-start;
        text-align: left;
    }
}

.footer__legal a,
.footer__legal li {
    font-size: clamp(0.88rem, 1.05vw, 1rem);
    font-weight: 400;
    color: #ffffff;
    text-decoration: none;
    line-height: 1.45;
}

.footer__legal a:hover {
    text-decoration: underline;
}

.footer__center {
    display: flex;
    justify-content: center;
    align-items: center;
    order: 1;
    flex: 0 0 auto;
}

@media (min-width: 900px) {
    .footer__center {
        order: 0;
    }
}

.footer__logo-link {
    display: block;
    line-height: 0;
}

.footer__logo {
    width: clamp(9.5rem, 16vw, 13rem);
    height: auto;
    display: block;
}

.footer__right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    flex: 1 1 0;
    order: 3;
}

@media (min-width: 900px) {
    .footer__right {
        align-items: flex-end;
        order: 0;
    }
}

.footer__socials {
    display: flex;
    align-items: center;
    gap: clamp(0.65rem, 1.2vw, 0.85rem);
}

.footer__socials a {
    display: block;
    line-height: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer__socials a:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}

.footer__socials img {
    width: clamp(2.1rem, 3.5vw, 2.55rem);
    height: auto;
    display: block;
}

.footer__emails {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    text-align: center;
}

@media (min-width: 900px) {
    .footer__emails {
        align-items: flex-end;
        text-align: right;
    }
}

.footer__emails a {
    color: #ffffff;
    text-decoration: none;
    font-size: clamp(0.88rem, 1.05vw, 1rem);
    line-height: 1.45;
}

.footer__emails a:hover {
    text-decoration: underline;
}
