/* Footer styles recreated from React version */

.main-footer {
  background-color: #0e2b5c;
  padding: 60px 0;
  color: #ffffff;
}

.main-footer a {
  color: #ffffff;
  text-decoration: none;
}

.main-footer a:hover,
.main-footer a.active {
  color: orange;
}

.main-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-footer ul li a {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-footer ul li a::before {
  content: "›";
  display: inline-block;
  color: orange;
}

.main-footer .small-title {
  height: 24px;
}

.main-footer .get-a-quote-link,
.main-footer .button-open-phone {
  font-weight: bold;
  color: orange;
  display: flex;
  gap: 8px;
  align-items: center;
}

.main-footer .logo-footer {
  max-width: 80%;
}

.main-footer .footer-sitemap {
  columns: 2;
}

/* Simple grid to mimic bootstrap layout only inside footer */
.main-footer .container,
.main-footer-bottom .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

.main-footer .row,
.main-footer-bottom .row {
  display: flex;
  flex-wrap: wrap;
}

.main-footer .col-sm-12,
.main-footer-bottom .col-sm-12,
.main-footer-bottom .col-xs-12 {
  width: 100%;
}

.main-footer .col-md-3 {
  width: 100%;
}

.main-footer .col-md-6 {
  width: 100%;
}

@media (min-width: 992px) {
  .main-footer {
    padding: 60px 0;
  }

  .main-footer .col-md-3 {
    width: 25%;
  }

  .main-footer .col-md-6 {
    width: 50%;
  }

  .main-footer .footer-sitemap {
    columns: 2;
  }
}

@media (max-width: 992px) {
  .main-footer {
    padding: 32px 16px;
  }

  .main-footer .footer-sitemap {
    columns: 1;
    margin-bottom: 50px;
    margin-top: 50px;
  }
}

.main-footer-bottom {
  min-height: 50px;
  background-color: #091c3a;
  color: #ffffff;
}

.main-footer-bottom a {
  color: orange;
  text-decoration: none;
}

.main-footer-bottom .col {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.main-footer-bottom .social-links {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: right;
}

.main-footer-bottom .social-links li {
  display: inline-block;
  margin: 0 8px;
}

.main-footer-bottom .social-links li a {
  color: orange;
  font-size: 25px;
}

.main-footer-bottom .copyright-info {
  display: flex;
  height: 100%;
  align-items: center;
  gap: 8px;
}

@media (min-width: 768px) {
  .main-footer-bottom .col-sm-8 {
    width: 66.666667%;
  }
  
  .main-footer-bottom .col {
    width: 33.333333%;
  }
}

@media (max-width: 600px) {
  .main-footer-bottom {
    padding-bottom: 86px;
  }

  .main-footer-bottom .copyright-info {
    display: inline-block;
    padding-top: 16px;
  }
  
  .main-footer-bottom .col {
    justify-content: center;
    margin-top: 16px;
  }
}

.mobile-footer-links {
  position: fixed;
  bottom: 0;
  left: 0;
  background-color: orange;
  display: none;
  width: 100%;
  height: 60px;
  box-shadow: rgba(0, 0, 0, 0.24) 0 3px 8px;
  z-index: 999;
}

.mobile-footer-links a {
  text-decoration: none;
  color: #0e2b5c;
  font-weight: bold;
  width: 50%;
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
}

.mobile-footer-links a:nth-child(2) {
  border-left: 2px solid #d38800;
}

@media (max-width: 992px) {
  .mobile-footer-links {
    display: flex;
  }
}

