/* =============================================================
   vXtream Site Footer styles
   ============================================================= */

.vxt-footer {
    background: #262626;
    color: #aaa;
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 1.6;
}

/* ── Main 4-column grid ── */
.vxt-footer-main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 50px 28px 40px;
    display: grid;
    grid-template-columns: 220px 1fr 1fr 1fr;
    gap: 50px;
    align-items: start;
}

/* ── Astronaut illustration column ── */
.vxt-footer-astronaut {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 10px;
}

.vxt-footer-astronaut img,
.vxt-footer-astronaut svg {
    max-width: 190px;
    width: 100%;
    height: auto;
}

/* ── Column headings ── */
.vxt-footer-col h3 {
    font: 700 13px Montserrat, Arial, Helvetica, sans-serif;
    color: #ffffff;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin: 0 0 20px;
    padding: 0;
}

.vxt-footer-col span:not(.vxt-footer-contact-row span) {
    margin: 0 0 20px 0;
}

/* ── Locations list ── */
.vxt-footer-locations {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vxt-footer-locations span,
.vxt-footer-locations a {
    color: #999;
    font-size: 15px;
    text-decoration: none;
    transition: color .15s;
    display: block;
}

.vxt-footer-locations span {
    margin: 0 0 20px 0;
}

.vxt-footer-locations a:hover {
    color: #1c8fc8;
}

/* ── Contact rows ── */
.vxt-footer-contact-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 13px;
    color: #888888;
    font-size: 16px;
    cursor: default;
    transition: color .15s;
}

.vxt-footer-contact-row .fa {
    font-size: 16px;
    color: #888888;
    flex-shrink: 0;
    margin-top: 3px;
    transition: color .15s;
    width: 16px;
    text-align: center;
}

.vxt-footer-contact-row a {
    color: #888888;
    text-decoration: none;
    transition: color .15s;
}

/* Hover: all text + icon turn white */
.vxt-footer-contact-row:hover a {
    color: #fff;
}

/* ── Security certification ── */
.vxt-bsi-badge {
    display: block;
    max-width: 150px;
    height: auto;
    margin-bottom: 14px;
}

.vxt-cert-number {
    color: #888;
    font-size: 14px;
    line-height: 1.5;
}

/* ── Bottom bar ── */
.vxt-footer-bottom {
    background: #1b1b1b;
    padding: 16px 28px;
}

.vxt-footer-bottom-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.vxt-footer-copyright {
    color: #666;
    font-size: 13px;
}

/* ── Social icons (flat, no border) ── */
.vxt-social-links {
    display: flex;
    gap: 22px;
    align-items: center;
}

.vxt-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
    text-decoration: none;
    transition: color .15s;
}

.vxt-social-link:hover {
    color: #fff;
    text-decoration: none;
}

.vxt-social-link i {
    font-size: 18px;
    display: block;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
    .vxt-footer-main {
        grid-template-columns: 160px 1fr 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 991px) {
    .vxt-footer-main {
        max-width: 420px;
        grid-template-columns: repeat(1, 1fr);
    }

    .vxt-footer-astronaut {
        grid-column: 1 / -1;
        justify-content: flex-start;
    }

    .vxt-footer-astronaut img,
    .vxt-footer-astronaut svg {
        max-width: 130px;
    }
}

@media (max-width: 575px) {
    .vxt-footer-main {
        grid-template-columns: 1fr;
    }

    .vxt-footer-astronaut {
        display: none;
    }

    .vxt-footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }
}