.footer {
    margin-top: 80px;
    padding: 60px 20px 30px;
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-container {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
}

/* REMOVE ALL BOX STYLES */
.footer-brand,
.footer-links,
.footer-services,
.footer-contact {
    background: none;
    border: none;
    padding: 0;
}

/* Logo */
.footer-logo {
    width: 202px;
    height: auto;
    /* margin: auto; */
    margin-bottom: 14px;
}

/* Headings */
.footer h4 {
    margin-bottom: 14px;
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.05em;
}

/* Text */
.footer p,
.footer li,
.footer a {
    color: #aab4d6;
    font-size: 0.9rem;
    line-height: 1.7;
}

/* Lists */
.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer li {
    margin-bottom: 8px;
}

/* Links */
.footer a {
    transition: 0.2s ease;
}

.footer a:hover {
    color: #ffffff;
    transform: translateX(2px);
}

/* Slight spacing for contact */
.footer-contact p {
    margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

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