.site-footer {
    background-color: var(--color-primary);
    /* Steelix dark blue */
    color: var(--color-light);
    ;
    padding: 120px 0 0 0;
    font-family: inherit;
    position: relative;
    overflow: hidden;
}

/* Large background watermark text like Steelix */
.site-footer::after {
    content: 'Flexico';
    position: absolute;
    bottom: 20px;
    right: -20px;
    font-size: 250px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    z-index: 0;
    pointer-events: none;
}

.footer-top {
    padding-bottom: 120px;
    position: relative;
    z-index: 1;
}

/* Left Column */
.footer-logo img {
    max-width: 150px;
    margin-bottom: 40px;
}

.footer-heading {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.footer-separator {
    width: 30px;
    height: 3px;
    background-color: var(--color-secondary);
    /* MTF Orange accent */
    margin-bottom: 20px;
}

.footer-subtext {
    font-size: 16px;
    opacity: 70%;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Right Column (Info Grid) */
.footer-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 40px;
    column-gap: 30px;
    margin-bottom: 50px;
}

.footer-info-item span {
    display: block;
    opacity: 70%;
    margin-bottom: 6px;
}

.footer-info-item p,
.footer-info-item a {
    color: var(--color-light);
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    margin: 0;
    display: block;
}

.footer-info-item a:hover {
    color: var(--color-secondary);
}

/* Page Links */
.footer-links-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

.footer-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 30px;
}

.footer-menu ul li a {
    color: color-mix(in srgb, var(--color-light) 70%, transparent);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-menu ul li a:hover {
    color: var(--color-secondary);
}

/* Bottom Bar */
.footer-bottom {
    background-color: var(--color-primary);
    border-top: 1px solid color-mix(in srgb, var(--color-light) 20%, transparent);
    padding: 24px 0;
    position: relative;
    z-index: 1;
    border-top: 1px solid color-mix(in srgb, var(--color-light, #ffffff) 30%, transparent);
}

.footer-copyright {
    opacity: 70%;
    margin: 0;
}

.footer-copyright span {
    font-weight: 500;
}

.footer-social-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}

.footer-social-text {
    font-weight: 500;
    margin-right: 10px;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: var(--color-light);
    border: 1px solid var(--color-light);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.footer-social-link:hover {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
}

/* Overlapping Scroll Top Button */
.footer-scroll-top {
    position: fixed;
    bottom: 100px;
    right: 36px;
    width: 48px;
    height: 48px;
    background-color: var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: background 0.3s ease;
    z-index: 10;
    color: #000;
}