.mnl-footer * {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

.mnl-footer img {
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    user-drag: none;
}

/* Base Footer Styles */
.mnl-footer {
    font-family: 'Roboto', sans-serif;
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

/* Black Footer Variant */
.mnl-footer-black {
    background: #000000;
    color: #ffffff;
}

.mnl-footer-black .mnl-footer-title {
    color: #ffffff;
}

.mnl-footer-black .mnl-footer-links a {
    color: #cccccc;
}

.mnl-footer-black .mnl-footer-links a:hover {
    color: #ffffff;
}

.mnl-footer-black .mnl-footer-logo {
    color: #ffffff;
}

.mnl-footer-black .mnl-footer-tagline {
    color: #cccccc;
}

.mnl-footer-black .mnl-footer-bottom {
    border-top: 1px solid #1d1d1f;
}

.mnl-footer-black .mnl-footer-copyright {
    color: #cccccc;
}

.mnl-footer-black .mnl-footer-social a {
    color: #ffffff;
    border: 1px solid #ffffff;
}

.mnl-footer-black .mnl-footer-social a:hover {
    background: #ffffff;
    color: #000000;
}

/* White Footer Variant */
.mnl-footer-white {
    background: #ffffff;
    color: #000000;
}

.mnl-footer-white .mnl-footer-title {
    color: #000000;
}

.mnl-footer-white .mnl-footer-links a {
    color: #666666;
}

.mnl-footer-white .mnl-footer-links a:hover {
    color: #000000;
}

.mnl-footer-white .mnl-footer-logo {
    color: #000000;
}

.mnl-footer-white .mnl-footer-tagline {
    color: #666666;
}

.mnl-footer-white .mnl-footer-bottom {
    border-top: 1px solid #e5e5e5;
}

.mnl-footer-white .mnl-footer-copyright {
    color: #666666;
}

.mnl-footer-white .mnl-footer-social a {
    color: #000000;
    border: 1px solid #000000;
}

.mnl-footer-white .mnl-footer-social a:hover {
    background: #000000;
    color: #ffffff;
}

/* Decorative Images */
.mnl-footer-decor {
    position: absolute;
    height: 100%;
    opacity: 0.1;
    z-index: 0;
    object-fit: cover;
}

.mnl-footer-decor-left {
    left: -200px;
    top: 0;
}

.mnl-footer-decor-right {
    right: 0;
    top: 0;
}

/* Content Container */
.mnl-footer-content {
    position: relative;
    z-index: 1;
    padding-bottom: 40px;
}

/* Footer Columns */
.mnl-footer-col {
    margin-bottom: 40px;
}

.mnl-footer-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.mnl-footer-title-secondary {
    margin-top: 30px;
}

.mnl-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mnl-footer-links li {
    margin-bottom: 12px;
}

.mnl-footer-links a {
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 400;
    transition: all 0.3s ease;
    display: inline-block;
}

/* Brand Column */
.mnl-footer-brand {
    text-align: left;
}

.mnl-footer-logo {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.mnl-footer-tagline {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.mnl-footer-icon {
    max-width: 80px;
    height: auto;
    display: block;
    margin-bottom: 20px;
}

/* Download Button (White Footer Only) */
.mnl-footer-download-btn {
    position: relative;
    display: inline-block;
    padding: 12px 28px;
    border: 2px solid #000000;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #000000;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.mnl-footer-download-fill {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: #000000;
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.mnl-footer-download-btn:hover .mnl-footer-download-fill {
    height: 100%;
}

.mnl-footer-download-text {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease 0.2s;
}

.mnl-footer-download-btn:hover .mnl-footer-download-text {
    color: #ffffff;
}

/* Footer Bottom */
.mnl-footer-bottom {
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.mnl-footer-copyright {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 400;
}

.mnl-footer-social {
    display: flex;
    gap: 15px;
}

.mnl-footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

/* ===================================== */
/* RESPONSIVE DESIGN */
/* ===================================== */

@media (max-width: 991px) {
    .mnl-footer-decor {
        display: none; 
    }
    .mnl-footer {
        padding: 60px 0 0;
    }

    .mnl-footer-content {
        padding-bottom: 30px;
    }

    .mnl-footer-col {
        margin-bottom: 35px;
    }

    .mnl-footer-decor {
        opacity: 0.15;
    }

    .mnl-footer-brand-col {
        order: -1;
        margin-bottom: 50px;
    }

    .mnl-footer-brand {
        text-align: center;
    }

    .mnl-footer-icon {
        margin: 20px auto;
    }

    .mnl-footer-download-btn {
        display: block;
        text-align: center;
        max-width: 200px;
        margin: 20px auto 0;
    }
}

@media (max-width: 767px) {
    .mnl-footer-decor {
        display: none; 
    }
    .mnl-footer {
        padding: 50px 0 0;
    }

    .mnl-footer-col {
        margin-bottom: 30px;
        text-align: center;
    }

    .mnl-footer-title {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .mnl-footer-links li {
        margin-bottom: 10px;
    }

    .mnl-footer-links a {
        font-size: 0.875rem;
    }

    .mnl-footer-logo {
        font-size: 1.75rem;
    }

    .mnl-footer-tagline {
        font-size: 0.9375rem;
    }

    .mnl-footer-icon {
        max-width: 70px;
    }

    .mnl-footer-bottom {
        flex-direction: column;
        gap: 20px;
        padding: 25px 0;
        text-align: center;
    }

    .mnl-footer-copyright {
        font-size: 0.8125rem;
    }

    .mnl-footer-social {
        justify-content: center;
    }

    .mnl-footer-social a {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .mnl-footer-decor {
        opacity: 0.1;
    }
}

@media (max-width: 576px) {
    .mnl-footer-decor {
        display: none; 
    }
    .mnl-footer {
        padding: 40px 0 0;
    }

    .mnl-footer-logo {
        font-size: 1.5rem;
    }

    .mnl-footer-download-btn {
        padding: 10px 24px;
        font-size: 0.875rem;
    }
}