/* =========================================================
   DirectClinics — Footer
   Reuses brand vars from dc-header.css (--dc-navy / --dc-sand etc.)
========================================================= */
.dc-footer {
  background: #2a2a2a;
  color: #cfccc9;
  font-family: Inter, sans-serif;
}
.dc-footer a { text-decoration: none; }
a.btn.btn-primary.shadow.position-fixed.zi-1000.top-button.visible {
    background: #32666B;
    border-color: #32666B;
}
/* ---------- TOP: newsletter + link columns ---------- */
.dc-footer__top {
  display: grid;
  grid-template-columns: 1.1fr 1.6fr;
  gap: 64px;
  align-items: start;
}
.dc-footer__heading {
  color: #fff;
  font-size: clamp(26px, 2.4vw, 34px);
  line-height: 1.2;
  margin: 0 0 16px;
}
.dc-footer__text {
  color: #97928c;
  line-height: 1.6;
  margin: 0 0 28px;
  max-width: 360px;
}

/* newsletter */
.dc-newsletter__field { position: relative; max-width: 380px; margin-bottom: 16px; }
.dc-newsletter__field input {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 999px;
  padding: 15px 60px 15px 24px;
  color: #fff;
  font-size: 15px;
  outline: none;
}
.dc-newsletter__field input::placeholder { color: #b3aea8; }
.dc-newsletter__field input:focus { border-color: var(--dc-sand); }
.dc-newsletter__field button {
  position: absolute; top: 50%; right: 6px; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 999px; border: 0; cursor: pointer;
  background: var(--dc-sand); color: #2a2a2a; font-size: 16px;
  display: inline-flex; align-items: center; justify-content: center;
  transition: filter .2s ease;
}
.dc-newsletter__field button:hover { filter: brightness(.95); }
.dc-newsletter__consent {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: #cfccc9; cursor: pointer;
}
.dc-newsletter__consent input {
  width: 16px; height: 16px; flex: none;
  accent-color: var(--dc-sand);
}
.dc-newsletter__consent a { color: var(--dc-sand); }
.dc-newsletter__consent a:hover { text-decoration: underline; }

/* link columns */
.dc-footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.dc-footer__col-title {
  color: #fff; font-size: 16px; font-weight: 600; margin: 0 0 16px;
  font-family: Inter, sans-serif !important;
}
.dc-footer__col ul { list-style: none; margin: 0; padding: 0; }
.dc-footer__col li { margin-bottom: 12px; }
.dc-footer__col a { color: #b8b4af; font-size: 15px; transition: color .2s ease; }
.dc-footer__col a:hover { color: #fff; }

/* ---------- MID: socials + logo ---------- */
.dc-footer__mid {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; margin-top: 56px; flex-wrap: wrap;
}
.dc-footer__social { list-style: none; display: flex; gap: 12px; margin: 0; padding: 0; }
.dc-footer__social a {
  width: 36px; height: 36px; border-radius: 8px;
  background: #2e2e2e; color: #e7e4e0; font-size: 16px;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s ease, color .2s ease;
}
.dc-footer__social a:hover { background: var(--dc-sand); color: #1f1f1f; }
.dc-footer__logo img { height: 40px; width: auto; display: block; }

/* ---------- DIVIDER + BOTTOM BAR ---------- */
.dc-footer__divider { border: 0; border-top: 2px solid rgba(255, 255, 255, .12); margin: 30px 0 22px; }
.dc-footer__bottom {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; flex-wrap: wrap;
  font-size: 14px; color: #97928c;
}
.dc-footer__copy { margin: 0; }
.dc-footer__legal { list-style: none; display: flex; gap: 26px; margin: 0; padding: 0; flex-wrap: wrap; }
.dc-footer__legal a { color: #b8b4af; transition: color .2s ease; }
.dc-footer__legal a:hover { color: #fff; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 991px) {
  .dc-footer__top { grid-template-columns: 1fr; gap: 44px; }
}
@media (max-width: 575px) {
  .dc-footer__cols { grid-template-columns: 1fr 1fr; gap: 22px 24px; }
  .dc-footer__mid { flex-direction: column; align-items: flex-start; gap: 22px; }
  .dc-footer__bottom { flex-direction: column; align-items: flex-start; }
  .dc-footer__legal { gap: 14px 22px; }
}