/* =========================================================
   FOOTER
   ========================================================= */

#kaki.site-footer {
    width: 100%;
    margin: 0;
    padding: 42px 32px 50px;
    box-sizing: border-box;

    background: #00756c;
    color: #ffffff;

    font-family: Poppins, sans-serif;
}

/* =========================================================
   FOOTER CONTAINER
   ========================================================= */

.site-footer__inner {
    width: min(1200px, 100%);
    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(210px, .78fr)
        minmax(0, 1.15fr);

    gap: 64px;

    align-items: start;
}


/* =========================================================
   BRAND
   ========================================================= */

.site-footer__brand,
.site-footer__column {
    min-width: 0;
}


/* BRAND CENTER */

.site-footer__brand {
    display: flex;
    flex-direction: column;

    align-items: center;
    text-align: center;
}


/* =========================================================
   LOGO
   ========================================================= */

.site-footer__logo-link {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    text-decoration: none;
}


.site-footer__logo {
    display: block;

    width: 165px;
    max-width: 100%;

    height: auto;
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.site-footer__description {
    width: 100%;
    max-width: 430px;

    margin: 16px auto 0;

    color: #ffffff;

    font-size: 15px;
    line-height: 1.65;

    text-align: center;
}


/* =========================================================
   GARIS DI ATAS SOCIAL MEDIA
   ========================================================= */

.site-footer__divider {
    width: 100%;
    max-width: 400px;

    height: 1px;

    margin: 20px auto 20px;

    background: rgba(255, 255, 255, 0.75);
}


/* =========================================================
   SOCIAL MEDIA
   ========================================================= */

.site-footer__social {
    display: flex;

    align-items: center;
    justify-content: center;

    flex-wrap: nowrap;

    gap: 0;
}


/* =========================================================
   SOCIAL LINK
   ========================================================= */

.site-footer__social-link {
    position: relative;

    width: 70px;
    height: 50px;

    display: flex;

    align-items: center;
    justify-content: center;

    text-decoration: none;

    color: #00756c;

    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}


/* =========================================================
   GARIS PEMISAH ANTAR SOCIAL MEDIA
   ========================================================= */

.site-footer__social-link:not(:last-child)::after {
    content: "";

    position: absolute;

    right: 0;
    top: 50%;

    width: 1px;
    height: 34px;

    transform: translateY(-50%);

    background: rgba(255, 255, 255, 0.9);
}


/* =========================================================
   KOTAK PUTIH SOCIAL MEDIA
   ========================================================= */

.site-footer__social-box {
    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #ffffff;

    border-radius: 10px;

    box-sizing: border-box;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


/* ICON */

.site-footer__social-box svg {
    width: 23px;
    height: 23px;

    display: block;

    color: #00756c;

    fill: currentColor;
}


/* HOVER */

.site-footer__social-link:hover .site-footer__social-box {
    transform: translateY(-3px);

    box-shadow:
        0 5px 12px rgba(0, 0, 0, 0.18);
}


.site-footer__social-link:hover {
    opacity: 1;
}


/* =========================================================
   COLUMN
   ========================================================= */

.site-footer__column {
    padding-top: 7px;
}


/* TITLE */

.site-footer__column h4 {
    margin: 0 0 20px;

    color: #ffffff;

    font-size: 21px;
    font-weight: 600;

    line-height: 1.35;
}


/* =========================================================
   NAVIGATION
   ========================================================= */

.site-footer__links,
.site-footer__contact-list {
    list-style: none;

    margin: 0;
    padding: 0;
}


.site-footer__links li + li {
    margin-top: 12px;
}


.site-footer__links a,
.site-footer__contact-list a {
    color: #ffffff;

    font-size: 15px;
    line-height: 1.6;

    text-decoration: none;

    transition: opacity 0.18s ease;
}


.site-footer__links a:hover,
.site-footer__links a:focus-visible,
.site-footer__contact-list a:hover,
.site-footer__contact-list a:focus-visible {
    color: #ffffff;
    opacity: 0.78;
}


/* =========================================================
   CONTACT
   ========================================================= */

.site-footer__contact-title {
    margin-top: 27px !important;
}


/* ADDRESS */

.site-footer__contact-row {
    display: flex;

    align-items: flex-start;

    gap: 13px;

    margin: 0;

    color: #ffffff;

    font-size: 15px;
    line-height: 1.65;
}


.site-footer__contact-row svg,
.site-footer__contact-list svg {
    flex: 0 0 auto;

    width: 18px;
    height: 18px;

    margin-top: 3px;

    fill: currentColor;
}


/* CONTACT LIST */

.site-footer__contact-list li + li {
    margin-top: 12px;
}


.site-footer__contact-list a {
    display: flex;

    align-items: flex-start;

    gap: 10px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991.98px) {

    #kaki.site-footer {
        padding: 36px 28px 30px;
    }


    .site-footer__inner {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(0, 1fr);

        gap: 42px 48px;

        width: min(900px, 100%);
    }


    .site-footer__brand {
        grid-column: 1 / -1;

        max-width: 720px;

        width: 100%;

        margin: 0 auto;
    }


    .site-footer__description {
        font-size: 15px;

        max-width: 620px;
    }


    .site-footer__column {
        padding-top: 0;
    }


    .site-footer__column h4 {
        font-size: 20px;
    }


    .site-footer__links a,
    .site-footer__contact-list a,
    .site-footer__contact-row {
        font-size: 15px;
    }

}


/* =========================================================
   ANDROID / IPHONE
   ========================================================= */

@media (max-width: 575.98px) {

    #kaki.site-footer {
        padding: 34px 22px 28px;
    }


    .site-footer__inner {
        display: flex;

        flex-direction: column;

        gap: 38px;

        width: 100%;
    }


    .site-footer__brand,
    .site-footer__column {
        width: 100%;
        max-width: 100%;
    }


    /* LOGO MOBILE */

    .site-footer__logo {
        width: 145px;
    }


    /* DESCRIPTION */

    .site-footer__description {
        max-width: 390px;

        margin-top: 14px;

        font-size: 14px;

        line-height: 1.7;
    }


    /* GARIS */

    .site-footer__divider {
        margin-top: 17px;
        margin-bottom: 17px;

        max-width: 360px;
    }


    /* SOCIAL */

    .site-footer__social {
        width: 100%;

        justify-content: center;
    }


    .site-footer__social-link {
        width: 25%;

        max-width: 70px;

        height: 48px;
    }


    .site-footer__social-box {
        width: 42px;
        height: 42px;

        border-radius: 9px;
    }


    .site-footer__social-box svg {
        width: 21px;
        height: 21px;
    }


    .site-footer__social-link:not(:last-child)::after {
        height: 30px;
    }


    /* COLUMN */

    .site-footer__column {
        text-align: center;
    }


    .site-footer__column h4 {
        margin-bottom: 15px;

        font-size: 20px;
    }


    .site-footer__links li + li {
        margin-top: 10px;
    }


    .site-footer__links a,
    .site-footer__contact-list a,
    .site-footer__contact-row {
        font-size: 14px;

        line-height: 1.7;
    }


    .site-footer__contact-title {
        margin-top: 25px !important;
    }


    .site-footer__contact-row {
        justify-content: center;

        text-align: center;

        gap: 10px;
    }


    .site-footer__contact-row span {
        max-width: 340px;
    }


    .site-footer__contact-list {
        display: flex;

        flex-direction: column;

        align-items: center;
    }


    .site-footer__contact-list a {
        justify-content: center;

        text-align: center;
    }

}


/* =========================================================
   HP KECIL
   ========================================================= */

@media (max-width: 380px) {

    #kaki.site-footer {
        padding-left: 17px;
        padding-right: 17px;
    }


    .site-footer__description {
        font-size: 13.5px;
    }


    .site-footer__column h4 {
        font-size: 19px;
    }


    .site-footer__links a,
    .site-footer__contact-list a,
    .site-footer__contact-row {
        font-size: 13.5px;
    }


    .site-footer__social-link {
        width: 25%;
    }


    .site-footer__social-box {
        width: 40px;
        height: 40px;
    }

}