/* FOOTER */
.footer {
    background: #cfe8f8;
    padding: 30px 40px 20px;
    margin-top: 40px;
}

/* CONTAINER */
.footer-container {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2px 1.2fr;
    align-items: stretch;
    column-gap: 40px;
}

/* KIRI */
.footer-left {
    display: flex;
    flex-direction: column;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 10px;
}

.footer-brand img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    background: transparent;
    padding: 0;
}

.footer-brand h3 {
    font-size: 16px;
    font-weight: 700;
    text-decoration: underline;
}

.footer-description {
    font-size: 14px;
    line-height: 1.7;
    color: #222;
    text-align: justify;
    max-width: 500px;
}

/* KANAN */
.footer-right h3 {
    font-size: 16px;
    font-weight: 700;
    text-decoration: underline;
    margin-bottom: 16px;
}

/* CONTACT */
.footer-contact-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.contact-col p {
    font-size: 12px;
    margin-bottom: 10px;
}

/* BOTTOM */
.footer-bottom {
    max-width: 1180px;
    margin: 20px auto 0;
    padding-top: 10px;
    border-top: 1.5px solid #5d5d5d;
    text-align: center;
    font-size: 12px;
}

/* RAPIIIN JARAK CTA KE FOOTER */
.cta-section + .footer {
    margin-top: 40px;
}

/* PERBAIKI GARIS TENGAH */
.footer-divider {
    width: 2px;
    background: #6d6d6d;
    align-self: stretch;
    min-height: 100%;
    margin: 0;
}

.footer-right {
    padding-left: 10px;
}

/* RAPIIIN TEKS BIAR GAK KEKECILAN */
.footer-description {
    font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {

    .footer-container {
        flex-direction: column;
        align-items: stretch;
    }

    .footer-divider {
        width: 100%;
        min-height: 2px;
    }
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        row-gap: 20px;
    }

    .footer-divider {
        display: none;
    }

    .footer-right {
        padding-left: 0;
    }
}