/* ── Footer ── */
.taf-footer {
    background: var(--color-footer);
    color: var(--color-footer-text);
    padding: 0 0 1.5rem;
}

.taf-footer-accent {
    height: 3px;
    background: linear-gradient(90deg, var(--color-cyan), var(--color-magenta), var(--color-yellow));
}

.taf-footer-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding-top: 3rem;
    margin-bottom: 2rem;
}

.taf-footer-brand,
.taf-footer-col {
    padding: 1.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.taf-footer-inner > :last-child {
    border-right: none;
}

.taf-footer-brand {
    padding-left: 0;
}

.taf-footer-logo {
    display: inline-block;
    margin-bottom: 1rem;
}

.taf-footer-logo-img,
.taf-footer-logo img {
    height: 36px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.taf-footer-brand > p {
    font-size: 0.85rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1rem;
}

.taf-footer h4 {
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.taf-footer a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: color var(--transition);
}

.taf-footer a:hover {
    color: #fff;
}

.taf-footer ul {
    list-style: none;
}

.taf-footer li {
    margin-bottom: 0.6rem;
}

/* Contact column */
.taf-footer-contact-list {
    list-style: none;
    padding: 0;
}

.taf-footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 0.85rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
}

.taf-footer-contact-list svg {
    flex-shrink: 0;
    margin-top: 2px;
    opacity: 0.5;
}

.taf-footer-contact-list a {
    font-size: 0.85rem;
}

/* Social icons */
.taf-footer-social {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.taf-footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.5);
    transition: all var(--transition);
}

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

/* Footer bottom */
.taf-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}

.taf-footer-bottom a {
    color: var(--color-cyan);
}
