/* ========================================
   Footer Section
   ======================================== */

.mmc-footer {
    background: var(--mmc-dark);
    color: var(--mmc-white);
    padding: 72px 0 24px;
    font-family: var(--mmc-font-body);
}

.mmc-footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}

.mmc-footer-about h3,
.mmc-footer-links h3,
.mmc-footer-instagram h3 {
    font-family: var(--mmc-font-heading);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 22px;
    color: var(--mmc-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mmc-footer-about p {
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.75;
    margin-bottom: 20px;
    font-size: 0.9rem;
    font-weight: 300;
}

/* Social media links */
.mmc-footer-social {
    display: flex;
    gap: 10px;
    margin-bottom: 24px;
}

.mmc-footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all var(--mmc-transition);
}

.mmc-footer-social a:hover {
    background: var(--mmc-primary);
    border-color: var(--mmc-primary);
    color: var(--mmc-white);
    transform: translateY(-2px);
}

.mmc-footer-contact {
    list-style: none;
}

.mmc-footer-contact li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
    font-weight: 300;
}

.mmc-footer-contact i {
    color: var(--mmc-primary);
    margin-right: 12px;
    width: 16px;
    flex-shrink: 0;
    font-size: 0.82rem;
    opacity: 0.7;
}

.mmc-footer-contact a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color var(--mmc-transition);
}

.mmc-footer-contact a:hover {
    color: var(--mmc-primary);
}

.mmc-footer-links ul {
    list-style: none;
}

.mmc-footer-links li {
    margin-bottom: 8px;
}

.mmc-footer-links a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    transition: all var(--mmc-transition);
    display: inline-block;
    letter-spacing: 0.3px;
}

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

.mmc-instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
}

.mmc-instagram-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 4px;
    transition: all var(--mmc-transition);
    position: relative;
}

.mmc-instagram-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(2, 120, 212, 0);
    transition: background var(--mmc-transition);
    pointer-events: none;
    border-radius: 4px;
}

.mmc-instagram-item:hover::after {
    background: rgba(2, 120, 212, 0.2);
}

.mmc-instagram-item:hover {
    transform: scale(1.04);
}

.mmc-instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mmc-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.78rem;
    letter-spacing: 0.3px;
}

.mmc-footer-legal a {
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    transition: color var(--mmc-transition);
}

.mmc-footer-legal a:hover {
    color: var(--mmc-primary);
}

/* ========================================
   Tablet Styles
   ======================================== */
@media (max-width: 968px) {
    .mmc-footer { padding: 56px 0 20px; }
    .mmc-footer-content { grid-template-columns: 1fr 1fr; gap: 36px; }
    .mmc-footer-instagram { grid-column: 1 / -1; text-align: center; }
    .mmc-instagram-grid { max-width: 240px; margin: 0 auto; }
    .mmc-footer-social { justify-content: flex-start; }
}

@media (max-width: 768px) {
    .mmc-footer-content { gap: 28px; }
    .mmc-footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}

/* ========================================
   Mobile Styles
   ======================================== */
@media (max-width: 480px) {
    .mmc-footer { padding: 48px 0 20px; }
    .mmc-footer-content { grid-template-columns: 1fr; gap: 0; }

    /* Center all sections */
    .mmc-footer-about,
    .mmc-footer-links,
    .mmc-footer-instagram {
        text-align: center;
        padding: 28px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .mmc-footer-about { padding-top: 0; }
    .mmc-footer-instagram { border-bottom: none; }

    .mmc-footer-about h3,
    .mmc-footer-links h3,
    .mmc-footer-instagram h3 {
        font-size: 0.88rem;
        margin-bottom: 16px;
    }

    .mmc-footer-about p { font-size: 0.85rem; }

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

    .mmc-footer-contact li {
        justify-content: center;
        font-size: 0.85rem;
    }

    .mmc-footer-links ul { display: flex; flex-direction: column; align-items: center; }
    .mmc-footer-links li { text-align: center; }
    .mmc-footer-links a { font-size: 0.85rem; }
    .mmc-footer-links a:hover { transform: none; }

    .mmc-instagram-grid { max-width: 200px; margin: 0 auto; }
    .mmc-footer-instagram { text-align: center; }

    .mmc-footer-bottom { font-size: 0.72rem; padding-top: 18px; }
}
