/* =========================================================
   FOOTER
========================================================= */

.site-footer {

    position: relative;

    width: 100%;

    padding: 40px 32px 32px;

    background: #050505;

}


/* =========================================================
   GLASS CONTAINER
========================================================= */

.footer-glass {

    position: relative;

    width: min(1400px, 100%);

    margin: 0 auto;

    padding: 52px 55px 30px;

    border-radius: 38px;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.07),
            rgba(255,255,255,.025)
        ),
        rgba(8,8,8,.55);

    backdrop-filter:
        blur(24px)
        saturate(150%);

    -webkit-backdrop-filter:
        blur(24px)
        saturate(150%);

    border:
        1px solid rgba(255,255,255,.09);

    box-shadow:

        inset 0 1px 1px
        rgba(255,255,255,.06),

        inset 0 -1px 1px
        rgba(255,255,255,.02),

        0 20px 70px
        rgba(0,0,0,.4);

    overflow: hidden;
}


/* =========================================================
   GLASS HIGHLIGHT
========================================================= */

.footer-glass::before {

    content: "";

    position: absolute;

    top: 0;
    left: 4%;

    width: 92%;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.2),
            transparent
        );

    pointer-events: none;
}


/* =========================================================
   TOP
========================================================= */

.footer-top {

    display: flex;

    justify-content: space-between;

    gap: 80px;
}


/* =========================================================
   BRAND
========================================================= */

.footer-brand {

    min-width: 280px;
}


.footer-logo {

    display: inline-block;
}


.footer-logo img {

    display: block;

    width: 175px;

    height: auto;

    object-fit: contain;
}


.footer-brand p {

    margin: 25px 0 0;

    color: rgba(255,255,255,.4);

    font-size: 14px;

    line-height: 1.6;
}


/* =========================================================
   NAVIGATION
========================================================= */

.footer-navigation {

    display: grid;

    grid-template-columns:
        repeat(3, minmax(120px, 1fr));

    gap: 70px;

    min-width: 520px;
}


.footer-column {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 14px;
}


.footer-heading {

    margin-bottom: 10px;

    color: rgba(255,255,255,.28);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.7px;
}


.footer-column a {

    position: relative;

    color: rgba(255,255,255,.62);

    font-size: 13px;

    text-decoration: none;

    transition:
        color .3s ease,
        transform .3s ease;
}


.footer-column a:hover {

    color: #D8FF37;

    transform: translateX(4px);
}


/* =========================================================
   DIVIDER
========================================================= */

.footer-divider {

    width: 100%;

    height: 1px;

    margin: 48px 0;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.09),
            transparent
        );
}


/* =========================================================
   MIDDLE
========================================================= */

.footer-middle {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}


.footer-message {

    display: flex;

    align-items: center;

    gap: 10px;

    color: rgba(255,255,255,.28);

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 1.8px;
}


.footer-live-dot {

    width: 6px;

    height: 6px;

    border-radius: 50%;

    background: #D8FF37;

    box-shadow:
        0 0 12px
        rgba(216,255,55,.65);

    animation:
        footer-pulse 2s ease-in-out infinite;
}


@keyframes footer-pulse {

    0%,
    100% {
        opacity: .4;
    }

    50% {
        opacity: 1;
    }

}


/* =========================================================
   CONTACT BUTTON
========================================================= */

.footer-contact {

    display: inline-flex;

    align-items: center;

    gap: 18px;

    padding: 12px 16px 12px 20px;

    border-radius: 999px;

    background: #D8FF37;

    color: #050505;

    font-size: 12px;

    font-weight: 650;

    text-decoration: none;

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}


.footer-contact:hover {

    transform: translateY(-3px);

    box-shadow:
        0 10px 30px
        rgba(216,255,55,.18);
}


.footer-contact-arrow {

    width: 28px;

    height: 28px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: rgba(5,5,5,.1);

    font-size: 16px;

    transition:
        transform .3s ease;
}


.footer-contact:hover
.footer-contact-arrow {

    transform:
        translate(2px,-2px);
}


/* =========================================================
   BOTTOM
========================================================= */

.footer-bottom {

    display: grid;

    grid-template-columns:
        1fr auto 1fr;

    align-items: center;

    gap: 20px;

    color: rgba(255,255,255,.25);

    font-size: 9px;

    line-height: 1.5;
}


.footer-legal {

    display: flex;

    align-items: center;

    gap: 25px;
}


.footer-legal a {

    color: rgba(255,255,255,.3);

    text-decoration: none;

    transition:
        color .3s ease;
}


.footer-legal a:hover {

    color: #D8FF37;
}


.footer-location {

    text-align: right;

    letter-spacing: 1px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .site-footer {

        padding:
            30px 20px 20px;
    }


    .footer-glass {

        padding:
            45px 35px 28px;
    }


    .footer-top {

        gap: 50px;
    }


    .footer-navigation {

        min-width: 0;

        gap: 35px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .site-footer {

        padding:
            20px 16px 16px;
    }


    .footer-glass {

        padding:
            34px 24px 24px;

        border-radius: 28px;
    }


    .footer-top {

        flex-direction: column;

        gap: 55px;
    }


    .footer-brand {

        min-width: 0;
    }


    .footer-logo img {

        width: 150px;
    }


    .footer-brand p {

        margin-top: 18px;

        font-size: 13px;
    }


    .footer-navigation {

        width: 100%;

        grid-template-columns:
            repeat(2, 1fr);

        gap: 40px 25px;

        min-width: 0;
    }


    .footer-divider {

        margin: 38px 0;
    }


    .footer-middle {

        align-items: flex-start;

        flex-direction: column;

        gap: 22px;
    }


    .footer-contact {

        width: 100%;

        justify-content: space-between;
    }


    .footer-bottom {

        display: flex;

        flex-direction: column;

        align-items: flex-start;

        gap: 18px;
    }


    .footer-legal {

        gap: 20px;
    }


    .footer-location {

        text-align: left;
    }

}