  .site-footer *,
  .site-footer *::before,
  .site-footer *::after { box-sizing: border-box; }

  .site-footer {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 14px;
    line-height: 1.6;
  }

  /* ══════════════════════════════════════════════════
     BODY — lighter on left col (≈ col-md-3 = 25%)
             darker on remaining 75%
     The absolute bg-split div handles full-bleed color
  ══════════════════════════════════════════════════ */
  .site-footer .site-footer__body {
    position: relative;
    padding: 100px 0 75px;
    /* no margin, no border */
  }

  /* Full-bleed split sitting behind the container */
  .site-footer .site-footer__body-bg {
    position: absolute;
    inset: 0;
    display: flex;
  }

  .site-footer .site-footer__body-bg-dark {
    flex: 1;
    background-color: #092640;   /* darker — behind links + get in touch */
  }

  /* Container must sit above the bg split */
  .site-footer .site-footer__body > .container {
    position: relative;
    z-index: 1;
  }

  /* ══════════════════════════════════════════════════
     BOTTOM BAR — same split crossed:
     left (copyright) = lighter, right (socials) = darker
  ══════════════════════════════════════════════════ */
  .site-footer .site-footer__bottom {
    position: relative;
    /* no padding-top — flush against body */
  }

  .site-footer .site-footer__bottom-bg {
    position: absolute;
    inset: 0;
    display: flex;
  }

  .site-footer .site-footer__bottom-bg-light {
    flex: 0 0 25%;
    background-color: #0e2535;   /* lighter bottom */
  }

  .site-footer .site-footer__bottom-bg-dark {
    flex: 1;
    background-color: #071b26;   /* darker bottom */
  }

  .site-footer .site-footer__bottom > .container {
    position: relative;
    z-index: 1;
  }

  .site-footer .site-footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
  }

  /* ── Logo ── */
  .site-footer .site-footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 26px;
    text-decoration: none;
  }

  .site-footer .site-footer__logo-icon {
    width: 48px;
    height: 48px;
    background-color: #b94a32;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .site-footer .site-footer__logo-icon i {
    font-size: 19px;
    color: #fff;
    transform: rotate(-25deg);
  }

  .site-footer .site-footer__logo-name {
    display: block;
    font-size: 19px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    line-height: 1;
  }

  .site-footer .site-footer__logo-sub {
    display: block;
    font-size: 9px;
    font-weight: 600;
    color: #6a9aaa;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 4px;
  }

  /* ── Column headings ── */
  .site-footer .site-footer__col-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0 0 24px 0;
  }

  .site-footer .site-footer__col-title::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 15px;
    background-color: #b94a32;
    border-radius: 2px;
    flex-shrink: 0;
  }

  /* ── Nav links ── */
  .site-footer .site-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .site-footer .site-footer__links li { margin-bottom: 11px; }
  .site-footer .site-footer__links li:last-child { margin-bottom: 0; }

  .site-footer .site-footer__links a {
    color: #7fa8b5;
    text-decoration: none;
    transition: color 0.2s, padding-left 0.2s;
    display: inline-block;
  }

  .site-footer .site-footer__links a:hover {
    color: #fff;
    padding-left: 5px;
    text-decoration: none;
  }

  /* ── Get In Touch column ── */
  .site-footer .site-footer__get-in-touch {
    padding-left: 28px;
    border-left: 1px solid rgba(255,255,255,0.07);
  }

  .site-footer .site-footer__right-contact {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .site-footer .site-footer__right-contact li {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin-bottom: 20px;
    color: #7fa8b5;
  }

  .site-footer .site-footer__right-contact li:last-child { margin-bottom: 0; }

  .site-footer .site-footer__ic {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(185,74,50,0.38);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b94a32;
    font-size: 13px;
    margin-top: 2px;
    transition: background 0.25s, border-color 0.25s, color 0.25s;
  }

  .site-footer .site-footer__right-contact li:hover .site-footer__ic {
    background: #b94a32;
    border-color: #b94a32;
    color: #fff;
  }

  .site-footer .site-footer__ic-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #3d6878;
    margin-bottom: 2px;
  }

  .site-footer .site-footer__ic-value {
    display: block;
    font-size: 14px;
    color: #b8cdd4;
  }

  /* ── Copyright ── */
  .site-footer .site-footer__copy {
    font-size: 13px;
    color: #4d7484;
    margin: 0;
  }

  .site-footer .site-footer__copy a {
    color: #b94a32;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
  }

  .site-footer .site-footer__copy a:hover {
    color: #d4614a;
    text-decoration: none;
  }

  /* ── Social buttons ── */
  .site-footer .site-footer__socials {
    display: flex;
    gap: 7px;
  }

  .site-footer .site-footer__social-btn {
    width: 36px;
    height: 36px;
    background-color: #b94a32;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    transition: background-color 0.25s, transform 0.2s;
  }

  .site-footer .site-footer__social-btn:hover {
    background-color: #8f3422;
    color: #fff;
    text-decoration: none;
    transform: translateY(-3px);
  }

  /* ── Back to top ── */
  .site-footer .site-footer__top-btn {
    position: fixed;
    bottom: 26px;
    right: 26px;
    width: 42px;
    height: 42px;
    background-color: #b94a32;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 15px;
    z-index: 999;
    box-shadow: 0 4px 14px rgba(185,74,50,0.4);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s, transform 0.3s, background 0.25s;
    cursor: pointer;
    border: none;
    outline: none;
  }


.site-footer .site-footer__logo img {
    max-width: 200px;
    padding-block: 50px;
    margin-left: -20px;
    border-radius: 10px;
}

  .site-footer .site-footer__top-btn.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .site-footer .site-footer__top-btn:hover { background-color: #8f3422; }

  /* ══════════════════════════════════════
     RESPONSIVE — tablet & mobile
  ══════════════════════════════════════ */

  /* Tablet: single bg color, two cols */
  @media (max-width: 991px) {
    .site-footer .site-footer__body-bg,
    .site-footer .site-footer__bottom-bg { display: none; }

    .site-footer .site-footer__body  { background-color: #0a2330; padding: 48px 0 40px; }
    .site-footer .site-footer__bottom { background-color: #071b26; }

    .site-footer .site-footer__get-in-touch {
      border-left: none;
      border-top: 1px solid rgba(255,255,255,0.07);
      padding-left: 0;
      padding-top: 28px;
      margin-top: 28px;
    }
  }

  /* Mobile: stacked single column, labelled sections */
  @media (max-width: 767px) {
    .site-footer .site-footer__body  { padding: 40px 0 36px; }

    /* Each col stacks full width with bottom divider */
    .site-footer .site-footer__body .col-xs-12 {
      padding-bottom: 28px;
      margin-bottom: 28px;
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .site-footer .site-footer__body .col-xs-12:last-child {
      padding-bottom: 0;
      margin-bottom: 0;
      border-bottom: none;
    }

    /* Get in touch on mobile */
    .site-footer .site-footer__get-in-touch {
      border-top: 1px solid rgba(255,255,255,0.07);
      padding-top: 28px;
      margin-top: 0;
    }

    .site-footer .site-footer__bottom-inner {
      flex-direction: column;
      align-items: center;
      gap: 14px;
      text-align: center;
    }
  }
