/* =========================================================
   HOLS-FIELD NIG. LTD.
   GLOBAL FOOTER
   ========================================================= */

.site-footer {
    position: relative;
    width: 100%;
    background: #030303;
    color: #ffffff;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.06);
}


/* =========================================================
   SUBTLE BACKGROUND GLOW
   ========================================================= */

.site-footer::before {
    content: "";
    position: absolute;

    width: 600px;
    height: 500px;

    top: -220px;
    right: -180px;

    background: radial-gradient(
        circle,
        rgba(255,121,0,0.10) 0%,
        rgba(255,121,0,0.035) 38%,
        transparent 72%
    );

    pointer-events: none;
}


/* =========================================================
   MAIN FOOTER CONTAINER
   ========================================================= */

.footer-container {
    position: relative;
    z-index: 2;

    width: min(1250px, 88%);
    margin: 0 auto;

    padding: 75px 0 65px;

    display: grid;

    grid-template-columns:
        1.35fr
        0.8fr
        0.95fr
        1.2fr;

    gap: 65px;

    align-items: start;
}


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

.footer-company {
    max-width: 350px;
}


.footer-logo {
    display: inline-flex;
    align-items: flex-start;

    color: #ffffff;

    font-family: "Poppins", sans-serif;

    font-size: 28px;
    font-weight: 900;

    line-height: 1;

    letter-spacing: -1px;

    text-decoration: none;

    margin-bottom: 25px;
}


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


.footer-logo small {
    display: block;

    margin-left: 0;
    margin-top: 7px;

    color: rgba(255,255,255,0.42);

    font-size: 7px;
    font-weight: 700;

    letter-spacing: 3px;
}


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

    margin: 0;

    color: #858585;

    font-family: "Poppins", sans-serif;

    font-size: 13px;
    line-height: 1.8;
}


/* =========================================================
   SOCIAL ICONS
   ========================================================= */

.footer-socials {
    display: flex;

    gap: 12px;

    margin-top: 27px;
}


.footer-socials a {
    width: 40px;
    height: 40px;

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

    border: 1px solid rgba(255,255,255,0.14);

    border-radius: 50%;

    color: #ffffff;

    text-decoration: none;

    transition:
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}


.footer-socials a:hover {
    color: #ff7900;

    border-color: #ff7900;

    transform: translateY(-3px);
}


/* =========================================================
   FOOTER COLUMNS
   ========================================================= */

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


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

    color: #ffffff;

    font-family: "Poppins", sans-serif;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 2.5px;

    text-transform: uppercase;
}


.footer-column > a {
    width: fit-content;

    margin-bottom: 14px;

    color: #777777;

    font-family: "Poppins", sans-serif;

    font-size: 12px;
    line-height: 1.5;

    text-decoration: none;

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


.footer-column > a:hover {
    color: #ff7900;

    transform: translateX(4px);
}


/* =========================================================
   CONTACT COLUMN
   ========================================================= */

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


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


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

    margin-bottom: 9px;

    color: #aaaaaa;

    font-family: "Poppins", sans-serif;

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;
}


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

    margin: 0;

    color: #777777;

    font-family: "Poppins", sans-serif;

    font-size: 12px;
    line-height: 1.7;
}


.footer-contact-block p i {
    flex: 0 0 18px;

    width: 18px;

    margin-top: 3px;
    margin-right: 7px;

    color: #ff7900;
}


.footer-contact-block a {
    color: #777777;

    font-size: 12px;

    text-decoration: none;

    transition: color 0.25s ease;
}


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


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

.footer-bottom {
    position: relative;
    z-index: 2;

    width: min(1250px, 88%);

    min-height: 70px;

    margin: 0 auto;

    padding: 22px 0;

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

    display: flex;

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

    gap: 25px;

    color: #777777;

    font-family: "Poppins", sans-serif;

    font-size: 10px;
}


.footer-bottom p {
    margin: 0;

    color: #777777;

    font-size: 10px;
}


.footer-bottom > div {
    display: flex;

    align-items: center;

    gap: 10px;

    flex-wrap: wrap;
}


.footer-bottom a {
    color: #666666;

    font-size: 10px;

    text-decoration: none;

    transition: color 0.25s ease;
}


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


.footer-bottom > div > span {
    color: #ff7900;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .footer-container {
        grid-template-columns: 1fr 1fr;

        gap: 50px;
    }

}


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

@media (max-width: 650px) {

    .footer-container {
        width: 88%;

        padding: 60px 0 45px;

        grid-template-columns: 1fr;

        gap: 40px;
    }


    .footer-company {
        max-width: 100%;
    }


    .footer-company > p {
        max-width: 100%;
    }


    .footer-bottom {
        width: 88%;

        min-height: auto;

        padding: 22px 0 28px;

        flex-direction: column;

        align-items: flex-start;

        gap: 15px;
    }


    .footer-bottom > div {
        gap: 8px;
    }

}