/* ==========================================================================
   Footer Base Styles
   ========================================================================== */
.site-footer {
    background-color: #f8fafc;
    color: #334155;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 0.9rem;
    border-top: 1px solid #e2e8f0;
    margin-top: auto;
}

.site-footer .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 45px 20px 30px;
}

/* ==========================================================================
   Footer Inner Layout
   ========================================================================== */
.site-footer .footer-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 35px;
}

/* ==========================================================================
   Brand & Logo
   ========================================================================== */
.footer-brand .footer-logo {
    font-weight: 800;
    font-size: 1.75rem;
    color: #0f172a;
    letter-spacing: -0.05em;
    margin-bottom: 12px;
    line-height: 1;
}

.footer-brand .footer-logo span {
    color: #2563eb;
}

.footer-brand p {
    line-height: 1.5;
    color: #64748b;
    max-width: 280px;
    margin: 0;
}

/* ==========================================================================
   Headings & Link Lists
   ========================================================================== */
.footer-contact h3,
.footer-links h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 14px 0;
}

.footer-contact,
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contact a,
.footer-links a {
    color: #475569;
    text-decoration: none;
    transition: color 0.2s ease;
    width: fit-content;
}

.footer-contact a:hover,
.footer-links a:hover {
    color: #2563eb;
}

/* ==========================================================================
   WhatsApp CTA Button
   ========================================================================== */
.footer-cta-mobile {
    display: inline-block;
    margin-top: 4px;
    padding: 10px 16px;
    background-color: #25d366;
    color: #ffffff !important;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 6px;
    text-align: center;
    transition: background-color 0.2s ease;
}

.footer-cta-mobile:hover {
    background-color: #128c7e;
}

/* ==========================================================================
   Footer Bottom
   ========================================================================== */
.site-footer .footer-bottom {
    border-top: 1px solid #e2e8f0;
    padding: 20px 20px;
    text-align: center;
    font-size: 0.8rem;
    color: #64748b;
    background-color: #ffffff;
}

/* ==========================================================================
   Responsive Adjustments (Fixes Long Mobile View)
   ========================================================================== */
@media screen and (max-width: 650px) {
    .site-footer .container {
        padding: 30px 15px 20px;
    }

    .site-footer .footer-inner {
        grid-template-columns: 1fr 1fr; /* Splitting links side-by-side to save height */
        gap: 25px 15px;
        margin-bottom: 25px;
    }
    
    .footer-brand {
        grid-column: span 2; /* Brand section takes full top row */
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-cta-mobile {
        width: 100%;
        box-sizing: border-box;
    }
}
