/**
 * Footer CSS for BNX GROUP  theme
 * This file contains styles specific to the footer section of the BNX GROUP  WordPress theme.
 * It ensures a cohesive design and responsive layout for the footer across all devices.
 */
/* Footer Container */
/* ======================================================
   BNX GROUP FOOTER - DYNAMIC WORDPRESS STYLES
   ====================================================== */
   /* Footer Styling */
.bnxgroup_footer_wrapper {
    background-color: #161618;
    color: #ffffff;
    font-family: var(--bnx-font-main);
}

.bnxgroup_footer_logo_text {
    font-family: var(--bnx-font-heading);
    font-weight: 700;
    font-size: 2rem;
    letter-spacing: 1px;
}

.bnxgroup_footer_logo_text span {
    color: var(--bnx-gold);
}

.bnxgroup_footer_about {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    max-width: 260px;
}

.bnxgroup_footer_heading {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ffffff;
}
.bnxgroup_footer_links {
    margin: 0;
}
.bnxgroup_footer_links li {
    margin-bottom: 12px;
}

.bnxgroup_footer_links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.bnxgroup_footer_links a:hover {
    color: var(--bnx-gold);
}

/* Social & Contact Icons */
.bnxgroup_footer_social_icon {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.bnxgroup_footer_social_icon:hover {
    background: var(--bnx-gold);
    border-color: var(--bnx-gold);
    transform: translateY(-3px);
}

.bnxgroup_footer_contact li {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
}

.bnxgroup_footer_contact i {
    color: var(--bnx-gold);
    width: 20px;
}

/* Bottom Bar */
.bnxgroup_footer_hr {
    border-color: rgba(255, 255, 255, 0.05);
}

.bnxgroup_footer_bottom {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}

.bnxgroup_footer_crafted {
    font-style: italic;
}