/* --- Footer (Bloom Realty) --- */
footer {
    background-color: #000;
    color: #fff;
    font-size: 0.85rem !important;
    /* User Request: Fixed footer size */
}

/* Footer Links */
.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    font-size: 12px;
}

@media (min-width: 992px) {
    .footer-links {
        justify-content: flex-end;
    }
}

.footer-links a {
    color: #a0a0a0;
    /* Matching text-muted usually */
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #c5a059;
    /* Bloom Gold */
    text-decoration: none !important;
    /* User Request: No underlining */
    filter: brightness(1.2);
    /* Extra brightness pop */
}

.footer-divider {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 700;
    margin: 0 0.5rem;
}

@media (max-width: 991.98px) {
    .footer-divider {
        display: none;
    }
}