/* ==========================================================
   FOOTER
   ========================================================== */
.ls-site-footer {
    background-color: var(--ls-bg-secondary);
    padding: 60px 0 50px 0;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.ls-footer-inner {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.ls-footer-col {
    min-width: 0;
}

.ls-footer-grid {
    display: grid;
    grid-template-columns: 1fr 1.8fr 1.1fr;
    gap: 60px;
    align-items: start;
}

/* Col 1: Brand */
.ls-footer-title {
    font-size: 2rem;
    margin-top: 0;
    margin-bottom: 5px;
    letter-spacing: -0.5px;
}

.ls-footer-slogan {
    color: var(--ls-accent);
    margin-bottom: 40px;
    font-size: 1rem;
    font-weight: 500;
}

.ls-social-links {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.ls-social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ls-text-primary);
    transition: all 0.3s ease;
}

.ls-social-icon.ls-inactive {
    opacity: 0.3;
}

.ls-social-icon:hover {
    background-color: var(--ls-accent);
    border-color: var(--ls-accent);
    color: var(--ls-bg-primary);
}

.ls-follow-heading {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

/* Col 2: Middle Nav */
.ls-footer-nav {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.ls-footer-nav li a {
    font-size: 1rem;
    font-weight: 600;
    color: var(--ls-text-primary);
}

.ls-footer-nav li a:hover {
    color: var(--ls-accent);
}

.ls-about-heading {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.ls-about-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--ls-text-secondary);
    margin-bottom: 0;
}

/* Col 3: Contact */
.ls-contact-wrapper {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 40px;
}

.ls-contact-item {
    margin-bottom: 25px;
}

.ls-contact-item strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 5px;
}

.ls-contact-item span,
.ls-contact-item a {
    color: var(--ls-text-secondary);
    font-size: 0.9rem;
}

.ls-newsletter-mock {
    display: flex;
    margin-top: 30px;
    height: 45px;
}

.ls-newsletter-input {
    flex: 1;
    padding: 0 15px;
    border: none;
    border-radius: 4px 0 0 4px;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--ls-text-primary);
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
}

.ls-newsletter-btn {
    background-color: var(--ls-accent);
    color: var(--ls-bg-primary);
    border: none;
    padding: 0 15px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-size: 1.2rem;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ls-newsletter-btn:hover {
    opacity: 0.8;
}

@media (max-width: 992px) {
    .ls-footer-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .ls-contact-wrapper {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-left: 0;
        padding-top: 40px;
    }
}
@media (max-width: 768px) {
    .ls-footer-inner {
        flex-direction: column;
        gap: 40px;
    }
}
