/* =====================================================
   HOLS-FIELD FOOTER
===================================================== */

.footer {
    padding: 70px 6% 30px;

    background: #030303;

    border-top:
        1px solid rgba(255,255,255,.07);

    text-align: left;
}

.footer-title {
    font-family: 'Space Grotesk', sans-serif;

    font-size: 24px;

    color: #ffffff;

    margin-bottom: 12px;
}

.footer-subtitle {
    color: #ff6a00;

    font-size: 10px;

    letter-spacing: 2px;

    margin-bottom: 25px;
}

.footer-desc {
    max-width: 650px;

    color: #777;

    font-size: 12px;

    line-height: 1.9;

    margin-bottom: 45px;
}

.footer-copy {
    padding-top: 25px;

    border-top:
        1px solid rgba(255,255,255,.06);

    color: #555;

    font-size: 9px;
}

/* =====================================================
   WHATSAPP
===================================================== */

.whatsapp {
    position: fixed;

    right: 25px;
    bottom: 25px;

    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #25d366;

    color: #ffffff;

    font-size: 22px;

    z-index: 2000;

    box-shadow:
        0 8px 30px rgba(37,211,102,.25);

    transition: .3s ease;
}

.whatsapp:hover {
    transform: translateY(-4px) scale(1.05);
}

@media (max-width: 600px) {

    .footer {
        padding: 55px 5% 25px;
    }

    .whatsapp {
        right: 18px;
        bottom: 18px;

        width: 45px;
        height: 45px;
    }

}
/* =========================================================
   HOLS-FIELD — GLOBAL FOOTER FIX
   Applies to every page using .site-footer
========================================================= */

.site-footer {
    position: relative;
    width: 100%;
    padding: 65px 5% 0;
    background: #030303;
    color: #fff;
    border-top: 1px solid rgba(255,255,255,.07);
}

.footer-container {
    width: min(1400px, 100%);
    margin: 0 auto;

    display: grid;
    grid-template-columns:
        1.4fr
        1fr
        1fr
        1.2fr;

    gap: 55px;
    padding-bottom: 55px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: inline-block;
    width: fit-content;

    margin-bottom: 18px;

    color: #fff;
    text-decoration: none;

    font-family: "Space Grotesk", sans-serif;
    font-size: 23px;
    font-weight: 700;
    letter-spacing: -.7px;
}

.footer-logo span {
    color: #ff6a00;
}

.footer-logo small {
    display: block;
    margin-top: 5px;

    color: rgba(255,255,255,.42);

    font-family: "Inter", sans-serif;
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 2px;
}

.footer-company > p {
    max-width: 330px;

    margin: 0;

    color: #777;
    font-family: "Inter", sans-serif;
    font-size: 11px;
    line-height: 1.8;
}

.footer-column h3 {
    margin: 3px 0 23px;

    color: #fff;

    font-family: "Inter", sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-column > a {
    margin-bottom: 12px;

    color: #777;

    font-family: "Inter", sans-serif;
    font-size: 10px;

    text-decoration: none;

    transition: .25s ease;
}

.footer-column > a:hover {
    color: #ff6a00;
    transform: translateX(3px);
}


/* CONTACT */

.footer-contact-block {
    margin-bottom: 18px;
}

.footer-contact-block strong {
    display: block;

    margin-bottom: 7px;

    color: #aaa;

    font-family: "Inter", sans-serif;
    font-size: 8px;
    letter-spacing: 1.4px;
}

.footer-contact-block p {
    display: flex;
    align-items: flex-start;
    gap: 10px;

    margin: 0;

    color: #777;

    font-family: "Inter", sans-serif;
    font-size: 10px;
    line-height: 1.65;
}

.footer-contact-block i {
    width: 15px;
    margin-top: 2px;

    color: #ff6a00;
}

.footer-contact-block a {
    color: #777;
    text-decoration: none;
}

.footer-contact-block a:hover {
    color: #ff6a00;
}


/* BOTTOM BAR */

.footer-bottom {
    width: min(1400px, 100%);
    min-height: 65px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    border-top: 1px solid rgba(255,255,255,.07);
}

.footer-bottom p,
.footer-bottom a {
    color: #555;

    font-family: "Inter", sans-serif;
    font-size: 9px;

    text-decoration: none;
}

.footer-bottom a:hover {
    color: #ff6a00;
}

.footer-bottom span {
    color: #ff6a00;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 900px) {

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 45px;
    }

    .footer-bottom {
        padding: 22px 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}


@media (max-width: 600px) {

    .site-footer {
        padding: 55px 5% 0;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
        padding-bottom: 40px;
    }

    .footer-company > p {
        max-width: 300px;
    }

    .footer-bottom {
        min-height: auto;
        padding: 22px 0;
    }
}