/* version 1.1.46 */

:root {
    --nt-title: #adbad9;
}

.newsthemes-footer-global {
    background: #0f172a;
    color: #94a3b8;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.newsthemes-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 50px;
}

.newsthemes-footer-grid h4 {
    margin-bottom: 15px;
    font-size: large;
    color: var(--nt-title);
}

.newsthemes-footer-grid P {
    margin: 0;
    font-size: 15px;
}

/* Brand */

.newsthemes-logo-footer {
    margin-bottom: 20px;
}

.newsthemes-logo-footer .custom-logo-link {
    display: inline-block;
}

.newsthemes-logo-footer img {
    filter: brightness(0) saturate(100%) invert(83%) sepia(11%) saturate(543%) hue-rotate(183deg) brightness(91%) contrast(88%);
    transition: all 0.3s ease-in-out;
}

.newsthemes-logo-footer img:hover {
    transform: translateY(-2px);
}

.newsthemes-footer-brand .newsthemes-logo-text {
    color: var(--nt-title);
    margin-bottom: 15px;
}

/* Location Style */
.newsthemes-brand-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    font-size: small;
    margin-top: 20px;
    margin-bottom: 15px;
}

/* Badges Style */
.newsthemes-brand-badges {
    display: flex;
    gap: 12px;
}

.newsthemes-badge-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: x-small;
    color: #94a3b8; /* Warna default kalem */
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 6px 16px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}

.newsthemes-badge-footer .material-icons-outlined {
    font-size: small;
    transition: color 0.4s ease;
}

/* --- EFEK HOVER PERFECT --- */
.newsthemes-badge-footer:hover {
    color: #25d366; /* Hijau Josss */
    background: rgba(37, 211, 102, 0.08);
    border-color: rgba(37, 211, 102, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.15);
}

.newsthemes-badge-footer:hover .material-icons-outlined {
    color: #25d366;
}

/* Navigasi 2 Kolom di Kondisi Apapun */
.newsthemes-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 20px;
}

.newsthemes-footer-links li {
    margin-bottom: 0; /* Jarak diatur oleh gap grid */
}

.newsthemes-footer-links li a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
}

.newsthemes-footer-links li a:hover {
    color: #ffffff;
    padding-left: 5px;
}

/* Payment Info */
.newsthemes-footer-method {
    margin-top: 25px;
}

.newsthemes-footer-method p {
    font-size: small;
    line-height: 1.6;
}
.newsthemes-footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.newsthemes-copyright {
    font-size: small;
}

/* Social Footer */

.newsthemes-footer-social {
    margin-top: 20px;
}

.social-icons-list {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-icons-list a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 16px;
    background-color: rgba(255, 255, 255, 0.05);
    color: #94a3b8;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

/* --- TOOLTIP TEXT (SUPER TRANSPARENT) --- */
.social-icons-list a::after {
    content: attr(data-hover);
    position: absolute;
    bottom: 135%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(37, 211, 102, 0.15); /* Hijaunya dibikin tipis banget Bos */
    backdrop-filter: blur(10px); /* Efek kaca diperkuat */
    color: #ffffff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    border: 1px solid rgba(37, 211, 102, 0.2); /* Border tipis buat framing */
}

/* --- TOOLTIP ARROW --- */
.social-icons-list a::before {
    content: '';
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: rgba(37, 211, 102, 0.15) transparent transparent transparent;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

/* --- HOVER EFFECT --- */
.social-icons-list a:hover {
    color: #ffffff;
    background-color: rgba(37, 211, 102, 0.1);
    border-color: rgba(37, 211, 102, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-icons-list a:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.social-icons-list a:hover::before {
    opacity: 1;
    visibility: visible;
}


/* --- RESPONSIVE --- */

@media (max-width: 992px) {
    .newsthemes-footer-grid {
        grid-template-columns: 1fr;
    }
    
    .newsthemes-footer-brand {
        grid-column: span 1;
    }
}

@media (max-width: 640px) {
    .newsthemes-footer-global {
        padding: 50px 0 30px;
    }

    .newsthemes-footer-grid {
        grid-template-columns: 1fr;
    }

    .newsthemes-footer-brand {
        grid-column: span 1;
    }
    
    .newsthemes-footer-links {
        /* Tetap 2 kolom sesuai instruksi Bos */
        grid-template-columns: repeat(2, 1fr);
    }

    .newsthemes-footer-bottom {
        margin-top: 40px;
    }
}