/* ================================================================
   FOOTER — Web/Desktop CSS
   ================================================================ */

.site-footer {
    background: var(--footer-bg, #111827);
    color: var(--footer-text, #9ca3af);
    margin-top: 64px;
    font-family: 'Nunito Sans', sans-serif;
}

/* ── Footer Top ── */
.footer-top { padding: 56px 0 40px; }

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ── Brand Column ── */
.ft-brand-name {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 12px;
}
.ft-desc {
    font-size: .84rem;
    line-height: 1.75;
    color: #9ca3af;
    margin-bottom: 20px;
}

/* ── Socials ── */
.ft-socials {
    display: flex;
    gap: 9px;
    margin-bottom: 24px;
}
.ft-social-a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.07);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    text-decoration: none;
    font-size: .88rem;
    transition: .25s;
}
.ft-social-a:hover {
    background: var(--primary-color, #3498db);
    color: #fff;
    transform: translateY(-2px);
}

/* ── Newsletter ── */
.ft-nl-label {
    font-size: .78rem;
    color: #9ca3af;
    margin-bottom: 9px;
}
.ft-nl-row { display: flex; }
.ft-nl-input {
    flex: 1;
    padding: 9px 14px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 9px 0 0 9px;
    color: #fff;
    font-size: .83rem;
    outline: none;
    font-family: 'Nunito Sans', sans-serif;
}
.ft-nl-input::placeholder { color: #6b7280; }
.ft-nl-btn {
    padding: 9px 16px;
    background: var(--primary-color, #3498db);
    color: #fff;
    border: none;
    border-radius: 0 9px 9px 0;
    cursor: pointer;
    font-size: .8rem;
    font-weight: 700;
    white-space: nowrap;
    font-family: 'Nunito Sans', sans-serif;
    transition: opacity .2s;
}
.ft-nl-btn:hover { opacity: .85; }
.ft-nl-msg {
    font-size: .75rem;
    min-height: 14px;
    margin-top: 6px;
}

/* ── Links Columns ── */
.ft-col-title {
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
    font-family: 'Nunito Sans', sans-serif;
}
.ft-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.ft-links li { margin-bottom: 10px; }
.ft-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: .85rem;
    transition: .2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.ft-links a:hover {
    color: var(--primary-color, #3498db);
    transform: translateX(3px);
}

/* ── Contact Column ── */
.ft-contact-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}
.ft-ci {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(255,255,255,.06);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}
.ft-ci i {
    color: var(--primary-color, #3498db);
    font-size: .8rem;
}
.ft-cv {
    font-size: .83rem;
    color: #9ca3af;
    line-height: 1.5;
}
.ft-cv a {
    color: #9ca3af;
    text-decoration: none;
}

/* ── Payment Badges ── */
.ft-payments {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 18px;
}
.ft-pay {
    background: rgba(255,255,255,.06);
    border-radius: 6px;
    padding: 4px 10px;
    font-size: .7rem;
    font-weight: 700;
    color: #9ca3af;
}

/* ── Bottom Bar ── */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.07);
    padding: 18px 32px;
}
.footer-bottom-in {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: .76rem;
    color: #4b5563;
}
.footer-bottom-in a {
    color: #4b5563;
    text-decoration: none;
    transition: color .2s;
}
.footer-bottom-in a:hover { color: #9ca3af; }