/* ── Hide existing theme/builder footers ── */
#colophon,
.site-footer,
footer.site-footer,
.ast-builder-footer-wrapper,
.ast-footer-overlay,
footer[itemtype="https://schema.org/WPFooter"],
.pagelayer-footer,
#pagelayer-footer,
#footer,
.footer-wrap,
.hfe-footer {
    display: none !important;
    height: 0 !important;
    overflow: hidden !important;
}

/* ── Root ── */
.bel-footer-root-80d183e2 {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #002b5b;
    line-height: 1.6;
    width: 100%;
    display: block;
    clear: both;
}

/* ── Body ── */
.belf-body {
    background-color: #eaeee8;
    padding: 60px 40px;
}
.belf-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 0;
}

/* ── Columns ── */
.belf-col {
    flex: 1;
    padding: 0 28px;
}
.belf-col + .belf-col {
    border-left: 1px solid #c8d0c8;
}
.belf-brand {
    flex: 1.3;
    padding-left: 0;
}

/* ── Logo ── */
.belf-logo img {
    max-width: 160px;
    height: auto;
    display: block;
    margin-bottom: 18px;
}
.belf-tagline {
    font-size: 14px;
    color: #002b5b;
    line-height: 1.65;
    margin: 0;
    max-width: 260px;
}

/* ── Headings ── */
.belf-heading {
    font-size: 17px;
    font-weight: 800;
    color: #002b5b;
    margin: 0 0 20px 0;
}

/* ── Nav list ── */
.belf-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.belf-list li { margin-bottom: 12px; }
.belf-list li a {
    color: #002b5b;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}
.belf-list li a:hover { color: #6db33f; }

/* ── Contact list ── */
.belf-contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}
.belf-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 14px;
    color: #002b5b;
}
.belf-icon {
    width: 16px;
    flex-shrink: 0;
    margin-top: 3px;
    text-align: center;
    color: #002b5b;
}

/* Email stack — two addresses stacked, no word-break */
.belf-email-row { align-items: flex-start; }
.belf-email-stack {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.belf-email-stack a {
    color: #002b5b;
    text-decoration: none;
    font-size: 13px;
    white-space: nowrap;
    transition: color 0.2s;
}
.belf-email-stack a:hover { color: #6db33f; }

.belf-contact-list li a {
    color: #002b5b;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}
.belf-contact-list li a:hover { color: #6db33f; }

/* ── Social icons ── */
.belf-socials {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.belf-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 4px;
    background: #002b5b;
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.2s;
}
.belf-socials a:hover { background: #6db33f; }

/* ── Copyright bar ── */
.belf-bar {
    background-color: #002b5b;
    padding: 18px 40px;
}
.belf-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.belf-bar-logo {
    max-width: 70px;
    height: auto;
    display: block;
}
.belf-copy {
    color: #fff;
    font-size: 14px;
    margin: 0;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .belf-container { flex-wrap: wrap; }
    .belf-col + .belf-col { border-left: none; }
    .belf-brand { flex: 0 0 100%; padding: 0 0 30px 0; border-bottom: 1px solid #c8d0c8; margin-bottom: 30px; }
    .belf-col { flex: 0 0 calc(33.333% - 20px); }
    .belf-email-stack a { white-space: normal; font-size: 13px; }
}
@media (max-width: 767px) {
    .belf-body { padding: 36px 20px; }
    .belf-col { flex: 0 0 100%; padding: 0; margin-bottom: 28px; }
    .belf-bar { padding: 16px 20px; }
    .belf-bar-inner { flex-direction: column; gap: 10px; text-align: center; }
    .belf-email-stack a { white-space: normal; }
}