/* =============================================
   FOOTER.CSS — Site footer styles
   WhatsApp Campaign
   ============================================= */

.wc-footer {
    background: var(--wc-green-deeper);
    color: rgba(255,255,255,.75);
    padding: 60px 0 0;
    margin-top: auto;
}

.wc-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.wc-footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,.12);
}

/* Brand column */
.footer-brand-desc {
    font-size: 14px;
    line-height: 1.75;
    margin-top: 14px;
    color: rgba(255,255,255,.55);
}

.footer-social {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}

    .footer-social a {
        width: 34px;
        height: 34px;
        background: rgba(255,255,255,.09);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(255,255,255,.65);
        font-size: 14px;
        transition: all var(--wc-transition, .18s ease);
        text-decoration: none;
    }

        .footer-social a:hover {
            background: var(--wc-green);
            color: #fff;
        }

/* Link columns */
.footer-col h5 {
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
}

    .footer-links li {
        margin-bottom: 9px;
    }

    .footer-links a {
        font-size: 14px;
        color: rgba(255,255,255,.55);
        text-decoration: none;
        transition: color .18s ease;
        display: inline-flex;
        align-items: center;
        gap: 5px;
    }

        .footer-links a:hover {
            color: var(--wc-green);
        }

/* ── Newsletter — FIXED ── */
.footer-newsletter p {
    font-size: 14px;
    color: rgba(255,255,255,.55);
    margin-bottom: 14px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .newsletter-form input[type="email"] {
        width: 100%;
        height: 42px;
        padding: 0 14px;
        border: 1.5px solid rgba(255,255,255,.18);
        border-radius: 8px;
        background: rgba(255,255,255,.07);
        color: #fff;
        font-size: 13.5px;
        font-family: inherit;
        outline: none;
        transition: border-color .18s ease, background .18s ease;
    }

        .newsletter-form input[type="email"]::placeholder {
            color: rgba(255,255,255,.30);
        }

        .newsletter-form input[type="email"]:focus {
            border-color: var(--wc-green);
            background: rgba(255,255,255,.10);
        }

    .newsletter-form button {
        width: 100%;
        height: 42px;
        background: var(--wc-green);
        color: #fff;
        border: none;
        border-radius: 8px;
        font-size: 14px;
        font-weight: 700;
        font-family: inherit;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 7px;
        transition: background .18s ease, transform .18s ease;
    }

        .newsletter-form button:hover {
            background: var(--wc-green-dark);
            transform: translateY(-1px);
        }

        .newsletter-form button:active {
            transform: translateY(0);
        }

.newsletter-success {
    font-size: 13px;
    color: var(--wc-green);
    margin-top: 6px;
    display: none;
    align-items: center;
    gap: 5px;
}

    .newsletter-success.show {
        display: flex;
    }

/* Bottom bar */
.wc-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    font-size: 13px;
    color: rgba(255,255,255,.35);
    flex-wrap: wrap;
    gap: 8px;
}

    .wc-footer-bottom a {
        color: rgba(255,255,255,.35);
        text-decoration: none;
        transition: color .18s;
    }

        .wc-footer-bottom a:hover {
            color: var(--wc-green);
        }

@media (max-width: 960px) {
    .wc-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 600px) {
    .wc-footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .wc-footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
