/** [2026-01-16] VERSION: 3.0.0 - FINAL ACCORDION MATERIAL ICONS + LOGO FILTER */

.mast-v2-footer {
    background: #111;
    padding: 30px 0 20px;
    border-top: 1px solid #222;
}

.mast-footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Base Row */
.mast-v2-row {
    display: flex;
    flex-direction: column;
}

/* --- LOGO --- */
.mast-row-logo { margin-bottom: 20px; }
.mast-footer-logo img { max-width: 160px; height: auto; }

/* Filter Logo Putih (Customizer) */
.mast-footer-logo.is-logo-white img {
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.mast-footer-logo.is-logo-white img:hover {
    opacity: 1;
}

/* --- ACCORDION HEADERS (Desktop: Hidden) --- */
.mast-accordion-header {
    display: none; 
    cursor: pointer;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #333;
}

.mast-accordion-title {
    font-size: initial;
    font-weight: bold;
    color: #eee;
}

/* Penyesuaian Material Icons */
.mast-arrow {
    display: inline-block;
    font-family: 'Material Icons';
    font-size: 20px; /* Diperbesar agar pas untuk Material Icons */
    color: #555;
    transform: rotate(0deg);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s;
    user-select: none;
}

.mast-row-category {
    margin-bottom: 10px;
}

/* --- NAVIGASI (Desktop Mode) --- */
.mast-nav-flat, .mast-nav-pages {
    display: flex;
    list-style: none !important;
    padding: 0;
    margin: 0;
    line-height: 1;
    column-gap: 25px;
    row-gap: 10px;
    flex-wrap: wrap;
}

.mast-nav-flat li a,
.mast-nav-pages li a { 
    text-transform: capitalize;
    color: #999; 
    font-size: 13px; 
    text-decoration: none;
    transition: color 0.2s;
}

.mast-nav-flat li a:hover,
.mast-nav-pages li a:hover { color: #fff; }

/* --- BARIS 4 (Credit & Social) --- */
.mast-row-bottom {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #333;
    flex-direction: row; 
    justify-content: space-between;
    align-items: center;
}

.mast-footer-credit-complete,
.mast-footer-credit-complete a { 
    font-size: 12px;
    color: #999;
    text-decoration: none;
}

.mast-footer-social-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mast-social-label {
    text-transform: capitalize;
    font-size: 13px;
    color: #999;
    font-weight: bold;
}

.social-icons-list {
    display: flex;
    align-items: center;
    gap: 25px;
}

.social-icons-list a {
    font-size: initial;
    color: #999;
    transition: transform 0.2s ease-in-out, color 0.2s ease-in-out;
}

.social-icons-list a:hover {
    color: #eee;
    transform: scale(1.2);
}

/* --- RESPONSIVE MODE --- */

@media (max-width: 1024px) {
    .mast-footer-container {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .mast-accordion-header { 
        display: flex; 
    }

    .mast-row-category {
        margin-bottom: 0;
    }

    .mast-accordion-content {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    }

    .mast-accordion.is-active .mast-accordion-content {
        max-height: 600px; 
        opacity: 1;
        padding: 20px 0;
        border-bottom: 1px solid #333;
    }

    /* Putar 90 Derajat (Kanan ke Bawah) */
    .mast-accordion.is-active .mast-arrow {
        transform: rotate(90deg);
        color: #fff;
    }

    .mast-nav-flat, .mast-nav-pages {
        flex-direction: column;
        gap: 15px;
    }

    .mast-row-bottom {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 20px;
        border-top: none; 
        margin-top: 0;
    }
}