/* =========================================
   Footer
   ========================================= */

/* Footer Styles */
footer {
    background: #111111;
    color: #fff;
    padding: 0;
    margin-top: 0;
}

.footer-main {
    margin: 0 auto;
    padding: 2rem 5rem 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-brand__logo {
    height: 40px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    opacity: 0.9;
    margin-left: -15px;
}

.footer-brand__tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
    max-width: 280px;
}

.footer-brand__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 122, 41, 0.15);
    border: 1px solid rgba(255, 122, 41, 0.3);
    color: #FF7A29;
    padding: 0.4rem 0.85rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    width: fit-content;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-col__title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.35);
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-col__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer-col__list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    line-height: 1.4;
}

.footer-col__list li i {
    color: #FF7A29;
    font-size: 0.85rem;
    width: 16px;
    flex-shrink: 0;
}

.footer-col__list a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col__list a:hover {
    color: #FF7A29;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.1rem 0rem;
    display: flex;
    justify-content: center;
}

.footer-bottom__copy {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
}

.footer-bottom__copy span {
    color: #FF7A29;
    font-weight: 600;
}

.footer-bottom__legal a {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bottom__legal a:hover {
    color: #FF7A29;
}

@media (max-width: 700px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1.25rem 1.5rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-bottom__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}