/* Clean useful footer */
.fluk-footer-clean {
  position: relative;
  overflow: hidden;
  margin-top: 4rem;
  background:
    linear-gradient(135deg, #003326 0%, #004c38 48%, #006849 100%);
  color: #eefaf3;
  border-top: 1px solid rgba(255,255,255,.16);
}

.fluk-footer-clean::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.06), transparent 34%, rgba(255,255,255,.04));
  pointer-events: none;
}

.fluk-footer-clean * {
  box-sizing: border-box;
}

.fluk-footer-inner {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem) 0 1.35rem;
}

.fluk-footer-top {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(180px, .75fr));
  gap: clamp(1.4rem, 3vw, 2.5rem);
  align-items: start;
}

.fluk-footer-brand h2 {
  margin: 0 0 .8rem;
  color: #ffffff;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.1;
}

.fluk-footer-brand p {
  margin: 0 0 1rem;
  color: rgba(238,250,243,.86);
  line-height: 1.7;
}

.fluk-footer-note {
  display: block;
  padding: .85rem 1rem;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 16px;
  background: rgba(255,255,255,.08);
  color: rgba(238,250,243,.86);
  line-height: 1.55;
}

.fluk-footer-col h3 {
  margin: 0 0 .85rem;
  color: #ffffff;
  font-size: 1rem;
}

.fluk-footer-links {
  display: grid;
  gap: .62rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fluk-footer-links a {
  display: inline-flex;
  width: fit-content;
  color: rgba(238,250,243,.88);
  font-weight: 750;
  text-decoration: none;
  line-height: 1.35;
}

.fluk-footer-links a:hover,
.fluk-footer-links a:focus {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: .18rem;
}

.fluk-footer-searches a::before {
  content: "›";
  margin-right: .45rem;
  color: #a7d98c;
  font-weight: 900;
}

.fluk-footer-cta {
  display: grid;
  gap: .75rem;
  padding: 1rem;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 20px;
  background: rgba(255,255,255,.08);
}

.fluk-footer-cta p {
  margin: 0;
  color: rgba(238,250,243,.86);
  line-height: 1.55;
}

.fluk-footer-buttons {
  display: grid;
  gap: .65rem;
}

.fluk-footer-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 42px;
  padding: .72rem .95rem;
  border-radius: 999px;
  background: #ffffff;
  color: #00543b;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(0,0,0,.14);
}

.fluk-footer-button:hover,
.fluk-footer-button:focus {
  background: #e9f7ed;
  color: #003f31;
}

.fluk-footer-button.secondary {
  background: rgba(255,255,255,.10);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: none;
}

.fluk-footer-button.secondary:hover,
.fluk-footer-button.secondary:focus {
  background: rgba(255,255,255,.16);
}

.fluk-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .75rem 1.2rem;
  margin-top: clamp(1.6rem, 3vw, 2.4rem);
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255,255,255,.14);
  color: rgba(238,250,243,.72);
  font-size: .92rem;
}

.fluk-footer-bottom a {
  color: rgba(238,250,243,.86);
  text-decoration: none;
  font-weight: 800;
}

.fluk-footer-bottom a:hover,
.fluk-footer-bottom a:focus {
  color: #fff;
  text-decoration: underline;
}

@media (max-width: 980px) {
  .fluk-footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .fluk-footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .fluk-footer-top {
    grid-template-columns: 1fr;
  }

  .fluk-footer-inner {
    width: min(100% - 1.25rem, 1120px);
  }
}
/* Final footer cleanup: remove old decorative circles/blobs across all pages */
.fluk-footer-clean {
  background: linear-gradient(135deg, #003326 0%, #004b38 52%, #006849 100%) !important;
}

.fluk-footer-clean::before,
.fluk-footer-clean::after,
#site-footer::before,
#site-footer::after {
  content: none !important;
  display: none !important;
  background: none !important;
  box-shadow: none !important;
}

.fluk-footer-clean .fluk-footer-cta {
  background: rgba(255,255,255,.08) !important;
  border-color: rgba(255,255,255,.18) !important;
}

.fluk-footer-clean .fluk-footer-button {
  background: #ffffff !important;
  color: #00543b !important;
}

.fluk-footer-clean .fluk-footer-button.secondary {
  background: rgba(255,255,255,.12) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255,255,255,.24) !important;
}

.fluk-footer-clean .fluk-footer-button:hover,
.fluk-footer-clean .fluk-footer-button:focus {
  background: #e9f7ed !important;
  color: #003f31 !important;
}

.fluk-footer-clean .fluk-footer-button.secondary:hover,
.fluk-footer-clean .fluk-footer-button.secondary:focus {
  background: rgba(255,255,255,.18) !important;
  color: #ffffff !important;
}
