/* ==========================================================================
   Footer Layout & Design
   ========================================================================== */
.site-footer {
    background-color: #0a2558; /* Warna biru tua gelap sesuai gambar */
    color: #ffffff;
    padding: 60px 5% 20px;
    font-family: 'Poppins', sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section {
    flex: 1;
}

/* Kolom Kiri: Artikel */
.kolom-artikel h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
}

.footer-line {
    width: 80px;
    height: 3px;
    background-color: #0074D9;
    margin-bottom: 25px;
}

#footer-grid-artikel {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 Kolom Artikel berdampingan */
    gap: 20px;
    margin-bottom: 25px;
}

.footer-kartu {
    display: flex;
    flex-direction: column;
}

.footer-kartu img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 10px;
}

.footer-meta-tanggal {
    display: block;
    font-size: 11px;
    color: #bdc3c7;
    margin-bottom: 8px;
}

.footer-read-more {
    color: #00a8ff;
    text-decoration: none;
    font-size: 13px;
    font-weight: bold;
}

/* Sosial Media */
.footer-socials {
    display: flex;
    gap: 12px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #ffffff;
    font-size: 18px;
    text-decoration: none;
    transition: transform 0.2s;
}

.social-icon:hover { transform: scale(1.1); }
.fb { background-color: #1877f2; }
.ig { background: linear-gradient(45deg, #f09433, #e1306c, #bc1888); }
.tiktok { background-color: #000000; }

/* Kolom Kanan: Info Jasa */
.kolom-info {
    max-width: 450px;
}

.footer-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: #001f3f;
    padding: 10px 15px;
    border-radius: 8px;
    display: inline-flex;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo-img {
    height: 40px;
    width: auto;
}

.footer-logo-text {
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 1px;
}

.footer-deskripsi {
    font-size: 14px;
    line-height: 1.6;
    color: #ecf0f1;
    margin-bottom: 25px;
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: bold;
}

.footer-contact i {
    color: #25D366;
    font-size: 22px;
}

/* Copyright Pembatas Bawah */
.footer-copyright {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 12px;
    color: #bdc3c7;
}

/* Responsif Layar HP */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 40px;
    }
    #footer-grid-artikel {
        grid-template-columns: 1fr; /* Jadi 1 kolom di HP */
    }
    .kolom-info {
        max-width: 100%;
    }
}