/* =========================
   FOOTER - DESKTOP
========================= */
.footer {
    background: #b15504;
    color: white;
    padding: 70px 0 0;            /* ← removed bottom padding, footer-bottom handles it */
    width: 100%;
    margin: 0;                    /* ← kill inherited margin */
    display: block;
}

.footer-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 8%;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    align-items: start;
}

.footer h3 {
    color: #f4c430;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 700;
}

.footer p {
    color: #f0e0d0;
    font-size: 14px;
    line-height: 1.7;
}

/* ABOUT */
.footer-about p {
    margin-bottom: 16px;
}

/* CONTACT */
.footer-contact p {
    margin: 8px 0;
    font-size: 13.5px;
    color: #f0e0d0;
}

/* LINKS */
.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
    color: #f0e0d0;
    font-size: 14px;
}

.footer-links ul li a {
    color: #f0e0d0;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links ul li a:hover {
    color: #f4c430;
    padding-left: 6px;
}

/* NEWSLETTER */
.footer-newsletter p {
    margin-bottom: 16px;
}

.footer-newsletter form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-newsletter input {
    padding: 11px 14px;
    border: none;
    border-radius: 6px;
    outline: none;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
}

.footer-newsletter button {
    padding: 11px;
    background: #f4c430;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
}

.footer-newsletter button:hover {
    background: white;
    color: black;
    transform: scale(1.03);
}

/* BOTTOM BAR */
.footer-bottom {
    text-align: center;
    margin-top: 50px;
    border-top: 1px solid rgba(255,255,255,0.15);
    padding: 22px 5%;             /* ← padding on all sides, no gap */
    margin-bottom: 0;             /* ← flush to page bottom */
    font-size: 13px;
    color: #f0e0d0;
    background: #b15504;          /* ← explicit bg so no bleed through */
}


/* =========================
   FOOTER - TABLET
========================= */
@media (min-width: 769px) and (max-width: 1024px) {

    .footer {
        padding: 55px 0 0;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
        padding: 0 6%;
    }

    .footer-about {
        grid-column: 1 / -1;
    }

    .footer h3 {
        font-size: 17px;
    }

    .footer-bottom {
        margin-top: 40px;
    }
}


/* =========================
   FOOTER - MOBILE
========================= */
@media (max-width: 768px) {

    .footer {
        padding: 50px 0 0;        /* ← no bottom padding here */
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 5%;
    }

    .footer h3 {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .footer p,
    .footer-links ul li,
    .footer-contact p {
        font-size: 13.5px;
    }

    .footer-newsletter input,
    .footer-newsletter button {
        font-size: 13.5px;
        padding: 11px;
    }

    .footer-bottom {
        margin-top: 35px;
        font-size: 12px;
        padding: 16px 5% 20px;    /* ← bottom padding kills the white gap */
        margin-bottom: 0;
    }
}