/* ============================================================
   FOOTER & FLOATING ACTIONS
   ============================================================ */
.site-footer { background: var(--navy-950); color: #a9bfe0; font-size: .92rem; }
.site-footer a { color: #c3d5f2; }
.site-footer a:hover { color: var(--gold-400); }

.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding: 64px 0 44px; }
.footer-brand .fb-name { font-family: var(--font-head); font-weight: 800; font-size: 1.1rem; color: #fff; margin-bottom: 4px; }
.footer-brand .fb-role { font-size: .82rem; color: #8fa8cd; margin-bottom: 18px; }
.footer-brand .fb-tagline { font-family: var(--font-head); font-weight: 700; font-size: .9rem; color: var(--gold-400); margin-bottom: 18px; line-height: 1.5; }
.footer-col h4 {
  color: #fff; font-size: .88rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col ul a { font-size: .9rem; font-weight: 500; }
.footer-col ul a:hover { color: var(--gold-400); padding-left: 4px; transition: all .2s ease; }

.footer-contact-info { display: flex; flex-direction: column; gap: 13px; }
.footer-contact-info li { display: flex; gap: 11px; align-items: flex-start; font-size: .9rem; }
.footer-contact-info li svg { width: 18px; height: 18px; color: var(--gold-400); flex: none; margin-top: 3px; }
.footer-contact-info li a { font-weight: 600; }
.footer-ctas { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }

.footer-mid {
  border-top: 1px solid rgba(255,255,255,.1); padding: 26px 0;
  text-align: center; font-family: var(--font-head); font-weight: 700;
  font-size: .92rem; letter-spacing: .04em; color: #c3d5f2;
}
.footer-mid .gold { color: var(--gold-400); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding: 22px 0 30px;
  display: flex; flex-direction: column; gap: 10px; text-align: center;
}
.footer-bottom p { font-size: .8rem; color: #7f93b8; line-height: 1.6; }
.footer-bottom .fb-links { display: inline-flex; justify-content: center; flex-wrap: wrap; gap: 8px 18px; font-size: .8rem; }

/* ---------- Floating actions ---------- */
.body-bottom { padding-bottom: 0; }
.float-actions { position: fixed; right: 22px; bottom: 22px; z-index: 300; display: flex; flex-direction: column; gap: 12px; }
.float-btn {
  display: grid; place-items: center; width: 56px; height: 56px;
  border-radius: 50%; color: #fff; box-shadow: var(--shadow-lg);
  transition: transform .2s ease, box-shadow .2s ease;
  position: relative;
}
.float-btn:hover { transform: translateY(-4px) scale(1.04); color: #fff; }
.float-btn svg { width: 26px; height: 26px; }
.float-wa { background: var(--green-500); }
.float-wa:hover { background: var(--green-600); }
.float-call { background: var(--blue-600); }
.float-call:hover { background: var(--blue-700); }
.float-btn .tip {
  position: absolute; right: calc(100% + 12px); top: 50%; transform: translateY(-50%);
  background: var(--navy-900); color: #fff; font-size: .72rem; font-weight: 600;
  padding: 6px 10px; border-radius: 8px; white-space: nowrap;
  opacity: 0; visibility: hidden; transition: opacity .2s ease, visibility .2s;
}
.float-btn:hover .tip { opacity: 1; visibility: visible; }
.float-btn .tip::after { content: ""; position: absolute; left: 100%; top: 50%; transform: translateY(-50%); border: 5px solid transparent; border-left-color: var(--navy-900); }

/* Mobile bottom action bar */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 300;
  display: none; grid-template-columns: 1fr 1fr; gap: 0;
  background: #fff; border-top: 1px solid var(--gray-100); box-shadow: 0 -6px 20px rgba(10,31,61,.12);
}
.mobile-bar a {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  padding: 15px 10px; font-family: var(--font-head); font-weight: 700;
  font-size: .88rem; color: #fff; letter-spacing: .02em;
}
.mobile-bar a:hover { color: #fff; }
.mobile-bar a svg { width: 20px; height: 20px; }
.mobile-bar .mb-call { background: var(--blue-600); }
.mobile-bar .mb-call:hover { background: var(--blue-700); }
.mobile-bar .mb-wa { background: var(--green-500); }
.mobile-bar .mb-wa:hover { background: var(--green-600); }

/* ============================================================
   TESTIMONIAL PLACEHOLDER
   ============================================================ */
.testimonial-none {
  background: #fff; border: 1px dashed var(--gray-200); border-radius: var(--radius-lg);
  padding: 44px 30px; text-align: center; max-width: 720px; margin: 0 auto;
}
.testimonial-none .tn-ico { display: grid; place-items: center; width: 56px; height: 56px; margin: 0 auto 16px; border-radius: 50%; background: var(--sky-100); color: var(--blue-600); }
.testimonial-none .tn-ico svg { width: 26px; height: 26px; }
.testimonial-none p { font-size: 1rem; color: var(--gray-600); max-width: 520px; margin: 0 auto; }