
/* =====================FOOOOOOOOOOTTTER=========================== */
/* =====================FOOOOOOOOOOTTTER=========================== */
/* =====================FOOOOOOOOOOTTTER=========================== */
/* =====================FOOOOOOOOOOTTTER=========================== */


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    position: relative;

    background: #111c2b;
    color: #ffffff;

    overflow: hidden;
}


/* =========================================================
   BACKGROUND DETAILS
========================================================= */

.site-footer::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    top: -250px;
    right: -180px;

    border: 1px solid rgba(240, 136, 37, 0.10);

    border-radius: 50%;

    pointer-events: none;
}


.site-footer::after {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    bottom: -180px;
    left: -150px;

    background: rgba(240, 136, 37, 0.035);

    border-radius: 50%;

    pointer-events: none;
}


/* =========================================================
   MAIN FOOTER
========================================================= */

.footer-main {
    position: relative;

    z-index: 1;

    padding: 75px 40px 65px;
}


.footer-container {
    width: 100%;
    max-width: 1400px;

    margin: 0 auto;

    display: grid;

    /*
       Company | Menu | Locations
    */
    grid-template-columns:
        1fr
        0.65fr
        2.5fr;

    gap: 60px;

    box-sizing: border-box;
}


/* =========================================================
   COMPANY
========================================================= */

.footer-company {
    padding-right: 10px;
}


.footer-logo {
    display: inline-flex;

    align-items: center;

    margin-bottom: 25px;
}


.footer-logo img {
    width: 145px;
    height: auto;

    display: block;
}


.footer-description {
    max-width: 390px;

    margin: 0 0 24px;

    color: #aeb8c5;

    font-size: 15px;
    line-height: 1.9;

    font-weight: 400;
}


.footer-about-link {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    color: #ffffff;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    transition: 0.3s ease;
}


.footer-about-link span {
    color: #e63946;

    font-size: 19px;

    transition: transform 0.3s ease;
}


.footer-about-link:hover {
    color: #e63946;
}


.footer-about-link:hover span {
    transform: translateX(5px);
}


/* =========================================================
   HEADINGS
========================================================= */

.footer-menu h3,
.footer-locations h3,
.footer-contact h3 {
    position: relative;

    margin: 7px 0 28px;

    padding-bottom: 15px;

    color: #ffffff;

    font-size: 20px;
    font-weight: 800;

    letter-spacing: 0.2px;
}


.footer-menu h3::after,
.footer-locations h3::after,
.footer-contact h3::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 38px;
    height: 2px;

    background: #e63946;
}


/* =========================================================
   SITE MENU
========================================================= */

.footer-menu ul {
    list-style: none;

    margin: 0;
    padding: 0;
}


.footer-menu li {
    margin-bottom: 13px;
}


.footer-menu a {
    position: relative;

    color: #aeb8c5;

    font-size: 14px;
    font-weight: 500;

    text-decoration: none;

    transition:
        color 0.3s ease,
        padding-left 0.3s ease;
}


.footer-menu a::before {
    content: "";

    position: absolute;

    left: -15px;
    top: 50%;

    width: 5px;
    height: 5px;

    background: #e63946;

    border-radius: 50%;

    opacity: 0;

    transform: translateY(-50%);

    transition: opacity 0.3s ease;
}


.footer-menu a:hover {
    color: #ffffff;

    padding-left: 5px;
}


.footer-menu a:hover::before {
    opacity: 1;
}


/* =========================================================
   RIGHT SIDE
========================================================= */

.footer-right {
    min-width: 0;
}


/* =========================================================
   LOCATIONS GRID
========================================================= */

.locations-grid {
    width: 100%;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 25px;

    box-sizing: border-box;
}


/* =========================================================
   LOCATION
========================================================= */

.footer-location {
    display: flex;

    align-items: flex-start;

    gap: 10px;

    min-width: 0;

    margin: 0;
}


.location-number {
    flex-shrink: 0;

    color: #e63946;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1px;

    padding-top: 2px;
}


.footer-location h4 {
    margin: 0 0 7px;

    color: #ffffff;

    font-size: 14px;
    font-weight: 800;
}


.footer-location p {
    max-width: 100%;

    margin: 0;

    color: #9faab8;

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================================
   CONTACT
========================================================= */

.footer-contact {
    width: 100%;

    margin-top: 45px;

    padding-top: 30px;

    border-top: 1px solid rgba(255, 255, 255, 0.08);

    display: flex;

    align-items: center;

    gap: 25px;

    flex-wrap: wrap;
}


.footer-contact h3 {
    margin: 0;

    padding-bottom: 15px;

    min-width: 130px;
}


.contact-label {
    margin: 0;

    color: #7f8c9c;

    font-size: 11px;
    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1.5px;
}


.footer-email {
    color: #ffffff;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;

    transition: color 0.3s ease;
}


.footer-email:hover {
    color: #e63946;
}


/* =========================================================
   CONTACT BUTTON
========================================================= */

.footer-contact-button {
    display: inline-flex;

    align-items: center;
    justify-content: space-between;

    width: 190px;

    padding: 14px 17px;

    box-sizing: border-box;

    border: 1px solid #e63946;

    color: #ffffff;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease;
}


.footer-contact-button span {
    color: #e63946;

    font-size: 17px;

    transition: transform 0.3s ease;
}


.footer-contact-button:hover {
    background: #e63946;

    border-color: #e63946;

    color: #111c2b;
}


.footer-contact-button:hover span {
    color: #111c2b;

    transform: translate(3px, -3px);
}


/* =========================================================
   BOTTOM FOOTER
========================================================= */

.footer-bottom {
    position: relative;

    z-index: 2;

    border-top: 1px solid rgba(255, 255, 255, 0.08);

    padding: 20px 40px;
}


.footer-bottom-container {
    max-width: 1400px;

    margin: 0 auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}


.footer-bottom p {
    margin: 0;

    color: #7f8b99;

    font-size: 12px;

    line-height: 1.6;
}


.footer-bottom a {
    color: #c5ccd5;

    font-weight: 700;

    text-decoration: none;

    transition: color 0.3s ease;
}


.footer-bottom a:hover {
    color: #e63946;
}


/* =========================================================
   LARGE TABLET
========================================================= */

@media (max-width: 1200px) {

    .footer-container {
        grid-template-columns:
            1fr
            0.7fr
            2fr;

        gap: 40px;
    }

    .locations-grid {
        grid-template-columns: repeat(2, 1fr);

        row-gap: 35px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .footer-main {
        padding: 60px 30px 50px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;

        gap: 50px 35px;
    }

    .footer-right {
        grid-column: 1 / -1;
    }

    .locations-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 35px 30px;
    }

    .footer-contact {
        margin-top: 40px;
    }

}


/* =========================================================
   SMALL TABLET / MOBILE
========================================================= */

@media (max-width: 650px) {

    .footer-main {
        padding: 55px 22px 40px;
    }

    .footer-container {
        grid-template-columns: 1fr;

        gap: 42px;
    }

    .footer-right {
        grid-column: auto;
    }

    .locations-grid {
        grid-template-columns: 1fr;

        gap: 28px;
    }

    .footer-location p {
        max-width: 400px;
    }

    .footer-contact {
        align-items: flex-start;

        flex-direction: column;

        gap: 14px;

        margin-top: 35px;

        padding-top: 25px;
    }

    .footer-contact h3 {
        margin: 0 0 5px;
    }

    .footer-contact-button {
        width: 190px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .footer-main {
        padding-left: 18px;
        padding-right: 18px;
    }

    .footer-logo img {
        width: 130px;
    }

    .footer-description {
        font-size: 13px;
    }

    .footer-location {
        gap: 10px;
    }

    .footer-location p {
        font-size: 12px;
    }

    .footer-bottom {
        padding-left: 18px;
        padding-right: 18px;
    }

    .footer-bottom-container {
        flex-direction: column;

        align-items: flex-start;

        gap: 6px;
    }

}