/* ═══════════════════════════════════════════════════════════════
   TaxTami Footer — Footer7 layout, green brand theme
   ═══════════════════════════════════════════════════════════════ */

.tt-footer {
    background: #2c724f;
    color: #ffffff;
    font-family: 'Work Sans', sans-serif;
}

.tt-footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 32px 0;
}

/* ── Top section: logo+desc+social  |  link columns ─────────── */
.tt-footer-top {
    display: flex;
    flex-direction: column;
    gap: 40px;
    justify-content: space-between;
    align-items: flex-start;
}

@media (min-width: 992px) {
    .tt-footer-top {
        flex-direction: row;
        align-items: flex-start;
    }
}

/* Left panel */
.tt-footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

@media (min-width: 992px) {
    .tt-footer-brand { max-width: 340px; flex-shrink: 0; }
}

.tt-footer-logo-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tt-footer-logo-row img {
    height: 64px;
    width: auto;
    filter: brightness(10) saturate(0);
}

.tt-footer-logo-row span {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
}

.tt-footer-desc {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
    max-width: 70%;
    margin: 0;
}

.tt-footer-social {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 24px;
}

.tt-footer-social a {
    color: rgba(255,255,255,0.65);
    font-size: 1.15rem;
    text-decoration: none;
    transition: color 0.2s;
    display: flex;
    align-items: center;
}
.tt-footer-social a:hover { color: #ffffff; }

/* Right panel — link columns grid */
.tt-footer-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px 60px;
    width: 100%;
}

@media (max-width: 767px) {
    .tt-footer-links-grid { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
}

@media (max-width: 480px) {
    .tt-footer-links-grid { grid-template-columns: 1fr; }
}

.tt-footer-col-heading {
    font-size: 0.875rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 16px 0;
    letter-spacing: 0.03em;
}

.tt-footer-col-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tt-footer-col-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color 0.2s;
}
.tt-footer-col-links a:hover { color: #ffffff; }

/* ── Bottom bar ──────────────────────────────────────────────── */
.tt-footer-bottom {
    max-width: 1280px;
    margin: 32px auto 0;
    padding: 24px 32px;
    border-top: 1px solid rgba(255,255,255,0.15);
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: space-between;
    align-items: flex-start;
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255,255,255,0.55);
}

@media (min-width: 768px) {
    .tt-footer-bottom {
        flex-direction: row;
        align-items: center;
    }
}

.tt-footer-copyright { margin: 0; order: 2; }

@media (min-width: 992px) { .tt-footer-copyright { order: 1; } }

.tt-footer-legal {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    order: 1;
}

@media (min-width: 768px) {
    .tt-footer-legal { flex-direction: row; gap: 20px; order: 2; }
}

@media (min-width: 992px) { .tt-footer-legal { order: 2; } }

.tt-footer-legal a {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: color 0.2s;
}
.tt-footer-legal a:hover { color: #ffffff; }
