.bm-footer-adv {
    background: var(--main-bg);
    color: var(--default-font-color);
    padding: 70px 40px 40px;
    font-family: "Poppins", sans-serif;
    position: relative;
    overflow: hidden;
}

.bm-footer-top-border {
    height: 4px;
    background: linear-gradient(
        90deg, 
        var(--header-logo-color),
        #a8977d,
        var(--header-logo-color)
    );
    width: 100%;
    margin-bottom: 40px;
}

.bm-footer-wrapper {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 45px;
}

.brand {
    font-size: 1.7rem;
    color: var(--header-logo-color);
    margin-bottom: 15px;
}

.about-text {
    margin-bottom: 20px;
    line-height: 1.6;
    color: var(--default-font-color);
}

.bm-socials {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.bm-socials a {
    margin-right: 12px;
    font-size: 1.5rem;
    color: var(--default-font-color);
    opacity: 0.7;
    transition: 0.3s ease;
}

.bm-socials a:hover {
    opacity: 1;
    transform: translateY(-3px);
    color: var(--header-logo-color);
}

.bm-footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--header-logo-color);
}

.bm-footer-col ul {
    padding: 0;
    list-style: none;
}

.bm-footer-col ul li {
    margin-bottom: 10px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    color: var(--default-font-color);
}

.bm-footer-col ul li i {
    margin-right: 8px;
    font-size: 1.2rem;
    color: var(--header-logo-color);
}

.bm-footer-col ul li a {
    text-decoration: none;
    color: var(--default-font-color);
    opacity: 0.75;
    transition: 0.2s;
}

.bm-footer-col ul li a:hover {
    opacity: 1;
    color: var(--header-logo-color);
}

.bm-footer-bottom {
    max-width: 1300px;
    margin: 10px auto 0;
    padding-top: 30px;
    border-top: 1px solid #2f2f2f;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.bm-footer-bottom p {
    color: var(--default-font-color);
    opacity: 0.6;
    font-size: 0.9rem;
    width: 100%;
    text-align: center;
}
