/* Footer Base Styles */
.site-footer {
    padding: 10px 0;
}

.site-footer a {
    text-decoration: none;
}

.site-footer a:hover {
    color: #0066cc;
    text-decoration: underline;
}

/* Inner Container */
.site-footer .inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}

/* Footer Columns */
.footer-satu, .footer-dua, .footer-tiga {
    flex: 1;
    min-width: 250px;
    margin-bottom: 20px;
}

/* Google Maps Responsive */
.footer-satu iframe {
    width: 100%;
    height: 200px;
    border: none;
    border-radius: 5px;
}

/* Social Media Icons */
.copyright img {
    width: 32px;
    height: 32px;
    margin: 0 10px;
    transition: transform 0.3s;
}

.copyright img:hover {
    transform: scale(1.1);
}

/* Copyright Section */
.copyright {
    text-align: center;
    padding: 20px 0;
    margin-top: 30px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .site-footer .inner {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-satu, .footer-dua, .footer-tiga {
        width: 100%;
        flex: none;
    }
    
    .footer-satu iframe {
        height: 250px;
    }
}