/* FOOTER */
.site-footer {
    width: 100%;
    background: linear-gradient(160deg, #12285f 0%, #0c1c44 46%, #081228 100%);
    color: #ffffff;
    position: relative;
}

.site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.09);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 70px 45px;

    display: grid;
    grid-template-columns: 1.2fr 0.65fr 0.65fr 1.25fr;
    gap: 60px;
}

/* LOGO AREA */
.footer-logo img {
    width: 245px;
    max-height: 90px;
    object-fit: contain;
    display: block;

    filter: brightness(0) invert(1);
}

.footer-tagline {
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    font-style: italic;
}

.footer-register {
    margin-top: 30px;
}

.footer-register span {
    display: block;
    margin-bottom: 14px;

    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-register-btn {
    width: fit-content;
    height: 52px;
    padding: 0 28px;

    background: #b4070b;
    color: #ffffff;
    text-decoration: none;

    border-radius: 10px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    font-size: 15px;
    font-weight: 800;

    box-shadow: 0 10px 24px rgba(180, 7, 11, 0.28);
    transition: 0.25s ease;
}

.footer-register-btn:hover {
    background: #d61f26;
    transform: translateY(-2px);
}

/* COLUMNS */
.footer-column h3 {
    margin-bottom: 24px;

    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-column a {
    display: block;
    margin-bottom: 16px;

    color: #ffffff;
    text-decoration: none;

    font-size: 16px;
    line-height: 1.35;
    font-weight: 400;

    transition: 0.2s ease;
}

.footer-column a:hover {
    color: #d61f26;
}

/* CONTACT GROUPS */
.footer-contact-group {
    margin-bottom: 16px;
}

.footer-contact-label {
    display: block;
    margin-bottom: 5px;

    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
    line-height: 1.35;
    font-weight: 700;
}

.footer-contact-group a {
    margin-bottom: 0;

    color: #ffffff;
    font-size: 15px;
    line-height: 1.4;
    word-break: break-word;
}

/* LOCATION BUTTON */
.footer-review-btn {
    width: fit-content;
    height: 48px;
    margin-top: 12px;
    padding: 0 24px;

    background: #1d73e8;
    color: #ffffff !important;

    border-radius: 9px;

    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;

    font-size: 15px !important;
    font-weight: 800 !important;

    box-shadow: 0 10px 24px rgba(29, 115, 232, 0.25);
}

.footer-review-btn:hover {
    background: #b4070b;
    color: #ffffff !important;
    transform: translateY(-2px);
}

/* BOTTOM */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 20px 45px;
}

.footer-bottom p {
    max-width: 1200px;
    margin: 0 auto;

    color: rgba(255, 255, 255, 0.58);
    font-size: 14px;
    line-height: 1.5;
}

/* TABLET */
@media (max-width: 1000px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 45px;
        padding: 60px 28px;
    }
}

/* MOBILE */
@media (max-width: 650px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 38px;
        padding: 55px 22px;
    }

    .footer-logo img {
        width: 220px;
    }

    .footer-column a {
        font-size: 15px;
    }

    .footer-bottom {
        padding: 18px 22px;
    }

    .footer-bottom p {
        font-size: 13px;
    }
}