/* ================================
   FOOTER.CSS — MATCHES footer.php
================================ */

.site-footer {
    margin-top: 2.5rem;
    background:
        radial-gradient(900px 420px at 20% 0%, rgba(143, 211, 244, .16), transparent 60%),
        radial-gradient(900px 420px at 80% 10%, rgba(111, 191, 154, .12), transparent 60%),
        linear-gradient(135deg, rgba(31, 61, 43, .96), rgba(47, 111, 78, .96));
    border-top: 1px solid rgba(255, 255, 255, .12);
    color: rgba(244, 247, 245, .92);
}

.site-footer a {
    color: rgba(244, 247, 245, .78);
    text-decoration: none;
}

.site-footer a:hover {
    color: rgba(244, 247, 245, .98);
    text-decoration: underline;
}

/* Layout */
.site-footer .footer-inner {
    padding: 2.25rem 0 1.4rem;
    display: grid;
    grid-template-columns: 1.2fr 1.25fr 1fr;
    gap: 1.75rem;
    align-items: start;
}

/* Brand */
.site-footer .footer-brand {
    display: grid;
    gap: .75rem;
}

.site-footer .footer-logo {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    font-weight: 950;
    letter-spacing: .02em;
}

.site-footer .footer-name {
    font-size: 1.05rem;
}

.site-footer .footer-tagline {
    margin: 0;
    color: rgba(244, 247, 245, .72);
    line-height: 1.6;
    max-width: 34ch;
}

/* Link columns wrapper */
.site-footer .footer-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
}

/* Column */
.site-footer .footer-col h3,
.site-footer .footer-social h3 {
    margin: 0 0 .7rem;
    font-size: .95rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(244, 247, 245, .92);
}

.site-footer .footer-col {
    display: grid;
    gap: .45rem;
}

.site-footer .footer-col a {
    display: inline-flex;
    padding: .12rem 0;
}

/* FOLLOW: fix the "pill bars" by scoping + resetting */
.site-footer .footer-social {
    display: grid;
    gap: .85rem;
}

/* social row container */
.site-footer .social-row {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
}

/* These are footer icons ONLY (override any .social-btn from contact.css) */
.site-footer .social-row .social-btn {
    width: 40px;
    height: 40px;
    padding: 0 !important;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, .08) !important;
    border: 1px solid rgba(255, 255, 255, .18) !important;

    box-shadow: none !important;
    text-decoration: none;
    transition: transform .15s ease, background .15s ease;
}

.site-footer .social-row .social-btn:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, .12) !important;
}

.site-footer .social-row .social-btn svg {
    width: 18px;
    height: 18px;
    fill: rgba(244, 247, 245, .92);
    opacity: .95;
}

/* Bottom meta (inside follow column) */
.site-footer .footer-meta {
    display: grid;
    gap: .35rem;
    padding-top: .6rem;
    border-top: 1px solid rgba(255, 255, 255, .12);
    color: rgba(244, 247, 245, .72);
    font-size: .95rem;
}

.site-footer .design-credit {
    color: rgba(143, 211, 244, .95);
    font-weight: 900;
    text-decoration: none;
}

.site-footer .design-credit:hover {
    text-decoration: underline;
}

/* Floating WhatsApp */
.wa-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 56px;
    height: 56px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    z-index: 1200;

    background: #25D366;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .22);
    border: 1px solid rgba(255, 255, 255, .25);
    text-decoration: none;
}

.wa-float svg {
    width: 28px;
    height: 28px;
    fill: #fff;
}

.wa-float:hover {
    transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 980px) {
    .site-footer .footer-inner {
        grid-template-columns: 1fr;
    }

    .site-footer .footer-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .site-footer .footer-links {
        grid-template-columns: 1fr;
    }
}