/* ========== Footer Layout & Typography ========== */

.site-footer {
  background-color: #020617;
  color: #e5e7eb;
  padding: 2.75rem 0 1.75rem;
  margin-top: 2.5rem;
  font-size: 0.9rem;
}

.site-footer a {
  color: #e5e7eb;
  text-decoration: none;
}

.site-footer a:hover {
  color: #facc15;
  text-decoration: none;
}

/* Top wrapper: brand + columns */

.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(0, 3fr);
  gap: 2.25rem;
}

/* Brand block */

.footer-brand {
  max-width: 420px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: #f9fafb;
  margin-bottom: 0.5rem;
}

.footer-description {
  font-size: 0.9rem;
  color: #cbd5f5;
  margin-bottom: 1rem;
}

.footer-highlights {
  list-style: none;
  margin: 0.75rem 0 1.25rem;
  padding: 0;
}

.footer-highlights li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.4rem;
  color: #e5e7eb;
  font-size: 0.9rem;
}

.footer-highlights i {
  color: #facc15;
  font-size: 0.9rem;
}

/* Columns */

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.footer-column h4,
.footer-destinations h4 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.6rem;
  color: #f9fafb;
}

.footer-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-column li + li {
  margin-top: 0.35rem;
}

.footer-column a {
  font-size: 0.88rem;
  color: #e5e7eb;
  opacity: 0.9;
}

.footer-column a:hover {
  opacity: 1;
}

/* Social */

.footer-social {
  margin-top: 1.25rem;
}

.footer-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.footer-social-links a {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #e5e7eb;
  background: rgba(15, 23, 42, 0.7);
  transition:
    background-color 0.15s ease,
    color 0.15s ease,
    transform 0.15s ease,
    border-color 0.15s ease;
}

.footer-social-links a i {
  font-size: 0.9rem;
}

.footer-social-links a:hover {
  background: #facc15;
  color: #020617;
  border-color: #facc15;
  transform: translateY(-1px);
}

/* Destinations */

.footer-destinations {
  max-width: 1200px;
  margin: 1.75rem auto 0;
  padding: 0 1.25rem;
}

.footer-destinations p {
  font-size: 0.87rem;
  color: #9ca3af;
  margin-bottom: 0.6rem;
}

.footer-destination-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.footer-destination-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(55, 65, 81, 0.9);
  font-size: 0.83rem;
}

.footer-destination-links a i {
  color: #facc15;
  font-size: 0.8rem;
}

/* Legal row + Trips */

.footer-legal-row {
  max-width: 1240px;
  margin: 0 auto 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
}

.footer-legal-row a {
  color: #9ca3af;
  text-decoration: none;
}

.footer-legal-row a:hover {
  color: #f9fafb;
  text-decoration: underline;
}

.footer-trips {
  max-width: 1240px;
  margin: 24px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.footer-trips-group h4 {
  margin: 0 0 8px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #f9fafb;
}

.footer-trips-group ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-trips-group li {
  margin-bottom: 6px;
}

.footer-trips-group a {
  color: #9ca3af;
  text-decoration: none;
  font-size: 13px;
}

.footer-trips-group a:hover {
  color: #f9fafb;
  text-decoration: underline;
}

/* Bottom bar + payments */

.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  padding: 0.9rem 1.25rem 0;
  border-top: 1px solid rgba(148, 163, 184, 0.4);
  text-align: center;
  font-size: 0.8rem;
  color: #9ca3af;
}

.footer-bottom p {
  margin-bottom: 0.55rem;
}

.footer-payments {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.footer-payments span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9ca3af;
}

.footer-payments i {
  font-size: 1.3rem;
  color: #e5e7eb;
}

/* Footer responsive */

@media (max-width: 960px) {
  .footer-top {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .footer-columns {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-destination-links {
    gap: 0.4rem;
  }
}