.footer-certificate-link {
  display: grid;
  gap: 10px;
  align-items: start;
}

.footer-tursab-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 190px);
  min-height: 58px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.footer-tursab-logo-wrap img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 38px;
  object-fit: contain;
}

.footer-certificate-copy {
  display: block;
}

@media (max-width: 640px) {
  .footer-tursab-logo-wrap {
    width: 176px;
  }
}

.fleet-gallery-section {
  overflow: hidden;
  background: #101313;
  color: #fffdf7;
}

.fleet-gallery-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.55fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 48px;
}

.fleet-gallery-heading h2 {
  margin: 0;
  font-family: Manrope, "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(42px, 5vw, 70px);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1.03;
}

.fleet-gallery-heading h2 em {
  color: #d9b66f;
  font-style: normal;
}

.fleet-gallery-heading > p {
  max-width: 450px;
  margin: 0 0 5px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.8;
}

.fleet-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 220px;
  gap: 12px;
}

.fleet-gallery-item {
  position: relative;
  overflow: hidden;
  min-width: 0;
  background: #080a0a;
}

.fleet-gallery-item.wide {
  grid-column: span 2;
}

.fleet-gallery-item.tall {
  grid-row: span 2;
}

.fleet-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.2, 0.6, 0.2, 1), filter 0.35s ease;
}

.fleet-gallery-item::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.58));
}

.fleet-gallery-item span {
  position: absolute;
  z-index: 1;
  right: 18px;
  bottom: 16px;
  left: 18px;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-size: 8px;
  font-weight: 700;
}

.fleet-gallery-item:hover img {
  transform: scale(1.045);
  filter: brightness(1.08);
}

.fleet-gallery-note {
  max-width: 720px;
  margin: 24px 0 0 auto;
  color: rgba(255, 255, 255, 0.46);
  text-align: right;
  font-size: 10px;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .fleet-gallery-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .fleet-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 210px;
  }
}

@media (max-width: 600px) {
  .fleet-gallery-heading h2 {
    font-size: 40px;
  }

  .fleet-gallery {
    grid-auto-rows: 155px;
    gap: 8px;
  }

  .fleet-gallery-item.tall {
    grid-row: span 1;
  }

  .fleet-gallery-item span {
    right: 12px;
    bottom: 11px;
    left: 12px;
    font-size: 7px;
  }

  .fleet-gallery-note {
    text-align: left;
  }
}
