/* ===== GLOBAL FOOTER + FLOATING CTA ===== */
/* Shared footer/floating CTA styles matching the homepage master reference */
/* Values are hardcoded so this stylesheet is independent of page-level CSS variables */

/* ===== FOOTER ===== */
footer {
  background: #0a1929;
  color: #ffffff;
  padding: 64px 24px 28px;
  text-align: left;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 48px;
  justify-items: start;
}

.footer-brand {
  text-align: left;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  margin-top: 16px;
  max-width: 300px;
  line-height: 1.7;
  text-align: left;
}

.footer-col {
  text-align: left;
}

.footer-col h5 {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
  text-align: left;
}

.footer-col ul { list-style: none; text-align: left; }

.footer-col ul li { margin-bottom: 9px; text-align: left; }

.footer-col ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  transition: 0.3s ease;
  text-align: left;
}

.footer-col ul a:hover { color: #d4a84b; }

.footer-cert-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
  justify-content: flex-start;
}

.cert-badge {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  text-align: left;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  text-align: left;
}

.footer-links { display: flex; gap: 20px; text-align: left; }

.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  transition: 0.3s ease;
}

.footer-links a:hover { color: #d4a84b; }

/* ===== FLOATING CTA ===== */
.float-btns {
  position: fixed;
  bottom: 28px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.float-btn {
  background: #d4a84b;
  color: #000;
  border-radius: 50px;
  padding: 13px 20px;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 4px 18px rgba(232,160,32,0.45);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s ease;
  white-space: nowrap;
}

.float-btn:hover {
  background: #f5b840;
  transform: translateY(-3px);
}

.float-wa {
  background: #25d366 !important;
  color: #000 !important;
  box-shadow: 0 4px 18px rgba(37,211,102,0.35) !important;
}

.float-wa:hover { background: #20c55b !important; }

/* ===== FOOTER RESPONSIVE ===== */
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
