@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

.main-footer {
    background-color: #071b38;
    color: #ffffff;
    font-family: "Inter", sans-serif;
    padding: 60px 80px 30px 80px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 1440px;
    margin: 0 auto;
}

/* Kolom Brand/Logo */
.brand-col {
    flex: 0 0 300px;
}

.footer-logo img {
    width: 70%; /* Sesuaikan ukuran logo */
    margin-bottom: 25px;
}

.contact-info p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    color: #e0e0e0;
}

.contact-info img {
    width: 18px;
    margin-right: 10px;
}

.social-icons {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.social-icons img {
    width: 24px;
    transition: opacity 0.3s;
}

.social-icons img:hover {
    opacity: 0.8;
}

/* Kolom Link Navigasi */
.footer-column h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Divider & Bottom Section */
.footer-divider {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 40px 0 20px 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #b0b0b0;
    max-width: 1440px;
    margin: 0 auto;
}

/* Legalitas Section */
.legalitas {
    margin-top: 25px;
}

.legalitas h5 {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

.legalitas img {
    width: 100%;
    max-width: 220px;
    height: auto;
    border-radius: 6px;
}

.footer-legal a {
    color: #b0b0b0;
    text-decoration: none;
}

.footer-legal span {
    margin: 0 8px;
}
