/* ================= FOOTER BACKGROUND ================= */
footer {
    background: var(--footer-gradient);
    color: var(--text-light);
}

/* ================= FOOTER HEADINGS ================= */
footer h5 {
    width: 100%;
    text-align: center;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 16px;
    position: relative;
}

/* Golden underline (default centered) */
footer h5::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 8px auto 0;
    border-radius: 2px;
}

/* ================= IMPORTANT LINKS ================= */
footer ul {
    padding-left: 0;
    list-style: none;
}

footer ul li {
    text-align: center;
}

/* ================= FOOTER LINKS ================= */
.footer-link {
    color: #ddd;
    text-decoration: none;
    font-size: 14px;
    display: block;
    padding: 4px 0;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--gold);
    padding-left: 5px;
}

/* ================= CONTACT SECTION FIX ================= */
/* Right-most column (Contact) */
footer .col-lg-4:last-child,
footer .col-lg-5:last-child {
    text-align: left;
}

/* Contact heading left aligned */
footer .col-lg-4:last-child h5,
footer .col-lg-5:last-child h5 {
    text-align: left;
}

/* Contact heading underline left */
footer .col-lg-4:last-child h5::after,
footer .col-lg-5:last-child h5::after {
    margin-left: 0;
}

/* Contact paragraph spacing */
footer .col-lg-4:last-child p,
footer .col-lg-5:last-child p {
    margin-bottom: 6px;
    line-height: 1.6;
    text-align: left;
}

/* ================= POLICY LINKS (BOTTOM ROW) ================= */
.policy-link {
    color: #fdf3e7;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-decoration: none;
}

.policy-link:hover {
    color: var(--gold);
    text-decoration: underline;
}

/* ===== MOBILE FIX FOR CONTACT SECTION ===== */
@media (max-width: 767px) {

    /* Contact column center */
    footer .col-lg-4:last-child,
    footer .col-lg-5:last-child {
        text-align: center !important;
    }

    /* Contact heading center */
    footer .col-lg-4:last-child h5,
    footer .col-lg-5:last-child h5 {
        text-align: center !important;
    }

    /* Underline center */
    footer .col-lg-4:last-child h5::after,
    footer .col-lg-5:last-child h5::after {
        margin: 8px auto 0 !important;
    }

    /* Contact text center */
    footer .col-lg-4:last-child p,
    footer .col-lg-5:last-child p {
        text-align: center !important;
    }
}
