/* --- HERBIE FOOTER STYLES --- */
.herbie-footer * { box-sizing: border-box; }
.herbie-footer { background: #1a0033; color: #fff; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; position: relative; z-index: 10; margin-top: 50px; }
.herbie-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; width: 100%; }
.herbie-footer-top { padding: 60px 0; border-top: 4px solid #FFD700; }
.herbie-footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; }

/* Kumpulan Elemen di Dalam Kolom */
.herbie-about-logo { max-height: 65px; width: auto; margin-bottom: 20px; display: block; }
.herbie-footer-title { color: #FFD700; font-size: 1.2rem; font-weight: 800; margin: 0 0 20px 0; text-transform: uppercase; letter-spacing: 1px; }
.herbie-footer-text { color: #ccc; font-size: 0.95rem; line-height: 1.7; margin: 0 0 20px 0; }

/* Tautan Sosial Media */
.herbie-social-links { display: flex; gap: 10px; margin-top: 15px; }
.herbie-social-links a { display: flex; justify-content: center; align-items: center; width: 38px; height: 38px; background: rgba(255,255,255,0.1); border-radius: 50%; color: #fff; text-decoration: none; transition: 0.3s; font-size: 18px; }
.herbie-social-links a:hover { background: #FFD700; color: #1a0033; transform: translateY(-3px); }

/* Tautan Cepat & Info Kontak */
.herbie-footer-links { list-style: none; padding: 0; margin: 0; }
.herbie-footer-links li { margin-bottom: 12px; }
.herbie-footer-links li a { color: #ccc; text-decoration: none; font-size: 0.95rem; transition: all 0.3s ease; display: inline-block; }
.herbie-footer-links li a:hover { color: #FFD700; transform: translateX(5px); }
.herbie-footer-contact { list-style: none; padding: 0; margin: 0; }
.herbie-footer-contact li { color: #ccc; font-size: 0.95rem; margin-bottom: 15px; display: flex; align-items: flex-start; gap: 10px; line-height: 1.5; }
.herbie-footer-contact li .dashicons { color: #FFD700; font-size: 18px; margin-top: 2px; }

/* Bagian Bawah (Copyright Kiri - Designed Kanan) */
.herbie-footer-bottom { background: #0d001a; padding: 20px 0; }
.herbie-copyright-area { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.herbie-copyright-area p { margin: 0; font-size: 0.85rem; font-weight: 500; color: #888; }
.herbie-copyright-area a { color: #FFD700; text-decoration: none; transition: 0.3s; font-weight: 600; }

/* RESPONSIVE MOBILE */
@media (max-width: 768px) { 
    .herbie-footer { margin-top: 30px; }
    .herbie-footer-top { padding: 40px 0 20px; } 
    .herbie-footer-grid { grid-template-columns: 1fr; gap: 30px; } 
    .herbie-footer-title { margin-bottom: 15px; } 
    .herbie-footer-contact li { margin-bottom: 10px; }
    .herbie-copyright-area { justify-content: center; text-align: center; } /* Memusatkan di HP agar rapi */
}