
/* ── Footer Reset & Base ── */
.bso-footer {
    background: linear-gradient(180deg, #1a2340 0%, #0f1729 100%);
    color: #c8d1e0;
    position: relative;
    overflow: hidden;
}
.bso-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #06d6a0, #ffd60a, #2563eb);
    background-size: 300% 100%;
    animation: footerGradient 6s ease infinite;
}
@keyframes footerGradient {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ── Top Section ── */
.bso-footer-top {
    padding: 60px 0 45px;
}

/* ── Brand Column ── */
.bso-footer .footer-logo-box {
    background: #fff;
    border-radius: 12px;
    padding: 12px 18px;
    display: inline-block;
    margin-bottom: 18px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.bso-footer .footer-logo-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37,99,235,.18);
}
.bso-footer .footer-logo-box img {
    height: 38px;
    width: auto;
}
.bso-footer .footer-tagline {
    font-size: 14px;
    line-height: 1.7;
    color: #8896ab;
    margin-bottom: 22px;
    max-width: 280px;
}

/* ── Contact Items ── */
.bso-footer .footer-contact {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}
.bso-footer .footer-contact li {
    margin-bottom: 12px;
}
.bso-footer .footer-contact li a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #c0c9d8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.25s;
}
.bso-footer .footer-contact li a:hover {
    color: #60a5fa;
}
.bso-footer .footer-contact li a svg {
    flex-shrink: 0;
    width: 17px; height: 17px;
    fill: #60a5fa;
}

/* ── Social Icons ── */
.bso-footer .social-row {
    display: flex;
    gap: 10px;
}
.bso-footer .social-row a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px; height: 38px;
    border-radius: 10px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    transition: all 0.3s;
}
.bso-footer .social-row a:hover {
    background: #2563eb;
    border-color: #2563eb;
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(37,99,235,.3);
}
.bso-footer .social-row a svg {
    width: 16px; height: 16px;
    fill: #8896ab;
    transition: fill 0.3s;
}
.bso-footer .social-row a:hover svg {
    fill: #fff;
}

/* ── Column Headings ── */
.bso-footer .ftr-heading {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 22px;
    padding-bottom: 10px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.bso-footer .ftr-heading::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 28px; height: 3px;
    background: linear-gradient(90deg, #2563eb, #06d6a0);
    border-radius: 2px;
}

/* ── Link Lists ── */
.bso-footer .ftr-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.bso-footer .ftr-links li {
    margin-bottom: 11px;
}
.bso-footer .ftr-links li a {
    color: #8896ab;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.25s, padding-left 0.25s;
    display: inline-block;
}
.bso-footer .ftr-links li a:hover {
    color: #60a5fa;
    padding-left: 5px;
}

/* ── CTA Box ── */
.bso-footer .footer-cta-box {
    background: linear-gradient(135deg, rgba(37,99,235,.12), rgba(6,214,160,.06));
    border: 1px solid rgba(37,99,235,.18);
    border-radius: 14px;
    padding: 26px 24px;
    margin-bottom: 28px;
}
.bso-footer .footer-cta-box h4 {
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 6px;
}
.bso-footer .footer-cta-box p {
    color: #8896ab;
    font-size: 13.5px;
    margin: 0 0 16px;
    line-height: 1.5;
}
.bso-footer .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff !important;
    padding: 11px 22px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
}
.bso-footer .cta-btn:hover {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(37,99,235,.3);
}
.bso-footer .cta-btn svg {
    width: 15px; height: 15px;
    fill: #fff;
}

/* ── Payments ── */
.bso-footer .payments-block {
    margin-top: 28px;
}
.bso-footer .payments-label {
    font-size: 12px;
    color: #5a6578;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 600;
    margin-bottom: 14px;
}
.bso-footer .payments-img {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 10px;
    padding: 14px 18px;
    display: inline-block;
}
.bso-footer .payments-img img {
    height: auto;
    max-width: 220px;
    opacity: 0.85;
    transition: opacity 0.3s;
}
.bso-footer .payments-img:hover img {
    opacity: 1;
}

/* ── Footer Bottom ── */
.bso-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.07);
    padding: 22px 0;
}
.bso-footer-bottom .bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.bso-footer-bottom .copyright-text {
    font-size: 13px;
    color: #5a6578;
    margin: 0;
}
.bso-footer-bottom .bottom-nav {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
}
.bso-footer-bottom .bottom-nav a {
    font-size: 13px;
    color: #5a6578;
    text-decoration: none;
    transition: color 0.25s;
}
.bso-footer-bottom .bottom-nav a:hover {
    color: #60a5fa;
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .bso-footer-top { padding: 45px 0 30px; }
}
@media (max-width: 767px) {
    .bso-footer-bottom .bottom-inner {
        flex-direction: column;
        text-align: center;
    }
    .bso-footer-bottom .bottom-nav {
        justify-content: center;
    }
    .bso-footer .footer-cta-box {
        text-align: center;
    }
}
