/* THE LUXURY AFRICA DMC — shared public footer
   Used by the main website and all public /review/ pages. */

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

.tla-site-footer {
  --tla-footer-forest: #15231e;
  --tla-footer-forest-2: #1d3028;
  --tla-footer-terracotta: #a55332;
  --tla-footer-ochre: #d4a641;
  --tla-footer-sand: #e7d3a8;
  --tla-footer-ivory: #f5efe2;
  --tla-footer-muted: #aeb9b1;
  --tla-footer-soft: #7f8e85;
  --tla-footer-line: rgba(231, 211, 168, .14);
  --tla-footer-whatsapp: #45c979;

  position: relative;
  overflow: hidden;
  color: var(--tla-footer-ivory);
  background:
    linear-gradient(rgba(21, 35, 30, .975), rgba(21, 35, 30, .975)),
    repeating-linear-gradient(
      135deg,
      rgba(212, 166, 65, .055) 0 2px,
      transparent 2px 15px
    );
  border-top: 1px solid rgba(212, 166, 65, .34);
  font-family: "Jost", Arial, sans-serif;
  font-weight: 300;
}

.tla-site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .32;
  background-image:
    linear-gradient(30deg, rgba(165, 83, 50, .12) 12%, transparent 12.5%, transparent 87%, rgba(165, 83, 50, .12) 87.5%),
    linear-gradient(150deg, rgba(212, 166, 65, .08) 12%, transparent 12.5%, transparent 87%, rgba(212, 166, 65, .08) 87.5%);
  background-size: 52px 90px;
}

.tla-site-footer a {
  color: inherit;
  text-decoration: none;
}

.tla-site-footer img {
  display: block;
  max-width: 100%;
}

.tla-site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.tla-site-footer__pattern {
  position: relative;
  z-index: 1;
  height: 5px;
  background:
    repeating-linear-gradient(
      90deg,
      var(--tla-footer-terracotta) 0 36px,
      var(--tla-footer-ochre) 36px 72px,
      var(--tla-footer-sand) 72px 108px,
      var(--tla-footer-forest-2) 108px 144px
    );
}

.tla-site-footer__wrap {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.tla-site-footer__trust {
  display: grid;
  grid-template-columns: minmax(225px, auto) minmax(320px, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 19px 0 16px;
  border-bottom: 1px solid var(--tla-footer-line);
}

.tla-site-footer__logos {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 14px;
}

.tla-site-footer__logo-main {
  width: auto;
  height: 49px;
  object-fit: contain;
}

.tla-site-footer__logo-separator {
  width: 1px;
  height: 31px;
  flex: 0 0 1px;
  background: rgba(212, 166, 65, .34);
}

.tla-site-footer__logo-partner {
  width: auto;
  height: 31px;
  object-fit: contain;
  opacity: .88;
}

.tla-site-footer__review-widget {
  display: block;
  min-width: 0;
}

.tla-site-footer__review-summary {
  display: grid;
  grid-template-columns: auto minmax(150px, 1fr);
  align-items: center;
  gap: 13px;
  min-height: 58px;
  padding: 9px 14px;
  border-left: 4px solid var(--tla-footer-ochre);
  background: linear-gradient(
    90deg,
    rgba(165, 83, 50, .13),
    rgba(212, 166, 65, .035)
  );
}

.tla-site-footer__review-score {
  min-width: 84px;
  white-space: nowrap;
}

.tla-site-footer__review-stars {
  display: block;
  color: var(--tla-footer-ochre);
  font-size: 12px;
  letter-spacing: 1.7px;
  line-height: 1;
}

.tla-site-footer__review-average {
  display: block;
  margin-top: 5px;
  color: var(--tla-footer-ivory);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.28rem;
  font-weight: 600;
  line-height: 1;
}

.tla-site-footer__review-copy {
  min-width: 0;
}

.tla-site-footer__review-title {
  display: block;
  color: var(--tla-footer-sand);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.08;
}

.tla-site-footer__review-meta {
  display: block;
  margin-top: 5px;
  color: var(--tla-footer-muted);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .13em;
  line-height: 1.25;
  text-transform: uppercase;
}

.tla-site-footer__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
}

.tla-site-footer__button {
  display: inline-flex;
  min-height: 39px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 9px 14px;
  border: 1px solid var(--tla-footer-ochre);
  color: var(--tla-footer-ochre);
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .14em;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
  transition:
    color .2s ease,
    background .2s ease,
    border-color .2s ease,
    transform .2s ease;
}

.tla-site-footer__button--secondary {
  color: var(--tla-footer-ivory);
  border-color: rgba(231, 211, 168, .28);
}

.tla-site-footer__button:hover {
  color: var(--tla-footer-forest);
  border-color: var(--tla-footer-ochre);
  background: var(--tla-footer-ochre);
  transform: translateY(-1px);
}

.tla-site-footer__grid {
  display: grid;
  grid-template-columns: 1.16fr .98fr .98fr 1.12fr;
  padding: 27px 0 23px;
  border-bottom: 1px solid var(--tla-footer-line);
}

.tla-site-footer__column {
  min-width: 0;
  padding: 0 23px;
  border-left: 1px solid var(--tla-footer-line);
}

.tla-site-footer__column:first-child {
  padding-left: 0;
  border-left: 0;
}

.tla-site-footer__column:last-child {
  padding-right: 0;
}

.tla-site-footer__heading {
  margin: 0 0 13px;
  padding-bottom: 8px;
  color: var(--tla-footer-ochre);
  border-bottom: 1px solid var(--tla-footer-line);
  font-size: .60rem;
  font-weight: 700;
  letter-spacing: .24em;
  line-height: 1.3;
  text-transform: uppercase;
}

.tla-site-footer__tagline {
  margin: 0 0 9px;
  color: var(--tla-footer-sand);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.02rem;
  font-style: italic;
  line-height: 1.42;
}

.tla-site-footer__description {
  margin: 0 0 14px;
  color: #bdc7c0;
  font-size: .80rem;
  line-height: 1.63;
}

.tla-site-footer__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.tla-site-footer__socials a {
  display: inline-flex;
  width: 31px;
  height: 31px;
  align-items: center;
  justify-content: center;
  color: var(--tla-footer-muted);
  border: 1px solid var(--tla-footer-line);
  font-size: 12px;
  transition: .2s ease;
}

.tla-site-footer__socials a:hover {
  color: var(--tla-footer-forest);
  border-color: var(--tla-footer-ochre);
  background: var(--tla-footer-ochre);
  transform: translateY(-1px);
}

.tla-site-footer__links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.tla-site-footer__links a {
  display: inline-flex;
  align-items: flex-start;
  gap: 7px;
  color: #c2ccc5;
  font-size: .79rem;
  line-height: 1.42;
  transition: color .2s ease, transform .2s ease;
}

.tla-site-footer__links a:hover {
  color: var(--tla-footer-sand);
  transform: translateX(2px);
}

.tla-site-footer__accent-link {
  margin-top: 7px;
  padding-top: 9px;
  border-top: 1px solid var(--tla-footer-line);
}

.tla-site-footer__accent-link a {
  color: var(--tla-footer-ochre);
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.tla-site-footer__contact-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tla-site-footer__label {
  margin-bottom: 5px;
  color: var(--tla-footer-soft);
  font-size: .56rem;
  font-weight: 700;
  letter-spacing: .20em;
  text-transform: uppercase;
}

.tla-site-footer__contact {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #cbd4ce;
  font-size: .78rem;
  line-height: 1.42;
}

.tla-site-footer__contact + .tla-site-footer__contact {
  margin-top: 5px;
}

.tla-site-footer__contact i {
  width: 14px;
  flex: 0 0 14px;
  margin-top: 3px;
  color: var(--tla-footer-ochre);
  font-size: 12px;
  text-align: center;
}

.tla-site-footer__contact--whatsapp i {
  color: var(--tla-footer-whatsapp);
}

.tla-site-footer__contact a:hover {
  color: var(--tla-footer-sand);
}

.tla-site-footer__payments {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--tla-footer-line);
}

.tla-site-footer__payment-icons {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 5px 0;
  color: #a2ada5;
  font-size: 20px;
}

.tla-site-footer__payment-note {
  margin: 0;
  color: var(--tla-footer-soft);
  font-size: .70rem;
  line-height: 1.45;
}

.tla-site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 13px;
  padding: 13px 0 15px;
}

.tla-site-footer__copyright,
.tla-site-footer__legal a {
  color: var(--tla-footer-soft);
  font-size: .72rem;
  line-height: 1.45;
}

.tla-site-footer__copyright a {
  color: var(--tla-footer-muted);
  font-weight: 500;
}

.tla-site-footer__copyright a:hover,
.tla-site-footer__legal a:hover {
  color: var(--tla-footer-ochre);
}

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

.tla-site-footer__dot {
  width: 3px;
  height: 3px;
  flex: 0 0 3px;
  border-radius: 50%;
  background: var(--tla-footer-soft);
}

@media (max-width: 1040px) {
  .tla-site-footer__trust {
    grid-template-columns: 1fr auto;
    gap: 15px 20px;
  }

  .tla-site-footer__review-widget {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .tla-site-footer__grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 21px;
  }

  .tla-site-footer__column {
    padding: 0 20px 20px;
    border-left: 0;
  }

  .tla-site-footer__column:nth-child(even) {
    border-left: 1px solid var(--tla-footer-line);
  }

  .tla-site-footer__column:nth-child(odd) {
    padding-left: 0;
  }
}

@media (max-width: 680px) {
  .tla-site-footer__wrap {
    width: calc(100% - 28px);
  }

  .tla-site-footer__trust {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 16px 0 14px;
  }

  .tla-site-footer__logos {
    justify-content: center;
  }

  .tla-site-footer__logo-main {
    height: 43px;
  }

  .tla-site-footer__logo-partner {
    height: 28px;
  }

  .tla-site-footer__review-summary {
    grid-template-columns: auto 1fr;
    min-height: 56px;
    padding: 9px 11px;
  }

  .tla-site-footer__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .tla-site-footer__button {
    min-width: 0;
    padding: 9px 8px;
    font-size: .59rem;
  }

  .tla-site-footer__grid {
    grid-template-columns: 1fr;
    padding: 21px 0 18px;
    row-gap: 0;
  }

  .tla-site-footer__column,
  .tla-site-footer__column:nth-child(even),
  .tla-site-footer__column:nth-child(odd) {
    padding: 18px 0;
    border-left: 0;
    border-bottom: 1px solid var(--tla-footer-line);
  }

  .tla-site-footer__column:first-child {
    padding-top: 0;
  }

  .tla-site-footer__column:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .tla-site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 0 15px;
  }
}
