.site-footer {
    background-color: var(--card);
    border-top: 1px solid var(--border);
}

.footer-upper {
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo-img {
    width: 260px;
    height: auto;
}
.footer-tagline {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

.footer-subtitle {
    font-size: 1.05rem;
    color: var(--muted-foreground); /* Use the muted color */
    margin-top: -0.5rem; /* Pull it slightly closer to the logo */
    margin-bottom: 1.5rem; /* Add breathing room below it */
    line-height: 1.4;
    font-weight: 300;
}

.footer-heading {
    font-size: 1rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 0.75rem;
}

.footer-list a {
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-list a:hover {
    color: var(--primary);
}

.footer-text {
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    margin-bottom: 0.5rem;
}

.footer-lower {
    padding: 1.5rem 0;
    border-top: 1px solid var(--border);
    background-color: rgba(0, 0, 0, 0.3);
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-copyright {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}



