/* Modern Minimal Footer Styles */
.mz-footer {
    background: var(--footer-bg-gradient);
    color: var(--footer-text-color);
    margin-left: var(--sidebar-width, 0);
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
}

.mz-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--footer-accent-gradient);
}

.mz-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.mz-footer-main {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 3rem;
    padding: 3rem 0 2rem;
    align-items: start;
}

/* Brand Section */
.mz-footer-brand {
    max-width: 300px;
}

.mz-footer-logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.mz-footer-logo-img {
    width: 32px;
    height: 32px;
    border-radius: 6px;
}

.mz-footer-logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    letter-spacing: -0.025em;
}

.mz-footer-tagline {
    color: var(--footer-tagline-color);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Links Section */
.mz-footer-links {
    display: flex;
    gap: 3rem;
}
.mz-footer-column {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-width: 120px;
}

.mz-footer-title {
    position: relative;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mz-footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.mz-footer-link {
    color: var(--footer-link-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    position: relative;
}

.mz-footer-link:hover {
    color: var(--primary-color);
    transform: translateX(4px);
}

/* Social Section */
.mz-footer-social {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.mz-social-links {
    display: flex;
    gap: 0.75rem;
}

.mz-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--footer-social-bg);
    color: var(--primary-color);
    border: 1px solid var(--footer-social-border);
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.mz-social-link:hover {
    background: var(--primary-color);
    color: var(--footer-social-hover-text);
    transform: translateY(-2px);
    box-shadow: var(--footer-social-hover-shadow);
}
.mz-social-link i {
    font-size: 0.9rem;
}

/* Footer Bottom */
.mz-footer-bottom {
    border-top: 1px solid var(--footer-border-color);
    padding: 1.5rem 0;
}

.mz-footer-copyright {
    text-align: center;
}

.mz-footer-copyright p {
    color: var(--footer-copyright-color);
    font-size: 0.85rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .mz-footer {
        margin-left: 0;
    }
}
@media (max-width: 768px) {
    .mz-footer-container {
        padding: 0 1.5rem;
    }
   
    .mz-footer-main {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 2.5rem 0 2rem;
    }
   
    .mz-footer-brand {
        max-width: none;
        text-align: center;
    }
   
    .mz-footer-logo-container {
        justify-content: center;
    }
   
    .mz-footer-links {
        justify-content: center;
        gap: 3rem;
    }
   
    .mz-footer-social {
        align-items: center;
    }
}
@media (max-width: 480px) {
    .mz-footer-container {
        padding: 0 1rem;
    }
   
    .mz-footer-main {
        gap: 2rem;
        padding: 2rem 0 1.5rem;
    }
    .mz-footer-column {
        align-items: center;
    }
}