/* ═══════════════════════════════════════
   FOSS Workshop — Footer Styles
   Add to fixes.css OR upload separately
   as footer-styles.css and enqueue
═══════════════════════════════════════ */

/* ── CTA STRIP ── */
.fw-cta-strip {
  background: #00AEEF;
  padding: 44px 24px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.fw-cta-inner {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.fw-cta-h {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1.1;
  margin: 0 0 8px;
}
.fw-cta-p {
  font-size: 14px;
  color: rgba(255,255,255,.85);
  line-height: 1.65;
  margin: 0;
  max-width: 480px;
}
.fw-cta-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.fw-cta-btn-w {
  background: #fff;
  color: #00AEEF !important;
  border-radius: 9px;
  padding: 13px 24px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  transition: opacity .15s;
}
.fw-cta-btn-w:hover { opacity: .9; }
.fw-cta-btn-o {
  background: transparent;
  color: #fff !important;
  border: 2px solid rgba(255,255,255,.5);
  border-radius: 9px;
  padding: 12px 22px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  transition: border-color .15s;
}
.fw-cta-btn-o:hover { border-color: #fff; }
@media (max-width: 640px) {
  .fw-cta-strip { padding: 36px 24px; }
  .fw-cta-btns { width: 100%; }
  .fw-cta-btn-w, .fw-cta-btn-o {
    flex: 1;
    justify-content: center;
  }
}
@media (min-width: 640px) { .fw-cta-h { font-size: 28px; } }
@media (min-width: 960px) { .fw-cta-h { font-size: 30px; } }

/* ── MAIN FOOTER ── */
.fw-footer-main {
  background: #0D1B2A;
  padding: 52px 24px 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.fw-footer-wrap {
  max-width: 980px;
  margin: 0 auto;
}

/* Grid */
.fw-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid #1A2334;
}
@media (min-width: 600px) {
  .fw-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 40px; }
}
@media (min-width: 960px) {
  .fw-footer-main { padding: 52px 56px 0; }
  .fw-footer-grid { grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 48px; }
}

/* Brand col */
.fw-logo-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.fw-logo-box {
  background: #fff;
  border-radius: 9px;
  padding: 7px 14px;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.fw-logo-img {
  height: 34px;
  width: auto;
  display: block;
  max-width: 120px;
}
.fw-logo-fallback {
  display: none;
  font-size: 16px;
  font-weight: 800;
  align-items: center;
}
.fw-l-foss {
  color: #00AEEF;
  text-transform: uppercase;
}
.fw-l-ws { color: #0D1B2A; }

.fw-since-badge {
  font-size: 11px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: .5px;
  text-transform: uppercase;
  white-space: nowrap;
}
.fw-tagline-txt {
  display: block;
  font-size: 12px;
  font-style: italic;
  color: #00AEEF;
  margin-bottom: 12px;
}
.fw-brand-p {
  font-size: 13px;
  color: #ffffff;
  line-height: 1.7;
  max-width: 240px;
  margin: 0 0 20px;
}

/* Social icons */
.fw-soc-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.fw-soc-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid #1F2D3D;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: border-color .15s;
  flex-shrink: 0;
}
.fw-soc-icon:hover { border-color: #00AEEF; }
.fw-soc-icon svg {
  width: 15px;
  height: 15px;
  fill: rgba(255,255,255,.4);
  transition: fill .15s;
}
.fw-soc-icon:hover svg { fill: #00AEEF; }

/* Nav cols */
.fw-nav-col {}
.fw-col-head {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #374151;
  margin-bottom: 16px;
  display: block;
}
.fw-nav-link {
  display: block;
  font-size: 13px;
  color: #ffffff !important;
  text-decoration: none !important;
  margin-bottom: 10px;
  letter-spacing: -.1px;
  transition: color .15s;
}
.fw-nav-link:hover { color: #00AEEF !important; }

/* Bottom bar */
.fw-bottom-bar {
  padding: 20px 0 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.fw-copyright {
  font-size: 11px;
  color: #374151;
  line-height: 1.6;
}
.fw-legal-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.fw-legal-links a {
  font-size: 11px;
  color: #374151;
  text-decoration: none;
  transition: color .15s;
}
.fw-legal-links a:hover { color: #00AEEF; }
