/* ============================================
   FOOTER STYLES — Natural Options Kenya
   ============================================ */

.no-footer {
    background-color: var(--no-forest-dark);
    color: rgba(255, 255, 255, 0.85);
}

/* ---- Main Footer ---- */
.no-footer__main {
    padding: var(--space-4xl) 0 var(--space-2xl);
}

.no-footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--space-3xl);
}

/* Brand Column */
.no-footer__brand {
    /* first column */
}

.no-footer__brand .no-logo {
    margin-bottom: var(--space-lg);
}

.no-footer__brand .no-logo__name {
    color: var(--no-white);
}

.no-footer__brand .no-logo__tagline {
    color: var(--no-gold-light);
}

.no-footer__brand-text {
    font-size: var(--fs-sm);
    color: rgba(255, 255, 255, 0.7);
    line-height: var(--lh-relaxed);
    margin-bottom: var(--space-xl);
}

.no-footer__social {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.no-footer__social-link {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background-color: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    text-decoration: none;
    transition: all var(--transition-fast);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.no-footer__social-link svg {
    display: block;
    fill: currentColor;
    transition: transform 0.2s ease;
}

.no-footer__social-link:hover {
    background-color: var(--no-gold, #C9A96E);
    color: #FFFFFF;
    transform: translateY(-2px);
    border-color: var(--no-gold, #C9A96E);
    box-shadow: 0 4px 12px rgba(201, 169, 110, 0.3);
}

.no-footer__social-link:hover svg {
    transform: scale(1.1);
}

.no-footer__social-link--wa:hover {
    background-color: #25D366;
    border-color: #25D366;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
}

/* Footer Columns */
.no-footer__column-title {
    font-family: var(--font-heading);
    font-size: var(--fs-md);
    font-weight: var(--fw-semibold);
    color: var(--no-white);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.no-footer__links {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.no-footer__link {
    font-size: var(--fs-sm);
    color: rgba(255, 255, 255, 0.7);
    padding: 4px 0;
    transition: all var(--transition-fast);
}

.no-footer__link:hover {
    color: var(--no-gold-light);
    padding-left: 6px;
}

/* Footer Contact */
.no-footer__contact {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.no-footer__contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--fs-sm);
    color: rgba(255, 255, 255, 0.7);
}

.no-footer__contact-icon {
    font-size: var(--fs-md);
    color: var(--no-gold);
}

/* ---- Footer Bottom ---- */
.no-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--space-lg) 0;
}

.no-footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.no-footer__copyright {
    font-size: var(--fs-xs);
    color: rgba(255, 255, 255, 0.5);
}

.no-footer__payments {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.no-footer__payment-icon {
    font-size: var(--fs-xs);
    color: rgba(255, 255, 255, 0.5);
    padding: 4px 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    font-weight: var(--fw-medium);
}
