/* =========================================
KAMPUS NXT FOOTER
========================================= */

.kampus-footer {
background: #0A2540;
color: #ffffff;
padding: 70px 0 25px;
font-family: 'Inter', sans-serif;
}

.footer-container {
width: 90%;
max-width: 1200px;
margin: 0 auto;
}

/* =========================================
FOOTER CONTENT
========================================= */

.footer-content {
display: grid;
grid-template-columns: 2fr 1fr 1fr 1fr;
gap: 55px;
}

/* =========================================
BRAND SECTION
========================================= */

.footer-brand h2 {
margin: 0 0 25px;
font-family: 'Poppins', sans-serif;
font-size: 30px;
font-weight: 700;
letter-spacing: -1px;
}

.footer-brand h2 span {
color: #3B82F6;
}

.footer-brand h3 {
margin: 0 0 18px;
font-family: 'Poppins', sans-serif;
font-size: 25px;
line-height: 1.35;
font-weight: 600;
color: #ffffff;
}

.footer-brand h3 span {
color: #60A5FA;
}

.footer-brand p {
max-width: 420px;
margin: 0;
color: #B8C7D9;
font-size: 15px;
line-height: 1.8;
}

/* =========================================
FOOTER LINKS
========================================= */

.footer-links h4 {
margin: 5px 0 22px;
font-family: 'Poppins', sans-serif;
font-size: 16px;
font-weight: 600;
color: #ffffff;
}

.footer-links a {
display: block;
width: fit-content;
margin-bottom: 13px;
color: #B8C7D9;
text-decoration: none;
font-size: 14px;
transition: all 0.3s ease;
}

.footer-links a:hover {
color: #ffffff;
transform: translateX(4px);
}

/* =========================================
DIVIDER
========================================= */

.footer-divider {
height: 1px;
background: rgba(255, 255, 255, 0.12);
margin: 55px 0 22px;
}

/* =========================================
FOOTER BOTTOM
========================================= */

.footer-bottom {
display: flex;
justify-content: space-between;
align-items: center;
gap: 20px;
}

.footer-bottom p {
margin: 0;
color: #8FA4BA;
font-size: 13px;
}

.footer-legal {
display: flex;
gap: 25px;
}

.footer-legal a {
color: #8FA4BA;
text-decoration: none;
font-size: 13px;
transition: color 0.3s ease;
}

.footer-legal a:hover {
color: #ffffff;
}

/* =========================================
RESPONSIVE DESIGN
========================================= */

@media (max-width: 900px) {

```
.footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 45px 35px;
}

.footer-brand {
    grid-column: 1 / -1;
}
```

}

@media (max-width: 600px) {

```
.kampus-footer {
    padding: 50px 0 20px;
}

.footer-container {
    width: 88%;
}

.footer-content {
    grid-template-columns: 1fr;
    gap: 35px;
}

.footer-brand {
    grid-column: auto;
}

.footer-brand h3 {
    font-size: 22px;
}

.footer-bottom {
    flex-direction: column;
    align-items: flex-start;
}

.footer-legal {
    gap: 18px;
}
```

}
