/* ===== RESET RINGAN ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.kb-header {
    width: 100%;
    background: #00c081; /* warna hijau BiznetGio */
    color: #ffffff;
    font-family: "Nunito", Arial, sans-serif;
    text-align: center;
    padding-bottom: 40px;
}

/* ===================== LOGO ===================== */

.kb-header-top {
    padding: 16px 30px;
    text-align: left;
}

.kb-logo {
    height: 48px;
}

/* ===================== HEADER TEXT ===================== */

.kb-header-content h1 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 10px;
}

.kb-header-content .subtitle {
    margin-top: 3px;
    margin-bottom: 22px;
    font-size: 15px;
    color: #e8fdf7;
}

/* ===================== SEARCH BOX ===================== */

.kb-search-box {
    width: 100%;
    max-width: 430px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.kb-search-box input {
    flex: 1;
    border: none;
    outline: none;
    padding: 12px 14px;
    font-size: 14px;
}

.kb-search-box button {
    background: transparent;
    border: none;
    font-size: 18px;
    padding: 12px 14px;
    cursor: pointer;
    color: #00a36e;
}

/* ===================== RECENT SEARCHES ===================== */

.kb-recent {
    margin-top: 12px;
    font-size: 13px;
    color: #e6fff6;
}

.kb-recent a {
    color: #ffffff;
    text-decoration: underline;
}

/* ===================== RESPONSIVE ===================== */

@media (max-width: 600px) {
    .kb-logo {
        height: 40px;
    }

    .kb-header-content h1 {
        font-size: 22px;
    }
}

/* ========== GLOBAL CONTAINER ========== */
.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== FOOTER WRAPPER ========== */

.kb-footer {
    background: #f7f9fb;
    padding: 50px 0 30px;
    font-family: "Nunito", sans-serif;
    color: #5f6c7b;
}

/* ========== TOP SECTION ========== */

.kb-footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-info .footer-title {
    font-weight: 700;
    margin-bottom: 10px;
    color: #2b3a46;
    font-size: 15px;
}

.footer-info a {
    color: #00a06a;
    text-decoration: none;
}

.footer-info a:hover {
    text-decoration: underline;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    text-decoration: none;
    color: #4e5e67;
    font-size: 14px;
}

.footer-links a:hover {
    color: #00a06a;
}

/* ========== POWERED BY SECTION ========== */

.kb-powered {
    text-align: center;
    color: #00a06a;
    font-weight: 700;
    margin: 15px 0 25px;
    font-size: 14px;
}

/* ========== BOTTOM FOOTER ========== */

.kb-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-social a {
    margin-right: 12px;
    font-size: 18px;
    text-decoration: none;
    color: #5f6c7b;
}

.footer-social a:hover {
    color: #00a06a;
}

.footer-policy a {
    color: #4e5e67;
    text-decoration: none;
}

.footer-policy a:hover {
    color: #00a06a;
}

.footer-copy {
    color: #2b3a46;
    font-weight: 600;
}

/* ========== RESPONSIVE ========== */

@media (max-width: 768px) {
    .kb-footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 500px) {
    .kb-footer-top {
        grid-template-columns: 1fr;
    }

    .kb-footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

