.elementor-2012 .elementor-element.elementor-element-34f32ae{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-f891ee8 *//* --- RESET & VARIABLES --- */
:root {
    --ib-bg: #000000;
    --ib-text: #ffffff;
    --ib-green: #00bf63;
    --ib-border: rgba(255, 255, 255, 0.15);
}

.ib-footer-v2 {
    background-color: var(--ib-bg);
    color: var(--ib-text);
    padding: 70px 20px 30px;
    font-family: 'Sora', sans-serif;
    font-size: 14px;
    line-height: 1.6;
}

.ib-footer-container {
    max-width: 1280px; /* Lebih lebar dikit biar 5 kolom muat enak */
    margin: 0 auto;
    display: grid;
    /* Kolom Brand 1.5x, Sisanya 1x rata */
    grid-template-columns: 1.5fr 1fr 1fr 1fr 0.8fr; 
    gap: 30px;
    align-items: start; /* Biar rata atas */
}

/* --- LOGO & BRAND --- */
.ib-logo {
    width: 160px; /* Ukuran pas */
    height: auto;
    display: block;
    margin-bottom: 20px;
    background: #fff; /* Biar logo transparan keliatan */
    padding: 8px 12px;
    border-radius: 6px;
}

.ib-desc {
    color: #e0e0e0; /* Putih agak soft dikit biar ga nusuk, tapi tetep jelas */
    margin-bottom: 25px;
    max-width: 90%;
}

/* --- SOCIAL MEDIA --- */
.ib-socmed {
    display: flex;
    gap: 10px;
}

.ib-socmed a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: #fff;
    transition: 0.3s;
    border: 1px solid transparent;
}

.ib-socmed a svg {
    width: 18px;
    height: 18px;
}

.ib-socmed a:hover {
    background: var(--ib-green);
    color: #fff;
    border-color: var(--ib-green);
    transform: translateY(-3px);
}

/* --- HEADINGS & LINKS --- */
.ib-heading {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.ib-sub-heading {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--ib-green); /* Hijau biar beda sama link */
    letter-spacing: 1px;
    margin-bottom: 10px !important;
    display: block;
    pointer-events: none; /* Gak bisa diklik */
}

.ib-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ib-links li {
    margin-bottom: 10px;
}

.ib-links a {
    text-decoration: none;
    color: #e0e0e0; /* Putih Terang */
    transition: 0.2s;
    display: block;
}

.ib-links a:hover {
    color: var(--ib-green);
    padding-left: 5px;
}

/* Ulasan Jujur Highlight */
.ib-highlight-item a {
    color: var(--ib-green) !important;
    font-weight: 700;
    margin-top: 10px;
    display: inline-block;
    border-bottom: 1px dashed var(--ib-green);
    padding-bottom: 2px;
}

/* --- COPYRIGHT --- */
.ib-copyright {
    max-width: 1280px;
    margin: 60px auto 0;
    padding-top: 25px;
    border-top: 1px solid var(--ib-border);
    text-align: center;
    color: #888;
    font-size: 13px;
}

/* --- MOBILE RESPONSIVE (ACCORDION) --- */
@media (max-width: 900px) {
    .ib-footer-container {
        grid-template-columns: 1fr; /* Stack ke bawah */
        gap: 0;
    }

    .ib-col {
        border-bottom: 1px solid var(--ib-border);
        margin-bottom: 5px;
    }

    .ib-brand {
        border-bottom: none;
        text-align: center;
        padding-bottom: 30px;
    }
    
    .ib-logo { margin: 0 auto 20px; }
    .ib-desc { margin: 0 auto 25px; }
    .ib-socmed { justify-content: center; }

    /* Accordion Trigger Style */
    .ib-heading {
        margin: 0;
        padding: 18px 0;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: left;
        font-size: 15px;
    }

    /* Icon Chevron */
    .ib-heading::after {
        content: '';
        width: 8px;
        height: 8px;
        border-right: 2px solid var(--ib-green);
        border-bottom: 2px solid var(--ib-green);
        transform: rotate(45deg);
        transition: transform 0.3s;
    }

    /* Rotate saat aktif */
    .ib-heading.active::after {
        transform: rotate(-135deg);
    }

    /* Hide Content Default */
    .ib-links {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-out;
        opacity: 0;
    }

    /* Show Content */
    .ib-links.open {
        max-height: 1200px; /* Extra height buat muat banyak link */
        opacity: 1;
        padding-bottom: 20px;
    }
}/* End custom CSS */