/* --- Footer --- */

/* --- Footer Style overrides --- */
footer ul li {
  text-decoration: none;
  list-style-type: none;
}

.site-footer {
  background: #182a7a;
  padding: 128px 72px 64px;
  margin-bottom: 0;
}
.footer-content {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.footer-row-1 {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.footer-col {
  width: 100%;
}
.footer-col h5 {
  color: #fff;
  font-size: 22px;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 0px;
}
.footer-cta {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer-qr-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px;
  border: 1px solid #fff;
  border-radius: 16px;
  color: #fff;
  font-size: 18px;
  line-height: 1.4;
  cursor: pointer;
}
.footer-qr-box span {
  width: 175px;
}
.footer-qr-box img {
  max-width: 70px;
}
.footer-book-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 19px 24px;
  background: #2290e9;
  border-radius: 32px;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.footer-book-btn:hover {
  background: #1a7ad4;
  color: #fff;
}
.footer-services ul,
.footer-help ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer-services ul li a,
.footer-help ul li a {
  color: #fff;
  font-size: 18px;
  line-height: 1.4;
  text-decoration: none;
  transition: opacity 0.2s;
}
.footer-services ul li a:hover,
.footer-help ul li a:hover {
  opacity: 0.8;
  color: #fff;
}

.footer-help h5 {
  margin-bottom: 24px;
}

.footer-services h5 {
  margin-bottom: 19px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 19px;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-contact-item a {
  color: #fff;
  font-size: 18px;
  line-height: 1.4;
  text-decoration: none;
}
.footer-contact-item a:hover {
  opacity: 0.8;
  color: #fff;
}
.footer-row-2 {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.footer-row-2 p {
  color: #fff;
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 0;
}

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

.footer-icon-wrapper img {
  width: 48px;
}

/*---------------------
    Tablet and Above
-----------------------*/
@media screen and (min-width: 767px) {
  .footer-row-1 {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 121px;
    align-items: flex-start;
  }
  .footer-col {
    width: calc(50% - 61px);
    flex-shrink: 0;
  }
  .footer-row-2 {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
/*---------------------
    Desktop and Above
-----------------------*/
@media screen and (min-width: 1280px) {
  .site-footer {
    padding: 128px 72px 64px;
    display: flex;
    justify-content: center;
  }

  .footer-content {
    max-width: 1400px;
  }

  .footer-row-1 {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  .footer-col {
    width: auto;
  }
}
