/* --- MAIN FOOTER BASE CONTAINER --- */
.lewiss-footer {
    background: var(--lw-bg, #0E1C41);
    color: #ffffff;
    padding: 80px 4% 30px 4%;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 50px;
    margin-bottom: 40px;
    max-width: 1250px;
    margin-left: auto;
    margin-right: auto;
}

.footer-col { flex: 1; min-width: 220px; }
.footer-col.col-brand-info { flex: 1.3; min-width: 260px; }

.footer-logo { width: 160px; margin-bottom: 20px; display: block; height: auto; }

.brand-desc {
    color: var(--lw-muted, #cbd5e1);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0 0 20px 0;
    max-width: 320px;
}

/* --- HEADINGS --- */
.footer-col h3 {
    color: var(--lw-heading, #ffffff);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 25px 0;
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 35px;
    height: 3px;
    background-color: var(--lw-accent, #DA1F32);
    border-radius: 2px;
}

/* --- NAVIGATION LISTS --- */
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
    color: var(--lw-muted, #cbd5e1);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-flex;
    align-items: center;
    font-size: 0.92rem;
}
.footer-col ul li a:hover {
    color: var(--lw-accent, #DA1F32);
    transform: translateX(4px);
}

/* --- CONTACT --- */
.footer-col.col-get-in-touch p {
    margin: 0 0 15px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--lw-muted, #cbd5e1);
    font-size: 0.92rem;
    line-height: 1.5;
}

.footer-col.col-get-in-touch p a {
    color: var(--lw-muted, #cbd5e1);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.92rem;
}

.footer-col.col-get-in-touch p a:hover { color: var(--lw-accent, #DA1F32); }

.poc-text { font-weight: 600; color: var(--lw-heading, #ffffff) !important; }

.contact-icon {
    display: inline-flex;
    flex-shrink: 0;
    margin-top: 2px;
    color: #cbd5e1;
    transition: color 0.3s ease;
}
.contact-icon svg { width: 18px; height: 18px; }

.footer-col.col-get-in-touch p a:hover .contact-icon { color: var(--lw-accent, #DA1F32) !important; }

/* --- SOCIAL --- */
.social-links { display: flex; gap: 15px; margin-top: 25px; }

.social-links a {
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--lw-heading, #ffffff);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.social-links a svg { width: 18px; height: 18px; }
.social-links a:hover {
    background-color: var(--lw-accent, #DA1F32);
    color: #ffffff;
    transform: translateY(-3px);
}

/* --- WHATSAPP --- */
.wa-full-width-section {
    text-align: center;
    max-width: 460px;
    margin: 10px auto 40px auto;
    padding: 30px 25px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    box-sizing: border-box;
}

.wa-full-width-section h3 {
    color: var(--lw-heading, #ffffff);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 20px 0;
}

.lewiss-wa-form { display: flex; flex-direction: column; gap: 12px; }

.lewiss-wa-form input {
    width: 100%;
    height: 46px;
    padding: 10px 16px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-sizing: border-box;
    font-size: 0.92rem;
    color: var(--lw-heading, #ffffff);
    transition: all 0.3s ease;
}

.lewiss-wa-form input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--lw-accent, #DA1F32);
}

.lewiss-wa-form input::placeholder { color: #94a3b8; }

.lewiss-wa-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px;
    background: #25D366;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.lewiss-wa-btn:hover:not(:disabled) {
    background: #20ba5a;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}

.lewiss-wa-btn:disabled {
    background: #334155;
    color: #94a3b8;
    cursor: not-allowed;
    opacity: 0.6;
}

/* --- CREDIT BAR --- */
.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 25px;
    font-size: 0.85rem;
    color: #94a3b8;
    max-width: 1250px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.footer-bottom a {
    color: var(--lw-accent, #DA1F32);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}
.footer-bottom a:hover { color: var(--lw-heading, #ffffff); }

.mobile-break { display: none; }

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .footer-content { gap: 30px; }
    .footer-col.col-brand-info { flex: 100%; max-width: 100%; margin-bottom: 10px; }
    .brand-desc { max-width: 100%; }
}

@media (max-width: 576px) {
    .lewiss-footer { padding: 60px 5% 30px 5%; }
    .footer-content { flex-direction: column; gap: 35px; }
    .footer-col { min-width: 100%; }
    .footer-col h3 { margin-bottom: 18px; }
    .mobile-break { display: block; }
}
