/* =============================
   FOOTER
============================= */
.footer {
    background: #0b1f1a;
    color: #e5e7eb;
    margin-top: 60px;
}

.footer-container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 60px 20px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
}

/* =============================
   BRAND
============================= */
.footer-brand img {
    height: 45px;
    margin-bottom: 15px;
    width: auto;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.6;
    color: #cbd5e1;
}

/* =============================
   SECTION HEADINGS
============================= */
.footer-links h4,
.footer-contact h4 {
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}

/* =============================
   LINKS
============================= */
.footer-links a,
.footer-contact a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a {
    display: block;
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #ffffff;
}

/* =============================
   CONTACT
============================= */
.footer-contact p {
    font-size: 14px;
    margin-bottom: 12px;
    color: #cbd5e1;
    line-height: 1.6;
}

/* WhatsApp */
.whatsapp-contact a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #25d366;
    font-weight: 500;
}

.whatsapp-contact a:hover {
    color: #1ebe5d;
}

.whatsapp-contact i {
    font-size: 20px;
}

/* =============================
   BOTTOM BAR
============================= */
.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;
        text-align: center;
    }

    .footer-brand img {
        margin: 0 auto 15px;
        display: block;
    }

    .whatsapp-contact a {
        justify-content: center;
    }
}