/* Footer Variables */
.mbe-footer {
    --coral: #FF6B6B;
    --light-blue: #D4F1F4;
    --dark-gray: #2D3748;
    --medium-gray: #4A5568;
    --light-gray: #F7FAFC;
    --border-gray: #E2E8F0;
    --white: #FFFFFF;
}

.mbe-footer {
    background: var(--light-gray);
    border-top: 1px solid var(--border-gray);
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    color: var(--dark-gray);
    line-height: 1.6;
}

.mbe-footer::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: var(--light-blue);
    opacity: 0.3;
    border-radius: 50%;
    pointer-events: none;
}

.mbe-footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 64px 20px 32px;
    position: relative;
    z-index: 1;
}

.mbe-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.mbe-footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mbe-footer-logo {
    display: inline-block;
    transition: transform 0.3s ease;
}

.mbe-footer-logo:hover {
    transform: translateY(-2px);
}

.mbe-footer-logo img {
    height: 60px;
    width: auto;
    display: block;
}

.mbe-footer-tagline {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--medium-gray);
    line-height: 1.5;
    max-width: 280px;
}

.mbe-footer-column h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--dark-gray);
    margin-bottom: 24px;
    font-weight: 700;
}

.mbe-footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0;
    margin: 0;
}

.mbe-footer-links a {
    color: var(--medium-gray);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.mbe-footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--coral);
    transition: width 0.3s ease;
}

.mbe-footer-links a:hover {
    color: var(--coral);
    transform: translateX(4px);
}

.mbe-footer-links a:hover::after {
    width: 100%;
}

.mbe-footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mbe-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--medium-gray);
    font-size: 15px;
}

.mbe-contact-item a {
    color: var(--medium-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.mbe-contact-item a:hover {
    color: var(--coral);
}

.mbe-contact-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral);
    flex-shrink: 0;
}

.mbe-social-links {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.mbe-social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--border-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--medium-gray);
}

.mbe-social-link:hover {
    background: var(--coral);
    border-color: var(--coral);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.mbe-footer-bottom {
    border-top: 1px solid var(--border-gray);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.mbe-copyright {
    color: var(--medium-gray);
    font-size: 14px;
}

.mbe-footer-legal {
    display: flex;
    gap: 24px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.mbe-footer-legal a {
    color: var(--medium-gray);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.mbe-footer-legal a:hover {
    color: var(--coral);
}

.mbe-sister-brand {
    background: var(--coral);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.mbe-sister-brand:hover {
    transform: scale(1.05);
}

.icon-instagram::before { content: 'IG'; font-weight: bold; font-size: 14px; }
.icon-facebook::before { content: 'f'; font-weight: bold; font-size: 18px; }
.icon-pinterest::before { content: 'P'; font-weight: bold; font-size: 16px; }

@media (max-width: 768px) {
    .mbe-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .mbe-footer-brand {
        grid-column: 1 / -1;
        text-align: center;
        align-items: center;
    }

    .mbe-footer-tagline {
        max-width: 400px;
    }

    .mbe-social-links {
        justify-content: center;
    }

    .mbe-footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .mbe-footer-content {
        padding: 48px 20px 24px;
    }

    .mbe-footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .mbe-footer-column h3 {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .mbe-footer-links {
        align-items: center;
    }

    .mbe-footer-links a:hover {
        transform: none;
    }

    .mbe-footer-contact {
        align-items: center;
    }

    .mbe-contact-item {
        justify-content: center;
    }

    .mbe-footer-legal {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .mbe-sister-brand {
        display: block;
        margin: 8px 0 0 0;
    }
}
