/* =========================
   FOOTER BASE
========================= */

.sago-footer {
    background: #172035;
    color: var(--sago-white);
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}

.sago-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(220,53,11,0.04) 0%, transparent 70%);
    pointer-events: none;
}

.sago-footer > * {
    position: relative;
    z-index: 1;
}

/* TRUST STRIP */
.sago-trust-strip {
    background: #070c17;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.sago-trust-strip .ast-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 19px;
    text-align: center;
}

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    color: #e5e7eb;
    transition: transform 0.3s;
    padding: 10px 12px;
}

.trust-item i {
    font-size: 22px;
    transition: transform 0.3s, color 0.3s;
}

.trust-item:hover {
    transform: translateY(-4px);
}

.trust-item:hover i {
    transform: scale(1.2);
    color: var(--sago-primary);
}

/* MAIN FOOTER GRID */
.sago-footer-main {
    padding: 2rem 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 2fr);
    gap: 30px;
}

/* FOOTER COLUMNS */
.footer-col h3,
.footer-col h4 {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
    color: var(--sago-white);
    position: relative;
    display: inline-block;
}

.footer-col h3::after,
.footer-col h4::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--sago-primary);
    transition: width 0.35s;
}

.footer-col:hover h3::after,
.footer-col:hover h4::after {
    width: 100%;
}

.footer-col p {
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.5;
}

.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-col li {
    margin-bottom: 1px;
}

.footer-col li a {
    color: #cbd5e1;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s, transform 0.3s;
    display: inline-block;
}

.footer-col li a::before {
    content: "\f0da";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 8px;
    color: var(--sago-primary);
    font-size: 12px;
}

.footer-col li a:hover {
    color: var(--sago-white);
    transform: translateX(5px);
}

/* SOCIAL ICONS */
.social {
    display: flex;
    gap: 14px;
    margin-top: 20px;
}

.social a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1f2937;
    border-radius: 50%;
    color: var(--sago-white);
    font-size: 18px;
    transition: background 0.3s, transform 0.3s;
}

.social a:hover {
    background: var(--sago-primary);
    transform: translateY(-5px);
}

/* BOTTOM BAR */
.sago-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 14px 7px;
    background: #0e1320;
}

.sago-footer-bottom .ast-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.payments {
    display: flex;
    gap: 16px;
}

.payments i {
    font-size: 22px;
    color: #94a3b8;
    transition: color 0.3s, transform 0.3s;
}

.payments i:hover {
    color: var(--sago-white);
    transform: scale(1.2);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .sago-trust-strip .ast-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .footer-col h3::after,
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social {
        justify-content: center;
    }

    .sago-footer-bottom .ast-container {
        flex-direction: column;
        text-align: center;
margin-bottom:63px;
    }

    .payments {
        justify-content: center;
    }
}