/* ----------------------------------------------------
   CUSTOM FOOTER (collision-proof)
-----------------------------------------------------*/

/* Hide Mesmerize footer completely */
.site-footer,
.mesmerize-footer,
.footer-simple,
.footer-content,
.footer-content-lists {
    display: none !important;
}

/* Main footer wrapper */
.custom-footer {
    background: #003366; /* pick your color */
    color: #fff;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
}

/* Inner layout */
.custom-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

/* Columns */
.custom-footer-col {
    flex: 1;
    min-width: 250px;
}

.custom-footer-col h4 {
    margin-bottom: 10px;
    font-size: 18px;
    color: #fff;
}

.custom-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.custom-footer-col ul li {
    margin-bottom: 6px;
}

.custom-footer-col a {
    color: #ddd;
    text-decoration: none;
}

.custom-footer-col a:hover {
    color: #fff;
}

/* Social links */
.custom-footer-social a {
    display: inline-block;
    margin-right: 12px;
    color: #ddd;
}

.custom-footer-social a:hover {
    color: #fff;
}

/* Bottom bar */
.custom-footer-bottom {
    text-align: center;
    padding-top: 20px;
    margin-top: 30px;
    border-top: 1px solid #333;
    color: #aaa;
    font-size: 14px;
}

/* Responsive layout */
@media (max-width: 768px) {
    .custom-footer-inner {
        flex-direction: column;
        text-align: center;
    }
}