/* ======================================================================
   Footer — Cohort 9 (Verdant Mart)
   Signature: full GREEN slab + dark-green bottom bar + circular logo
   center + amber column headings + WhatsApp green social hover.
   ====================================================================== */

.footer-9-main {
    background: var(--bs-primary);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.92rem;
}

/* ---------- Newsletter strip (top) ---------- */
.footer-9-newsletter {
    background: var(--bs-secondary);
    color: #fff;
}
.footer-9-newsletter-title {
    color: #fff;
    font-weight: 700;
}
.footer-9-newsletter-sub { color: rgba(255, 255, 255, 0.88); }
.footer-9-newsletter-field {
    display: flex;
    border-radius: 0.4rem;
    overflow: hidden;
    background: #fff;
    border: 2px solid rgba(255, 255, 255, 0.4);
}
.footer-9-newsletter-input {
    border: none;
    background: transparent;
    color: var(--bs-body-color);
    padding: 0.6rem 0.85rem;
    flex: 1 1 auto;
    min-width: 0;
}
.footer-9-newsletter-input:focus { outline: none; }
.footer-9-newsletter-submit {
    background: var(--bs-warning);
    color: var(--bs-body-color);
    border: none;
    padding: 0 1.5rem;
    font-weight: 700;
    cursor: pointer;
}
.footer-9-newsletter-submit:hover { background: #E5A100; }

/* ---------- 3-col + brand circle ---------- */
.footer-9-col-title {
    color: var(--bs-warning);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.85rem;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    display: inline-block;
}
.footer-9-col-link {
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.10s ease;
    font-size: 0.9rem;
    display: inline-block;
    padding: 0.2rem 0;
}
.footer-9-col-link:hover {
    color: var(--bs-warning);
}

/* ---------- Brand (left, circular logo) ---------- */
.footer-9-brand-logo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #fff;
    padding: 0.35rem;
    object-fit: contain;
    margin-bottom: 0.85rem;
    border: 3px solid rgba(255, 255, 255, 0.2);
}
.footer-9-tagline {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.88rem;
}

/* ---------- Support column phone CTA ---------- */
.footer-9-support-cta {
    color: #fff;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.20);
    padding: 0.6rem 0.85rem;
    border-radius: 0.4rem;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    text-decoration: none;
    transition: background 0.10s ease;
}
.footer-9-support-cta:hover {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}
.footer-9-support-icon {
    width: 38px;
    height: 38px;
    background: var(--bs-warning);
    color: var(--bs-secondary);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 38px;
}
.footer-9-support-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.footer-9-support-number {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
}
.footer-9-support-email {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.5rem;
    text-decoration: none;
}
.footer-9-support-email:hover { color: var(--bs-warning); }

/* ---------- Connected With Us — social icons ---------- */
.footer-9-social-link {
    width: 36px; height: 36px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.10s ease, transform 0.10s ease;
}
.footer-9-social-link:hover {
    background: var(--bs-warning);
    color: var(--bs-secondary);
    transform: translateY(-1px);
}

.footer-9-address {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
}
.footer-9-address-link, .footer-9-contact-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}
.footer-9-contact-link {
    color: var(--bs-warning);
    font-weight: 600;
}
.footer-9-contact-link:hover { color: #FFE082; text-decoration: underline !important; }

/* ---------- Bottom bar (darker green) ---------- */
.footer-9-bottom {
    background: var(--bs-secondary);
    color: rgba(255, 255, 255, 0.85);
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    padding: 0.85rem 0;
}
.footer-9-copy { color: rgba(255, 255, 255, 0.85); }
.footer-9-copy-name { color: #fff; font-weight: 700; }
.site-footer-developed-by { color: rgba(255, 255, 255, 0.85); }
.footer-9-credit-link { color: var(--bs-warning); }
.footer-9-credit-link:hover { color: #FFE082; }

/* Need to map old footer-8 class refs that still appear via the copy */
.footer-8-main { background: var(--bs-primary) !important; color: rgba(255, 255, 255, 0.92) !important; }
.footer-8-newsletter { background: var(--bs-secondary) !important; }
.footer-8-newsletter-title, .footer-8-newsletter-sub { color: #fff !important; }
.footer-8-newsletter-field { border-color: rgba(255, 255, 255, 0.4) !important; }
.footer-8-newsletter-submit { background: var(--bs-warning) !important; color: var(--bs-body-color) !important; }
.footer-8-col-title { color: var(--bs-warning) !important; border-bottom: 1px solid rgba(255, 255, 255, 0.25) !important; }
.footer-8-col-link { color: rgba(255, 255, 255, 0.85) !important; }
.footer-8-col-link:hover { color: var(--bs-warning) !important; }
.footer-8-support-cta { color: #fff !important; background: rgba(255, 255, 255, 0.10) !important; }
.footer-8-support-icon { background: var(--bs-warning) !important; color: var(--bs-secondary) !important; }
.footer-8-support-label { color: rgba(255, 255, 255, 0.7) !important; }
.footer-8-support-number { color: #fff !important; }
.footer-8-support-email { color: rgba(255, 255, 255, 0.85) !important; }
.footer-8-social-link { background: rgba(255, 255, 255, 0.15) !important; color: #fff !important; }
.footer-8-social-link:hover { background: var(--bs-warning) !important; color: var(--bs-secondary) !important; }
.footer-8-address, .footer-8-address-link { color: rgba(255, 255, 255, 0.85) !important; }
.footer-8-contact-link { color: var(--bs-warning) !important; }
.footer-8-bottom { background: var(--bs-secondary) !important; }
.footer-8-copy { color: rgba(255, 255, 255, 0.85) !important; }
.footer-8-copy-name { color: #fff !important; }
.footer-8-credit-link { color: var(--bs-warning) !important; }
