/* =========================================================
  ASA FOOTER
  ========================================================= */

.asa-footer {
    position: relative;
    overflow: hidden;

    background: #013a80;
}

.asa-footer__wave {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 0;

    width: 100%;
    height: 55%;

    pointer-events: none;
}

.asa-footer__wave-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 0;

    width: 100%;
    height: 28%;

    background: rgba(16, 38, 56, 0.3);
    pointer-events: none;
}

.asa-footer__inner {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 64px var(--gutter) 32px;
}

/* =========================================================
  FOOTER TOP
  ========================================================= */

.asa-footer__top {
    display: grid;
    grid-template-columns:
        minmax(230px, 2fr) repeat(4, minmax(120px, 1fr)) minmax(360px, 2fr);
    gap: 48px;

    margin-bottom: 28px;
    padding-bottom: 48px;

    border-bottom:
        0.5px solid rgba(232, 240, 240, 0.15);
}

/* =========================================================
  BRAND
  ========================================================= */

.asa-footer__brand {
    min-width: 0;
}

.asa-footer__logo {
    display: inline-flex;
    align-items: center;

    margin-bottom: 14px;

    color: #fff;
    text-decoration: none;
}

.asa-footer__logo svg {
    display: block;

    width: auto;
    height: 32px;
    max-width: 100%;
}

.asa-footer__logo svg path,
.asa-footer__logo svg polygon {
    fill: currentColor;
}

.asa-footer__tagline {
    margin: 0 0 18px;

    color: rgba(232, 240, 240, 0.75);

    font-size: 18px;
    line-height: 1.6;
}

.asa-footer__contacts {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.asa-footer__contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin: 0;

    color: rgba(232, 240, 240, 0.85);

    font-size: 17px;
    line-height: 1.5;
    text-decoration: none;

    transition: color 0.2s ease;
}

a.asa-footer__contact:hover {
    color: #fff;
}

.asa-footer__contact i {
    flex: 0 0 auto;

    color: #f0f4f8;
    font-size: 16px;
}

.asa-footer__socials {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;

    margin-top: 20px;
}

.asa-footer__social {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 36px;
    height: 36px;

    border:
        0.5px solid rgba(232, 240, 240, 0.25);
    border-radius: 4px;

    color: rgba(232, 240, 240, 0.65);

    font-size: 16px;
    text-decoration: none;

    transition:
        color 0.2s ease,
        border-color 0.2s ease,
        background-color 0.2s ease,
        transform 0.2s ease;
}

.asa-footer__social:hover {
    border-color: #f0f4f8;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;

    transform: translateY(-2px);
}

/* =========================================================
  NAVIGATION COLUMNS
  ========================================================= */

.asa-footer__column {
    min-width: 0;
}

.asa-footer__column-title {
    margin: 0 0 16px;

    color: #f0f4f8;

    font-size: 17px;
    font-weight: 500;
    letter-spacing: 2px;
    line-height: 1.4;
    text-transform: uppercase;
}

.asa-footer__links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.asa-footer__link {
    display: inline-block;

    margin-bottom: 11px;

    color: rgba(232, 240, 240, 0.8);

    font-size: 17px;
    line-height: 1.45;
    text-decoration: none;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.asa-footer__link:last-child {
    margin-bottom: 0;
}

.asa-footer__link:hover {
    color: #fff;
    transform: translateX(2px);
}


.asa-footer__column--group {
    min-width: 360px;
}

.asa-footer__links--group {
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(5, auto);
    grid-auto-columns: minmax(120px, 1fr);
    align-items: start;
    gap: 0 16px;
}

.asa-footer__links--group .asa-footer__link {
    margin-bottom: 11px;
    white-space: nowrap;
}

/* =========================================================
  FOOTER BOTTOM
  ========================================================= */

.asa-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.asa-footer__copyright {
    margin: 0;

    color: rgba(232, 240, 240, 0.55);

    font-size: 15px;
    line-height: 1.5;
}

.asa-footer__legal {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.asa-footer__legal-link {
    color: rgba(232, 240, 240, 0.55);

    font-size: 15px;
    line-height: 1.5;
    text-decoration: none;

    transition: color 0.2s ease;
}

.asa-footer__legal-link:hover {
    color: rgba(255, 255, 255, 0.9);
}