/* =============================
   FOOTER
============================= */
.footer {
    background: #0b1f1a;
    color: #e5e7eb;
    margin-top: 60px;
}

.footer-container {
    max-width: 1250px;
    margin: auto;
    padding: 60px 20px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
}

/* Brand */
.footer-brand img {
    height: 45px;
    margin-bottom: 15px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.6;
    color: #cbd5e1;
}

/* Links */
.footer-links h4,
.footer-contact h4 {
    margin-bottom: 15px;
    font-size: 16px;
    color: #ffffff;
}

.footer-links a {
    display: block;
    font-size: 14px;
    margin-bottom: 10px;
    color: #cbd5e1;
    transition: 0.2s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

/* Contact */
.footer-contact p {
    font-size: 14px;
    margin-bottom: 10px;
    color: #cbd5e1;
}

/* Bottom */
.footer-bottom {
    text-align: center;
    padding: 20px;
    border-top: 1px solid #1f2937;
    font-size: 13px;
    color: #94a3b8;
}

/* Responsive */
@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}