/* ================= CFO PREMIUM FOOTER ================= */

.premium-footer {
    background: #0f172a; /* slate-900 */
    color: #cbd5f5;      /* slate-300 */
    padding: 70px 0 30px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.premium-footer .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* GRID */
.premium-footer .footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

/* BRAND */
.premium-footer .footer-brand .logo-footer {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #ffffff;
    margin-bottom: 14px;
}

.premium-footer .footer-brand p {
    font-size: 14px;
    line-height: 1.6;
    color: #94a3b8; /* slate-400 */
    max-width: 360px;
}

/* SOCIALS */
.footer-socials .social-link {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

/* Individual brand colors */
.footer-socials .social-link i.fa-facebook-f {
    color: #1877F2;
}

.footer-socials .social-link i.fa-whatsapp {
    color: #25D366;
}

.footer-socials .social-link i.fa-linkedin-in {
    color: #0A66C2;
}

.footer-socials .social-link i.fa-instagram {
    color: #E4405F;
}

/* Hover effect (keep premium feel) */
.footer-socials .social-link:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-2px);
}

/* INFO GROUP */
.footer-nav-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-size: 15px;
    font-weight: 700;
    color:var(--slate);
    margin-bottom: 14px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--slate);
    margin-bottom: 6px;
}

/* BOTTOM BAR */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 18px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #94a3b8;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
    .premium-footer .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-nav-group {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-brand p {
        max-width: 100%;
    }
}
