/* ==========================================================================
   MNLU FOOTER BUILDER
   ========================================================================== */
.mnlu-footer, .mnlu-footer * {
    box-sizing: border-box;
}

.mnlu-footer-elementor-stretch {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.mnlu-footer {
    background-color: var(--footer-bg, var(--navy-dark, #001124));
    color: rgba(255,255,255,0.85);
    font-family: Arial, sans-serif;
    position: relative;
}

.mnlu-footer .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
}

.mnlu-footer h4 {
    color: var(--gold-accent, #E5A93C);
    font-size: 16px;
    margin: 0 0 14px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.mnlu-footer-main {
    padding: 50px 0 30px;
}

.mnlu-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 34px;
}

.mnlu-footer-about p {
    font-size: 14px;
    line-height: 1.7;
    margin: 0 0 18px;
}

.mnlu-footer-social {
    display: flex;
    gap: 10px;
}

.mnlu-footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: #fff;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.mnlu-footer-social a:hover {
    background: var(--gold-accent, #E5A93C);
    color: var(--navy-dark, #001124);
    transform: translateY(-3px);
}

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

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

.mnlu-footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.mnlu-footer-links a:hover {
    color: var(--gold-accent, #E5A93C);
    padding-left: 4px;
}

.mnlu-footer-contact-list {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
}

.mnlu-footer-contact-list li {
    font-size: 14px;
    margin-bottom: 10px;
}

.mnlu-footer-contact-list i {
    color: var(--gold-accent, #E5A93C);
    margin-right: 8px;
    width: 14px;
}

.mnlu-footer-contact-list a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
}

.mnlu-footer-contact-list a:hover {
    color: var(--gold-accent, #E5A93C);
}

.mnlu-footer address {
    font-style: normal;
    font-size: 13.5px;
    line-height: 1.6;
    color: rgba(255,255,255,0.75);
}

.mnlu-footer-map iframe {
    width: 100%;
    height: 180px;
    border: 0;
    border-radius: 4px;
    filter: grayscale(20%);
}

.mnlu-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.12);
    padding: 16px 0;
}

.mnlu-footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.mnlu-footer-bottom p {
    margin: 0;
    font-size: 12.5px;
    color: rgba(255,255,255,0.6);
}

.mnlu-footer-designed-by a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
}

.mnlu-footer-designed-by a:hover {
    color: var(--gold-accent, #E5A93C);
}

/* Floating WhatsApp button with pulse effect */
.mnlu-whatsapp-float {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(0,0,0,0.3);
    z-index: 9999;
    animation: mnluWhatsappPulse 2.4s infinite;
}

.mnlu-whatsapp-float:hover {
    background: #1ebe5b;
    color: #fff;
}

@keyframes mnluWhatsappPulse {
    0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.55); }
    70%  { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* Back-to-top button */
.mnlu-back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--gold-accent, #E5A93C);
    color: var(--navy-dark, #001124);
    border: none;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0,0,0,0.25);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.25s ease, transform 0.25s ease, background 0.2s ease;
}

.mnlu-back-to-top.mnlu-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mnlu-back-to-top:hover {
    background: var(--gold-hover, #C5902B);
}

@media (max-width: 600px) {
    .mnlu-footer-bottom-flex {
        flex-direction: column;
        text-align: center;
    }
    .mnlu-whatsapp-float {
        width: 48px;
        height: 48px;
        font-size: 24px;
        bottom: 16px;
        left: 16px;
    }
    .mnlu-back-to-top {
        bottom: 16px;
        right: 16px;
    }
}
