/* ============================================================
   LOFENT FOOTER CSS
   ============================================================ */

.lofent-footer { font-family: var(--font-primary); }

/* ---- Main Footer ---- */
.footer-main {
    background: var(--dark-navy);
    padding: 80px 0 48px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
}

/* ---- Company Column ---- */
.footer-logo {
    margin-bottom: 20px;
}
.footer-logo a {
    display: flex; align-items: center; gap: 10px;
    transition: opacity 0.3s;
}
.footer-logo a:hover { opacity: 0.85; }
.footer-logo img { height: 48px; width: auto; filter: brightness(0) invert(1); }
.footer-logo-text {
    font-size: 22px; font-weight: 800;
    color: var(--white);
}
.footer-logo-text span { color: var(--primary); }

.footer-desc {
    font-size: 14px; color: #94A3B8;
    line-height: 1.8; max-width: 280px;
    margin-bottom: 24px;
}

/* ---- Social Icons ---- */
.social-icons {
    display: flex; gap: 12px; flex-wrap: wrap;
}
.social-icon {
    display: flex; align-items: center; justify-content: center;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    color: #94A3B8;
    transition: background 0.3s, color 0.3s, transform 0.3s;
}
.social-icon:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.15);
}

/* ---- Column Title ---- */
.footer-col-title {
    font-size: 17px; font-weight: 700;
    color: var(--white); margin-bottom: 24px;
    padding-bottom: 12px;
    position: relative;
}
.footer-col-title::after {
    content: '';
    position: absolute; bottom: 0; left: 0;
    width: 36px; height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: width 0.5s ease;
}
.footer-col:hover .footer-col-title::after { width: 60px; }

/* ---- Footer Links ---- */
.footer-links { list-style: none; }
.footer-links li { border-bottom: none; }
.footer-links a {
    display: block; font-size: 14px; color: #94A3B8;
    padding: 6px 0;
    transition: color 0.25s, transform 0.25s;
    position: relative;
}
.footer-links a:hover {
    color: var(--primary);
    transform: translateX(6px);
}

/* ---- Contact List ---- */
.footer-contact-list { list-style: none; }
.footer-contact-list li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 14px; color: #94A3B8;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    line-height: 1.6;
}
.footer-contact-list li:last-child { border: none; }
.footer-contact-list a { color: #94A3B8; transition: color 0.25s; }
.footer-contact-list a:hover { color: var(--primary); }
.contact-icon {
    color: var(--primary); flex-shrink: 0;
    margin-top: 2px;
}

/* ---- Copyright Bar ---- */
.footer-bottom {
    background: #0B1120;
    padding: 20px 0;
    border-top: 1px solid #1E293B;
}
.footer-bottom-inner {
    display: flex; align-items: center;
    justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.copyright {
    font-size: 14px; color: #64748B;
}
.footer-legal {
    display: flex; align-items: center; gap: 16px;
}
.footer-legal a {
    font-size: 14px; color: #64748B;
    transition: color 0.25s;
}
.footer-legal a:hover { color: var(--primary); }
.footer-legal span { color: #334155; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 32px; }
}
@media (max-width: 640px) {
    .footer-main { padding: 60px 0 40px; }
    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .footer-desc { max-width: 100%; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
    .footer-legal { justify-content: center; }
    .social-icons { justify-content: flex-start; }
}
