/* ============================================================
   Business Directory – Custom Site Footer
   Blue–Green Gradient
   ============================================================ */

/* Hide the existing theme / Elementor footer so ours takes over */
.elementor-location-footer,
#site-footer,
body > footer:not(#bd-site-footer) {
    display: none !important;
}

/* ── Wrapper ─────────────────────────────────────────────── */
#bd-site-footer {
    background: linear-gradient(135deg, #1a3c6e 0%, #0d7a7a 55%, #0d9e7e 100%);
    color: #fff;
    font-family: inherit;
    width: 100%;
}

.bd-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Main grid ───────────────────────────────────────────── */
.bd-footer-main .bd-footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-top: 60px;
    padding-bottom: 44px;
}

@media (max-width: 960px) {
    .bd-footer-main .bd-footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
        padding-top: 44px;
        padding-bottom: 32px;
    }
}

@media (max-width: 560px) {
    .bd-footer-main .bd-footer-inner {
        grid-template-columns: 1fr;
        gap: 28px;
        padding-top: 36px;
        padding-bottom: 28px;
    }
}

/* ── Brand column ────────────────────────────────────────── */
.bd-footer-brand img.bd-footer-logo-img {
    max-height: 56px;
    width: auto;
    display: block;
    /* filter: brightness(0) invert(1); */
    margin-bottom: 4px;
}

.bd-footer-brand .bd-footer-site-name {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px 0;
    letter-spacing: -0.01em;
}

.bd-footer-tagline {
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.65;
    margin: 0 0 20px 0;
}

.bd-footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.88);
    letter-spacing: 0.03em;
}

.bd-footer-badge i {
    color: #6ee9c0;
    font-size: 13px;
}

/* ── Link columns ────────────────────────────────────────── */
.bd-footer-col h4 {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    margin: 0 0 18px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.18);
}

.bd-footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.bd-footer-col ul li {
    margin-bottom: 9px;
}

.bd-footer-col ul li a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    font-size: 14px;
    line-height: 1.4;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease, gap 0.2s ease;
}

.bd-footer-col ul li a i {
    font-size: 11px;
    color: #6ee9c0;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.bd-footer-col ul li a:hover {
    color: #fff;
    gap: 8px;
}

.bd-footer-col ul li a:hover i {
    opacity: 1;
}

/* ── Bottom bar ──────────────────────────────────────────── */
.bd-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.bd-footer-bottom .bd-footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 20px;
    padding-bottom: 20px;
}

.bd-footer-bottom p {
    margin: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.58);
}

.bd-footer-bottom a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
}

.bd-footer-bottom a:hover {
    color: #fff;
}

@media (max-width: 560px) {
    .bd-footer-bottom .bd-footer-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
}
