/* Shared site footer — used on every page */

.site-footer {
  background: #096198;
  color: #d6e6f2;
  padding: 60px 20px 0;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 0;
  font-family: "Lato", Helvetica, Arial, sans-serif;
}
/* Reserve space only on mobile when the fixed call banner is visible */
@media (max-width: 767px) {
  body:has(.banner) .site-footer { margin-bottom: 150px; }
}
.site-footer * { box-sizing: border-box; }
.site-footer a { text-decoration: none; }

.site-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.site-footer__heading {
  color: #ffffff;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin: 0 0 16px;
  font-weight: 700;
  position: relative;
  padding-bottom: 10px;
}
.site-footer__heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36px;
  height: 2px;
  background: #f5a623;
}
.site-footer__text {
  margin: 0 0 18px;
  color: #b8c4d1;
  font-size: 14px;
  line-height: 1.65;
}
.site-footer__call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #f5a623;
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 26px;
  font-weight: 700;
  font-size: 16px;
}
.site-footer__call:hover { background: #e09416; color: #ffffff; }

.site-footer__list { list-style: none; margin: 0; padding: 0; }
.site-footer__list li { margin: 0 0 10px; }
.site-footer__list a {
  color: #cfd9e3;
  transition: color 0.2s, padding 0.2s;
  font-size: 14px;
}
.site-footer__list a:hover { color: #f5a623; padding-left: 4px; }
.site-footer__list--plain li { margin-bottom: 14px; font-size: 14px; line-height: 1.55; }
.site-footer__list--plain strong { color: #fff; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; }

.site-footer__disclaimer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 0;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.site-footer__disclaimer h5 {
  color: #f5a623;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 13px;
  margin: 0 0 14px;
  font-weight: 700;
}
.site-footer__disclaimer p {
  color: #8da0b2;
  font-size: 12.5px;
  line-height: 1.7;
  margin: 0 0 12px;
}
.site-footer__disclaimer strong { color: #cfd9e3; }
.site-footer__disclaimer a { color: #f5a623; }

.site-footer__bar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 22px 0 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  text-align: center;
}
.site-footer__bar .copyright {
  color: #8da0b2;
  font-size: 13px;
  margin: 0;
}

@media screen and (min-width: 700px) {
  .site-footer__inner { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}
@media screen and (min-width: 1000px) {
  .site-footer { padding: 70px 40px 0; }
  .site-footer__inner { grid-template-columns: 1.4fr 1fr 1.2fr 1.2fr; gap: 50px; }
  .site-footer__bar { flex-direction: row; text-align: left; }
}
