/* ================================================================
   SITE FOOTER
   Desktop: left brand column + 4 nav columns, bottom legal bar
   Mobile: stacked single column
   ================================================================ */


/* ── Main body ──────────────────────────────────────────────────── */

.site-footer__body {
  background: #fff;
}

.site-footer__inner {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  padding: var(--site-py) var(--site-px);
  max-width: 1440px;
  margin: 0 auto;
}


/* ── Left / brand column ────────────────────────────────────────── */

.site-footer__brand {
  flex-shrink: 0;
  width: 287px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.site-footer__brand-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.site-footer__logo-link { line-height: 0; }

.site-footer__logo-link img {
  height: 44px;
  width: auto;
}

.site-footer__reg {
  font-family: var(--font-body, 'Rubik', sans-serif);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 0.01em;
  color: var(--color-primary, #071d49);
  text-align: left;
  margin: 0;
}

/* Social icons row */
.site-footer__social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(7, 29, 73, 0.05);
  border: 1px solid #f4f3f5;
  text-decoration: none;
  transition: background 0.2s ease;
  flex-shrink: 0;
}

.site-footer__social-link:hover { background: rgba(7, 29, 73, 0.12); }

.site-footer__social-link img {
  width: 36px;
  height: 36px;
  display: block;
}

/* Locations */
.site-footer__locations {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

  .sraAccreditation{
        width:90px;
    }
    @media only screen and (max-width:1200px) and (min-width:1000px){
          .sraAccreditation{
        width:110px;
    }
    }
      @media only screen and (max-width:999px) and (min-width:800px){
          .sraAccreditation{
        width:80px;
    }
    }
      @media only screen and (max-width:799px) and (min-width:768px){
          .sraAccreditation{
        width:100px;
    }
    }


/* ── Shared: column heading + link list ─────────────────────────── */

.site-footer__col-heading {
  font-family: var(--font-body, 'Rubik', sans-serif);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--color-primary, #071d49);
  margin: 0;
}

.site-footer__link-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-footer__link-list a,
.site-footer__locations .site-footer__link-list a {
  font-family: var(--font-body, 'Rubik', sans-serif);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--color-primary, #071d49);
  text-decoration: none;
  transition: opacity 0.2s ease;
  display: block;
}

.site-footer__link-list a:hover { opacity: 0.65; }


/* ── Nav columns ────────────────────────────────────────────────── */

.site-footer__nav {
  flex: 1;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  min-width: 0;
}

/* Each top-level column */
.site-footer__col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}

/* Property + Business stacked sub-groups */
.site-footer__col-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.site-footer__col-group + .site-footer__col-group {
  margin-top: 20px;
}


/* ── Bottom bar ─────────────────────────────────────────────────── */

.site-footer__bar {
  background: var(--color-stroke, #e8edf6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}


.site-footer__bar-inner {
  display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 24px var(--site-px);
}

.site-footer__copyright,.site-footer__tag  {
  font-family: var(--font-body, 'Rubik', sans-serif);
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--color-primary, #0c1b47);
  white-space: nowrap;
}

.site-footer__tag {
  display: flex;
  gap: 8px;
  align-items: center;
}

.site-footer__tag img {
    height: 11px;
}

.site-footer__legal {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-footer__legal a {
  font-family: var(--font-body, 'Rubik', sans-serif);
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--color-primary, #0c1b47);
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.site-footer__legal a:hover { opacity: 0.65; }


/* ── Breakpoints ────────────────────────────────────────────────── */

@media (max-width: 1280px) {
  .site-footer__inner { padding: 40px 40px; gap: 40px; }
  .site-footer__bar   { padding: 24px 40px; }
  .site-footer__nav   { gap: 16px; }
}

@media (max-width: 1024px) {
  .site-footer__inner {
    flex-direction: column;
    padding: 40px 40px;
  }

    .site-footer__bar-inner {flex-direction: column;}

  .site-footer__brand {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 24px;
  }

  .site-footer__brand-top { align-items: flex-start; }
  .site-footer__reg { text-align: left; }

  .site-footer__nav { flex-wrap: wrap; }

  .site-footer__col { min-width: 140px; }

  .site-footer__bar { padding: 20px 40px; }
}

@media (max-width: 767px) {
  .site-footer__inner { padding: 32px 20px; gap: 32px; }



  .site-footer__brand {
    flex-direction: column;
    gap: 20px;
  }

  .site-footer__brand-top { align-items: center; }
  .site-footer__reg { text-align: center; }

  .site-footer__nav {
    flex-direction: column;
    gap: 28px;
    width: 100%;
  }

  .site-footer__col { width: 100%; }

  .site-footer__bar {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 0;
    text-align: center;
  }
}
