﻿.site-footer {
    position: relative;
    color: #fff;
    padding: 80px 0 26px;
    overflow: hidden;
    background: linear-gradient(90deg, rgba(6,22,36,.92) 0%, rgba(6,22,36,.78) 55%, rgba(6,22,36,.92) 100%), url('../Content/Images/banner-img4.jpg'); /* ✅ replace */
    background-size: cover;
    background-position: center;
}

.footer-wrap {
    position: relative;
    z-index: 1;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    gap: 40px;
    max-width: 980px;
    margin: 0 auto;
}

.footer-col h4 {
    margin: 0 0 14px;
    font-size: 18px;
    font-weight: 900;
}

.footer-col a {
    display: block;
    color: rgba(255,255,255,.84);
    text-decoration: none;
    font-weight: 600;
    margin: 10px 0;
    font-size: 14px;
}

    .footer-col a:hover {
        color: #fff;
        text-decoration: underline;
    }

.footer-col p {
    margin: 10px 0 0;
    color: rgba(255,255,255,.84);
    font-weight: 600;
    line-height: 1.8;
    font-size: 14px;
}

.footer-link {
    color: #fff;
    font-weight: 900;
    text-decoration: none;
}

    .footer-link:hover {
        text-decoration: underline;
    }

/* Social */
.footer-social {
    margin: 34px 0 26px;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.soc {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.20);
    background: rgba(255,255,255,.07);
    color: #fff;
    text-decoration: none;
    font-weight: 900;
    font-size: 13px;
}

    .soc:hover {
        background: rgba(105,182,255,.18);
        border-color: rgba(105,182,255,.30);
    }

/* Stripe bar */
.footer-bar {
    margin: 0 auto;
    max-width: 1180px;
    background: rgba(10,38,60,.55);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 10px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bar-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.bar-big {
    font-weight: 900;
    font-size: 22px;
}

.bar-text {
    color: rgba(255,255,255,.86);
    font-weight: 600;
    font-size: 13px;
}

.bar-green {
    color: #27d17c;
    font-weight: 900;
}

.bar-badge {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
}

    /* simple leaf badge */
    .bar-badge .leaf {
        width: 22px;
        height: 22px;
        border-radius: 14px 14px 14px 0;
        background: linear-gradient(135deg,#ffd000,#22d57d);
        transform: rotate(25deg);
        display: block;
    }

/* Info cards */
.footer-cards {
    margin: 26px auto 0;
    max-width: 1180px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.fcard {
    background: rgba(10,38,60,.55);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 10px;
    padding: 18px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.ficon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.14);
    display: grid;
    place-items: center;
    font-size: 18px;
    font-weight: 900;
}

.fsmall {
    color: rgba(255,255,255,.75);
    font-weight: 800;
    font-size: 13px;
}

.fbig {
    margin-top: 4px;
    font-weight: 900;
    font-size: 18px;
}

/* Bottom */
.footer-bottom {
    margin-top: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 16px;
}

.bottom-links a {
    color: rgba(255,255,255,.80);
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
}

    .bottom-links a:hover {
        color: #fff;
        text-decoration: underline;
    }

.sep {
    margin: 0 10px;
    color: rgba(255,255,255,.35);
}

.bottom-copy {
    color: rgba(255,255,255,.70);
    font-weight: 700;
    font-size: 13px;
}

/* Responsive */
@media (max-width: 980px) {
    .footer-top {
        grid-template-columns: 1fr;
        max-width: 520px;
    }

    .footer-cards {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}
