/* ==========================
   FOOTER (BLACK THEME – FINAL)
========================== */

.site-footer {
    background: #000000;
    color: #ffffff;
    padding: 4rem 2rem 1.5rem;
    margin-top: 4rem;
    font-family: inherit;
}

/* ==========================
   FOOTER CONTAINER
========================== */

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr; /* Brand column wider */
    column-gap: 3.5rem;
    align-items: flex-start;
    padding: 0 1rem;
}

/* ==========================
   FOOTER COLUMNS
========================== */

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

/* ==========================
   BRAND COLUMN
========================== */

.footer-brand {
    gap: 1.4rem;
}

.footer-brand img {
    width: 110px;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #dddddd;
}

/* ==========================
   COLUMN HEADINGS
========================== */

.footer-col h4 {
    font-size: 1.15rem;
    margin-bottom: 1.6rem;
    position: relative;
    color: #ffffff;
}

.footer-col h4::after {
    content: "";
    width: 34px;
    height: 3px;
    background: #ffffff;
    position: absolute;
    left: 0;
    bottom: -10px;
}

/* ==========================
   TEXT & LINKS
========================== */

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #dddddd;
    margin: 0;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: #dddddd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

/* ==========================
   FOOTER BOTTOM BAR
========================== */

.footer-bottom {
    margin-top: 3rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #cccccc;
    margin: 0;
}

.footer-bottom a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* ==========================
   RESPONSIVE DESIGN
========================== */

@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 3rem;
        row-gap: 3rem;
    }
}

@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand,
    .footer-col {
        align-items: center;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
}
