/* ============================================
   FOOTER CTA BAND
   ============================================ */
.footer-cta-band {
    background: var(--gradient-navy);
    position: relative;
    overflow: hidden;
    padding: var(--space-xl) 0;
}
.footer-cta-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(700px 320px at 85% 20%, rgba(212, 175, 55, 0.18), transparent 60%),
        radial-gradient(600px 300px at 10% 90%, rgba(4, 120, 87, 0.16), transparent 55%);
    pointer-events: none;
}
.footer-cta-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.4fr auto;
    align-items: center;
    gap: var(--space-lg);
}
.footer-cta-text .eyebrow {
    background: rgba(212, 175, 55, 0.15);
    color: #F5D76E;
}
.footer-cta-text .eyebrow::before { background: #F5D76E; box-shadow: 0 0 0 3px rgba(245, 215, 110,0.2); }
.footer-cta-text h2 { color: #fff; font-size: clamp(26px, 3vw, 34px); margin-bottom: 12px; }
.footer-cta-text p { color: #CBD5E1; font-size: 17px; max-width: 540px; margin: 0; }
.footer-cta-action { display: flex; flex-direction: column; gap: 12px; min-width: 240px; }
.footer-cta-action .btn { width: 100%; }
.footer-cta-action .btn-secondary {
    background: transparent; color: #fff; border-color: rgba(255,255,255,0.3);
}
.footer-cta-action .btn-secondary:hover { background: #fff; color: var(--color-primary); border-color: #fff; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--color-primary);
    color: #cbd5e1;
    padding: var(--space-xl) 0 var(--space-md);
    position: relative;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.2fr 1.2fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo img { max-height: 46px; filter: brightness(0) invert(1); }
.footer-logo-text {
    color: #fff; font-family: var(--font-display);
    font-size: 20px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 16px;
}
.footer-about { font-size: 14px; line-height: 1.75; margin-bottom: 22px; color: #94a3b8; }
.footer-col h4 {
    color: #fff; font-family: var(--font-body); font-size: 13px; margin-bottom: 18px;
    text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600;
}
.footer-menu { list-style: none; margin: 0; padding: 0; }
.footer-menu li { margin-bottom: 11px; }
.footer-menu a { color: #cbd5e1; font-size: 14px; transition: color 0.2s, padding-left 0.2s; }
.footer-menu a:hover { color: #fff; padding-left: 4px; }
.footer-contact { list-style: none; margin: 0; padding: 0; }
.footer-contact li { margin-bottom: 14px; font-size: 14px; color: #94a3b8; line-height: 1.6; }
.footer-contact a { color: #cbd5e1; }
.footer-contact a:hover { color: #fff; }
.footer-contact strong { color: #fff; display: inline; font-weight: 600; }
.footer-hours { font-size: 14px; color: #94a3b8; }

/* Social as chips */
.footer-social { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.footer-social a {
    color: #cbd5e1; font-size: 13px; font-weight: 500;
    padding: 7px 14px; border: 1px solid rgba(255,255,255,0.14);
    border-radius: var(--radius-pill); transition: all 0.2s;
}
.footer-social a:hover { color: #fff; border-color: var(--color-teal); background: rgba(212, 175, 55,0.12); }

.footer-bottom { padding-top: 28px; display: flex; flex-direction: column; gap: 10px; }
.footer-copyright { font-size: 13px; color: #94a3b8; }
.footer-disclaimer { font-size: 12px; color: #64748b; line-height: 1.65; max-width: 880px; }
.mt-md { margin-top: 24px; }

/* Sticky mobile CTA */
.sticky-mobile-cta {
    position: fixed; bottom: 0; left: 0; right: 0;
    background: rgba(255,255,255,0.92);
    -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    box-shadow: 0 -6px 24px rgba(15,23,42,0.12);
    border-top: 1px solid var(--color-border-light);
    z-index: 999; transform: translateY(100%);
    transition: transform 0.3s var(--ease); display: none;
}
.sticky-mobile-cta.visible { transform: translateY(0); }
.sticky-mobile-cta .btn { width: 100%; }

/* Footer CTA band + footer — quick responsive (full polish in Step 10) */
@media (max-width: 860px) {
    .footer-cta-inner { grid-template-columns: 1fr; gap: var(--space-md); text-align: center; }
    .footer-cta-text .eyebrow { margin-left: auto; margin-right: auto; }
    .footer-cta-text p { margin-left: auto; margin-right: auto; }
    .footer-cta-action { min-width: 0; }
}

/* Floating WhatsApp button */
.ssu-whatsapp-float {
    position: fixed; bottom: 24px; right: 24px; z-index: 999;
    display: inline-flex; align-items: center; gap: 0;
    background: #25D366; color: #fff;
    border-radius: var(--radius-pill);
    padding: 14px; box-shadow: 0 8px 28px rgba(37,211,102,0.45);
    transition: all 0.3s var(--ease); overflow: hidden;
}
.ssu-whatsapp-float:hover { color:#fff; transform: translateY(-3px); box-shadow: 0 12px 34px rgba(37,211,102,0.55); }
.ssu-whatsapp-float svg { flex-shrink: 0; }
.ssu-whatsapp-label {
    max-width: 0; opacity: 0; white-space: nowrap; font-weight: 700; font-size: 15px;
    transition: max-width 0.35s var(--ease), opacity 0.3s var(--ease), margin 0.35s var(--ease);
}
.ssu-whatsapp-float:hover .ssu-whatsapp-label { max-width: 160px; opacity: 1; margin-left: 10px; margin-right: 6px; }
/* gentle pulse */
@keyframes ssu-wa-pulse { 0%,100%{ box-shadow: 0 8px 28px rgba(37,211,102,0.45);} 50%{ box-shadow: 0 8px 28px rgba(37,211,102,0.45), 0 0 0 12px rgba(37,211,102,0.0);} }
.ssu-whatsapp-float { animation: ssu-wa-pulse 2.6s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) { .ssu-whatsapp-float { animation: none; } }
@media (max-width: 600px) { .ssu-whatsapp-float { bottom: 76px; right: 16px; padding: 13px; } }

/* Footer brand logo */
.footer-logo-img { height: 42px; width: auto; margin-bottom: 16px; }
