/* Footer Styling */
#colophon.site-footer {
    background-color: #232C33 !important;
    /* Dark Grey/Black match */
    color: #fff;
    font-family: 'Inter', sans-serif;
    padding-top: 5rem;
    padding-bottom: 3rem;
    border-top: none;
}

/* Headings */
.site-footer h4 {
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

/* Links */
.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer ul li {
    margin-bottom: 0.75rem;
}

.site-footer ul li a {
    color: #B0B7C3;
    /* Muted text color */
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.site-footer ul li a:hover {
    color: #fff;
    text-decoration: none;
}

/* Logo Section */
.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-logo-icon {
    color: #FF9500;
    /* Orange truck color */
}

.footer-tagline {
    color: #B0B7C3;
    font-size: 0.9rem;
    line-height: 1.5;
    max-width: 250px;
}

/* Bottom Bar */
.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright-text {
    color: #79808A;
    font-size: 0.85rem;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.app-stores {
    display: flex;
    gap: 1rem;
}

.app-stores img {
    height: 36px;
    width: auto;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.app-stores a:hover img {
    transform: translateY(-2px);
    opacity: 0.9;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: #79808A;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.social-links a:hover {
    color: #fff;
}

@media (max-width: 768px) {
    .site-footer {
        text-align: left;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .footer-bottom-right {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .app-stores img {
        height: 32px;
    }
}