/* ============================================
   POINTUS / ENTERPRISEHUB FOOTER
   ============================================ */

.ft {
    background: #0F172A;
    color: #CBD5E1;
    font-family: var(--font-body, 'Inter', sans-serif);
    margin-top: 80px;
}

.ft-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- TOP ---------- */
.ft-top {
    padding: 56px 0 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ft-top .ft-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.ft-brand { max-width: 480px; }

.ft-logo img,
.ft-logo .custom-logo {
    max-height: 44px;
    width: auto;
    filter: brightness(0) invert(1);
}

.ft-name {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 12px;
}

.ft-tagline {
    margin: 8px 0 0;
    font-size: 15px;
    line-height: 1.55;
    color: #94A3B8;
}

.ft-socials {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.ft-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: #CBD5E1;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.ft-social:hover {
    background: var(--color-accent, #0067FF);
    color: #fff;
    transform: translateY(-2px);
}

.ft-social-wa:hover { background: #25D366; }

/* ---------- MAIN ---------- */
.ft-main {
    padding: 56px 0;
}

.ft-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
}

.ft-col { min-width: 0; }

.ft-col-contact { /* widen the contact column */ }

.ft-heading {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
    margin: 0 0 18px;
}

.ft-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ft-list li {
    margin-bottom: 12px;
    line-height: 1.4;
}

.ft-list a {
    color: #94A3B8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.15s ease;
}

.ft-list a:hover {
    color: #fff;
}

.ft-all {
    display: inline-block;
    margin-top: 6px;
    color: #fff !important;
    font-weight: 600;
}

.ft-all:hover {
    color: var(--color-accent, #0067FF) !important;
}

/* Contact column */
.ft-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.ft-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    color: #fff;
    flex-shrink: 0;
}

.ft-contact-list a,
.ft-contact-list span {
    color: #CBD5E1;
    font-size: 14px;
    line-height: 1.5;
    padding-top: 4px;
}

.ft-contact-list a {
    text-decoration: none;
    transition: color 0.15s ease;
}

.ft-contact-list a:hover {
    color: #fff;
}

/* ---------- BOTTOM ---------- */
.ft-bottom {
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #0a0f1e;
}

.ft-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.ft-copy {
    margin: 0;
    font-size: 13px;
    color: #64748B;
}

.ft-legal {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

.ft-legal a {
    color: #94A3B8;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.15s ease;
}

.ft-legal a:hover {
    color: #fff;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .ft-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}

@media (max-width: 640px) {
    .ft { margin-top: 56px; }
    .ft-top { padding: 40px 0 28px; }
    .ft-top .ft-container { gap: 20px; }
    .ft-main { padding: 40px 0; }
    .ft-grid { grid-template-columns: 1fr; gap: 32px; }
    .ft-bottom-inner { flex-direction: column; gap: 12px; text-align: center; }
    .ft-legal { justify-content: center; }
}
