/* --- FOOTER BASE --- */
.lfpnd-footer {
    background: #00122a; /* Slightly darker than the contact section */
    color: #ffffff;
    padding: 80px 0 30px 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    border-top: 4px solid #fdf2b0; /* Bold Yellow Accent */
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px 20px;
}

/* --- BRANDING --- */
.footer-logo {
    font-size: 32px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-logo span {
    color: #fdf2b0;
}

.footer-bio {
    opacity: 0.7;
    line-height: 1.6;
    max-width: 320px;
    margin-bottom: 25px;
}

/* --- SOCIALS --- */
.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background: #fdf2b0;
    color: #001C41;
}

/* --- FOOTER LISTS --- */
.footer-title {
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
    color: #fdf2b0;
    margin-bottom: 25px;
    font-weight: 800;
}

.footer-links, .footer-contact-info {
    list-style: none;
    padding: 0;
}

.footer-links li, .footer-contact-info li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a, .footer-contact-info a {
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s, color 0.3s;
}

.footer-links a:hover, .footer-contact-info a:hover {
    opacity: 1;
    color: #fdf2b0;
}

/* --- FOOTER BOTTOM --- */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    opacity: 0.6;
}

.legal-links {
    display: flex;
    gap: 20px;
    list-style: none;
}

.legal-links a { color: #fff; text-decoration: none; }

/* --- RESPONSIVE & OVERRIDES --- */
@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .footer-bio { margin: 0 auto 25px auto; }
    .footer-socials { justify-content: center; }
    .footer-bottom { flex-direction: column; gap: 20px; }
}

/* Desktop padding override per your instructions */
@media (min-width: 1024px) {
    .wvc-heading-container { padding: 30px 0 10px 0 !important; }
}