/* --- Footer --- */
.main-footer {
    padding: 80px 0 30px;
    background: var(--textil-primary, #050508);
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}

/* Col 1: Brand */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}
.logo-jc {
    font-family: var(--font-heading, inherit);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--textil-accent, #fbbe03);
    line-height: 1;
    font-style: italic;
    letter-spacing: -2px;
}
.logo-text {
    display: flex;
    flex-direction: column;
    font-family: var(--font-heading, inherit);
    font-weight: 800;
    line-height: 1.1;
}
.lt-1 {
    font-size: 1.3rem;
    letter-spacing: 1px;
}
.lt-2 {
    font-size: 0.9rem;
    color: #a0a0a0;
    letter-spacing: 2px;
}
.brand-desc {
    color: var(--textil-text-muted, #a0a0a0);
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 90%;
}
.footer-socials {
    display: flex;
    gap: 20px;
}
.footer-socials a {
    color: #a0a0a0;
    font-size: 1.2rem;
    transition: color 0.3s;
}
.footer-socials a:hover {
    color: #fff;
}

/* Col 2, 3, 4: Headers & Lists */
.footer-col h3 {
    font-family: var(--font-heading, inherit);
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.footer-col ul li a {
    color: var(--textil-text-muted, #a0a0a0);
    text-decoration: none;
    transition: color 0.3s, transform 0.3s;
    display: inline-block;
}
.footer-col ul li a:hover {
    color: var(--textil-accent, #fbbe03);
    transform: translateX(5px);
}

.contact-info-list li {
    color: var(--textil-text-muted, #a0a0a0);
    display: flex;
    align-items: flex-start;
    gap: 15px;
    line-height: 1.5;
}
.contact-info-list li i {
    color: var(--textil-text-muted, #a0a0a0);
    margin-top: 4px;
    font-size: 1rem;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--textil-text-muted, #a0a0a0);
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.copyright-text {
    margin: 0;
}

.watermark {
    margin: 0;
    opacity: 0.4;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: opacity 0.3s ease;
    cursor: default;
}

.watermark strong {
    font-weight: 800;
    color: var(--textil-accent, #fbbe03);
}

.watermark:hover {
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 768px) {
    .main-footer {
        padding: 50px 0 20px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-col h3 {
        margin-bottom: 15px;
        text-align: center;
        width: 100%;
    }
    .footer-col ul {
        width: 100%;
        align-items: center;
    }
    .contact-info-list li {
        width: 100%;
        justify-content: center;
    }
    .footer-logo {
        justify-content: center;
    }
    .brand-desc {
        text-align: center;
        margin: 0 auto 25px auto;
    }
    .footer-socials {
        justify-content: center;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        justify-content: center;
    }
}
