.site-footer {
  background:
    linear-gradient(135deg, rgba(4, 31, 61, 0.98), rgba(6, 43, 85, 0.96)),
    url("../images/folder-3/19.jpeg") center / cover;
  color: var(--white);
  padding-top: 40px;
}

.footer-grid {
  display: grid;
  gap: 20px 40px;
  grid-template-columns: 1.5fr 0.9fr 1.3fr 1.1fr;
}

/* Explore column has the most links — flow it into two sub-columns
   so all four footer columns stay roughly the same height. */
.footer-grid > div:nth-child(3) ul {
  columns: 2;
  column-gap: 30px;
}

.footer-logo {
  align-items: center;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  display: inline-flex;
  justify-content: center;
  margin-bottom: 14px;
  padding: 10px 16px;
}

.footer-logo img {
  display: block;
  height: 46px;
  object-fit: contain;
  width: auto;
}

.footer-brand {
  color: var(--white);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 8px;
}

.site-footer p,
.site-footer a,
.site-footer li {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer > .container p,
.footer-grid p {
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

.footer-enquiry {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  margin-top: 12px;
  padding: 11px 14px;
}

.site-footer a:hover {
  color: var(--gold);
}

.site-footer h3 {
  color: var(--white);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0;
  margin-bottom: 10px;
  text-transform: uppercase;
}

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

.site-footer li {
  margin: 5px 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  margin-top: 26px;
  padding: 14px 0;
  text-align: center;
}

@media (max-width: 760px) {
  .footer-grid {
    gap: 22px;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
