/* --- 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; }
}

/* =====================================================================
   MODERN LAYOUT
   Entirely separate class namespace (.lewiss-footer-modern, .lw-m-*) so
   none of these rules can ever affect the Classic layout above.
   ===================================================================== */

.lewiss-footer-modern {
    background: var(--lw-bg, #0b1220);
    color: var(--lw-muted, #cbd5e1);
    padding: 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
    text-align: left;
}

.lw-m-highlight {
    max-width: 900px;
    margin: 0 auto;
    padding: 28px 32px;
    margin-top: 40px;
    background: rgba(255,255,255,0.05);
    border-left: 4px solid var(--lw-accent, #f5a623);
    border-radius: 0 16px 16px 0;
    text-align: left;
}

.lw-m-highlight p {
    margin: 0 0 16px;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--lw-heading, #fff);
}
.lw-m-highlight p strong {
    color: var(--lw-accent, #f5a623);
}

.lw-m-highlight-btn {
    display: inline-block;
    color: var(--lw-accent, #f5a623);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.85rem;
    padding-bottom: 20px;
    transition: opacity 0.25s ease;
}
.lw-m-highlight-btn:hover { opacity: 0.75; }

.lw-m-content {
    max-width: 1250px;
    margin: 0 auto;
    padding: 60px 5%;
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 1.1fr 1.1fr;
    gap: 40px;
    text-align: left;
}
.lw-m-col { text-align: left; }

.lw-m-logo { max-width: 200px; height: auto; margin-bottom: 18px; }

.lw-m-desc { font-size: 0.9rem; line-height: 1.6; margin: 0; }

.lw-m-links { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.lw-m-links a {
    color: var(--lw-muted, #cbd5e1);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: color 0.25s ease, transform 0.25s ease;
    display: inline-block;
}
.lw-m-links a:hover {
    color: var(--lw-accent, #f5a623);
    transform: translateX(4px);
}

.lw-m-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 22px;
}
.lw-m-icon {
    flex-shrink: 0;
    color: var(--lw-accent, #f5a623);
    margin-top: 2px;
}
.lw-m-icon svg { width: 18px; height: 18px; }
.lw-m-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--lw-accent, #f5a623);
    margin-bottom: 4px;
}
.lw-m-value {
    display: block;
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--lw-muted, #cbd5e1);
    text-decoration: none;
}
a.lw-m-value:hover { color: var(--lw-heading, #fff); }
.lw-m-directions {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
    font-size: 0.82rem;
    color: var(--lw-accent, #f5a623);
    text-decoration: none;
}
.lw-m-directions svg { width: 14px; height: 14px; }
.lw-m-directions:hover { text-decoration: underline; }

.lw-m-social h3 {
    color: var(--lw-accent, #f5a623);
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.05rem;
    margin: 0 0 10px;
}
.lw-m-social-desc {
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0 0 18px;
}
.lw-m-social-list { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.lw-m-social-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--lw-heading, #fff);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    transition: color 0.25s ease;
}
.lw-m-social-list a:hover { color: var(--lw-accent, #f5a623); }
.lw-m-social-icon svg { width: 18px; height: 18px; }

.lewiss-footer-modern .wa-full-width-section,
.lw-m-whatsapp {
    text-align: center;
    max-width: 460px;
    margin: 0 auto 40px auto;
    padding: 30px 25px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    box-sizing: border-box;
}
.lw-m-whatsapp h3 {
    color: var(--lw-heading, #fff);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 18px;
}

.lw-m-bottom {
    text-align: center;
    background: rgba(255,255,255,0.04);
    padding: 18px 5%;
    font-size: 0.85rem;
    color: var(--lw-muted, #cbd5e1);
}
.lw-m-bottom a {
    color: var(--lw-muted, #cbd5e1);
    text-decoration: none;
}
.lw-m-bottom a:hover { color: var(--lw-accent, #f5a623); }

@media (max-width: 992px) {
    .lw-m-content { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .lw-m-content { grid-template-columns: 1fr; padding: 40px 6%; gap: 34px; }
    .lw-m-highlight { padding: 30px 6% 0; }
}
