/* Prevent horizontal overflow on mobile */
html {
  overflow-x: hidden;
}

/* ===== MAIN FOOTER ===== */

.site-footer {
  background: #002a46;
  color: #fff;
  padding: 56px 24px 24px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
}

/* 4-column grid */
.site-footer__top {
  display: grid;
  grid-template-columns: 2.4fr 1.6fr 2.1fr 2fr;
  gap: 48px;
  margin-bottom: 0;
}

/* Remove block wrapper chrome */
.site-footer .block {
  margin: 0;
  padding: 0;
  border: none;
}

.site-footer .content {
  font-size: inherit;
  margin-top: 0;
}

/* ===== BRAND COLUMN ===== */

.site-footer__brand img {
  
  display: block;
  margin-bottom: 16px;
  height: auto;
}

.site-footer__brand p {
  font-size: 13.5px;
  color: #9AA7B8;
  line-height: 1.6;
  margin-bottom: 14px;
}

/* ===== LINK COLUMNS ===== */

.site-footer__col h2 {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #fff;
  margin: 15px 0 10px;
  border-bottom: none;
}

.site-footer__col h2:first-child {
  margin-top: 0;
}

.site-footer__col p {
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 16px;
  color: #fff;
}

.site-footer__col p a {
  color: #fff;
  text-decoration: none;
}

.site-footer__col p a:hover {
  text-decoration: underline;
}

.site-footer__col .content ul:not(.menu) {
  list-style: none;
  padding: 0;
  padding-left: 0;
  margin: 0 0 20px;
}

.site-footer__col ul li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 5px;
}

.site-footer__col ul li::before {
  content: '\203A';
  position: absolute;
  left: 0;
  color: #F58220;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.4;
}

.site-footer__col ul li a,
.site-footer__top .content li a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  border-bottom: none;
  padding: 0;
  text-indent: 0;
  display: inline;
  line-height: inherit;
}

.site-footer__col ul li a:hover {
  text-decoration: underline;
}

/* ===== CONTACT US BUTTON ===== */

.site-footer .content .btn-footer-contact {
  display: inline-block;
  background: #F58220;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  padding: 10px 28px;
  border-radius: 35px;
  margin-bottom: 18px;
  margin-top: 4px;
}

.btn-footer-contact:hover {
  background: #D96E18;
  color: #fff;
  text-decoration: none;
}

/* ===== SOCIAL ICONS ===== */

.footer-social {
  display: flex;
  gap: 8px;
}

.site-footer .content .footer-social a {
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #002a46;
  font-size: 23px;
  text-decoration: none;
  flex-shrink: 0;
}

.site-footer .content .footer-social a i{
  color: #002a46;
}

.footer-social a:hover {
}

/* ===== LATEST INSIGHTS ===== */

.footer-insights-post a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  display: block;
  margin-bottom: 8px;
}

.footer-insights-post a:hover {
  text-decoration: underline;
}

.site-footer .content a.footer-see-all {
  color: #F58220;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 4px;
}

a.footer-see-all:hover {
  text-decoration: underline;
  color: #F58220;
}

.site-footer .content .phone{
  text-decoration: underline;
  color: #fff;
}

/* ===== SIGN UP BUTTON ===== */

.site-footer .content a.btn-footer-signup {
  display: inline-block;
  padding: 10px 28px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid #fff;
  color: #fff;
  border-radius: 35px;
  text-decoration: none;
  margin-top: 10px;
}

.site-footer .content a.btn-footer-signup:hover {
  background: #fff;
  color: #002a46;
  text-decoration: none;
}

/* ===== BOTTOM BAR ===== */

.site-footer__bottom {
  background: #003558;
  padding: 20px 48px;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #fff;
  margin-top: 0;
}

.site-footer__bottom .block {
  margin: 0;
  padding: 0;
  border: none;
}

.site-footer__bottom .content {
  font-size: inherit;
  margin-top: 0;
}

.site-footer__bottom p {
  margin: 0;
  line-height: 1.6;
  color: #fff;
}

.site-footer__bottom a {
  color: #F58220;
  text-decoration: underline;
}

.site-footer__bottom a:hover {
  color: #fff;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1024px) {
  .site-footer__top {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-footer {
    padding: 40px 24px 24px;
  }

  .site-footer__bottom {
    padding: 16px 24px;
  }
}

@media (max-width: 768px) {
  .site-footer__top {
    grid-template-columns: 1fr;
  }
}
