.site-footer a,
.site-footer a:visited,
.site-footer a:active {
  text-decoration: none;
  color: inherit;
}

.site-footer {
  background: linear-gradient(90deg, #121212, #0d0d12);
  color: white;
  margin-top: 20px;
}

.footer-inner {
  max-width: 1480px;
  margin: 0 auto;
  padding: 55px 40px 28px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr 0.9fr;
  gap: 36px;
  align-items: start;
}

.footer-title {
  font-size: 18px;
  letter-spacing: 3px;
  font-weight: 700;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.footer-links a,
.footer-contact div,
.footer-about p {
  display: block;
  color: rgba(255, 255, 255, 0.95);
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 2px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-contact-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 16px;
}

.footer-book-btn {
  display: inline-block;
  margin-top: 18px;
  background: #d6a844;
  color: white;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 18px;
}

.footer-book-btn:hover {
  opacity: 0.92;
}

.footer-about p {
  max-width: 360px;
  line-height: 1.3;
  text-align: center;
  margin: 0 auto;
}

.footer-payment {
  text-align: center;
}

.payment-card {
  background: #f4f4ef;
  border-radius: 3px;
  padding: 10px 12px;
  width: 205px;
  margin: 0 auto 16px;
  color: #86b86a;
  font-weight: 700;
  font-style: italic;
  font-size: 14px;
}

.payment-brands {
  margin-top: 8px;
  color: #3e67d8;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
}

.ancv-box {
  margin-top: 10px;
  font-weight: 700;
  line-height: 1.3;
}

.ancv-top {
  color: #1b6bd7;
  font-size: 26px;
  font-style: italic;
  margin-bottom: 2px;
}

.ancv-mid {
  color: #1b6bd7;
  font-size: 13px;
  text-transform: uppercase;
}

.ancv-connect {
  display: inline-block;
  background: #f59a58;
  color: white;
  padding: 4px 10px;
  margin-top: 8px;
  font-size: 17px;
  font-weight: 800;
  border-radius: 2px;
}

.footer-separator {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  margin: 34px 0 24px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.96);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-brand-logo {
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 1px;
}

.footer-brand-sub {
  font-size: 10px;
  opacity: 0.9;
  margin-top: 2px;
}

.footer-right a {
  color: #d6a844;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-about p {
    text-align: left;
    margin: 0;
  }

  .footer-payment {
    text-align: left;
  }

  .payment-card {
    margin-left: 0;
  }
}