/* =====================
   GENERAL STYLES
===================== */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #ffffff;
}

/* =====================
   HEADER
===================== */
.site-header {
    background: #ffffff;
    width: 100%;
    border-bottom: 1px solid #eee;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    max-height: 100px;
    width: auto;
}

.main-nav a {
    margin-left: 2rem;
    text-decoration: none;
    font-weight: 600;
    color: #000;
    font-size: 16px;
}

.main-nav a:hover {
    text-decoration: underline;
}

/* =====================
   FOOTER
===================== */
.site-footer {
    background: #111; /* dark premium */
    color: #cfcfcf;
    font-size: 14px;
}

/* FOOTER CONTAINER */
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
    gap: 4rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}

/* FOOTER COLUMN */
.footer-column {
    flex: 1;
}

/* FOOTER HEADING */
.footer-column h4 {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 1.5rem;
    position: relative;
}

/* ACCENT LINE UNDER HEADING */
.footer-column h4::after {
    content: "";
    display: block;
    width: 35px;
    height: 2px;
    background: #007bff;
    margin-top: 0.75rem;
}

/* FOOTER TEXT */
.footer-column p {
    margin: 0 0 0.75rem;
    line-height: 1.8;
    color: #bdbdbd;
}

/* FOOTER LINKS (kalau ada) */
.footer-column a {
    color: #bdbdbd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom {
    background: #ffffff;
    color: #000;
    text-align: center;
    font-size: 15px;
    padding: 12px 10px;
    border-top: 1px solid #e5e5e5;
}

/* =====================
   SOCIAL ICONS
===================== */
.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 1.5rem;
}

.social {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #1f1f1f;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 15px;
    transition: all 0.3s ease;
}

.social:hover {
    background: #007bff;
    transform: translateY(-3px);
}

.social.facebook { background: #1877f2; }
.social.tiktok { background: #000; }

.social.instagram {
    background: radial-gradient(circle at 30% 110%,
        #fdf497 0%, #fdf497 5%, #fd5949 45%,
        #d6249f 60%, #285aeb 90%);
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-column h4::after {
        margin-left: auto;
        margin-right: auto;
    }

    .social-icons {
        justify-content: center;
    }
}