/* Main Footer */
.site-footer {
    background-color: #1f2937;
    color: #9ca3af;
    padding: 4rem 0 2rem;
    font-size: 0.95rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #374151;
}

@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* Footer Brand/About */
.footer-brand h3.footer-title {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-brand .footer-description {
    line-height: 1.6;
    margin-bottom: 0;
}

/* Footer Links & External */
.footer-heading {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

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

.footer-nav li {
    margin-bottom: 0.75rem;
}

.footer-nav li:last-child {
    margin-bottom: 0;
}

.footer-nav a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-nav a:hover {
    color: #ffffff;
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 1rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
}

@media (max-width: 640px) {
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

.footer-powered a {
    color: #d1d5db;
    text-decoration: none;
}

.footer-powered a:hover {
    color: #ffffff;
    text-decoration: underline;
}
