/* =========================================
   FOOTER SECTION - GLOBAL (DESKTOP)
   ========================================= */
.footer-section {
    background-color: #050505;
    color: #b0b0b0;
    padding-top: 80px; /* Padding Desktop */
    font-size: 0.95rem;
    border-top: 1px solid #222;
}

.footer-content {
    display: grid;
    /* Minmax 220px aman untuk 4 kolom di layar lebar */
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    padding-bottom: 60px;
}

/* --- Kolom Brand --- */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 20px;
}

.footer-logo-icon {
    height: 35px;
}

.footer-desc {
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 300px; /* Batasi lebar teks deskripsi */
}

/* Social Icons */
.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #1a1a1a;
    color: white;
    border-radius: 8px;
    font-size: 1.2rem;
    text-decoration: none;
    transition: 0.3s;
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

/* --- Kolom Judul --- */
.footer-col h3 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
}

/* --- Link List --- */
.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: 0.3s;
    display: inline-block; /* Agar transform jalan */
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px); /* Geser kanan dikit */
}

/* --- Kontak List --- */
.contact-list {
    list-style: none;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
}

.contact-list i {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-top: 3px;
    flex-shrink: 0; /* Ikon tidak gepeng kalau teks panjang */
}

/* --- FOOTER BOTTOM (Hak Cipta) --- */
.footer-bottom {
    background-color: #000;
    padding: 25px 0;
    border-top: 1px solid #1a1a1a;
}

.bottom-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #666;
}

.legal-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.85rem;
    margin-left: 20px;
    transition: 0.3s;
}

.legal-links a:hover {
    color: white;
}

/* =========================================
   TABLET VIEW (Max-width: 768px)
   ========================================= */
@media screen and (max-width: 768px) {
    .footer-section {
        padding-top: 60px;
    }

    .footer-content {
        gap: 30px; /* Jarak antar kolom lebih rapat */
        padding-bottom: 40px;
    }

    /* Penyesuaian Bottom Wrapper */
    .bottom-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .legal-links a {
        margin: 0 15px; /* Margin kiri-kanan seimbang */
    }
}

/* =========================================
   MOBILE VIEW (Max-width: 480px)
   ========================================= */
@media screen and (max-width: 480px) {
    .footer-section {
        padding-top: 50px;
    }

    .footer-content {
        /* Paksa jadi 1 kolom memanjang ke bawah */
        grid-template-columns: 1fr;
        gap: 40px; 
    }

    /* Brand di HP */
    .footer-desc {
        max-width: 100%; /* Full width */
        font-size: 0.9rem;
    }

    /* Judul Kolom di HP */
    .footer-col h3 {
        margin-bottom: 15px;
        font-size: 1.2rem;
        border-bottom: 1px solid #222; /* Garis bawah pemisah */
        padding-bottom: 10px;
        display: inline-block;
        width: 100%;
    }

    /* Link & Kontak lebih renggang biar gampang ditap */
    .footer-links li, 
    .contact-list li {
        margin-bottom: 15px;
    }

    .footer-links a {
        font-size: 1rem;
    }

    /* Bottom Section HP */
    .footer-bottom {
        padding: 20px 0;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
    }
    .puter {
        font-size: 18px;
    }
    .footer-logo-icon {
        height: 30px;
    }
}