.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;
  }
}

.fleet-carousel {
  position: relative;
}

.fleet-carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 32px) / 3);
  gap: 16px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
}

.fleet-carousel-track::-webkit-scrollbar {
  display: none;
}

.fleet-slide {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  color: #fffdf7;
  background: #101313;
  scroll-snap-align: start;
}

.fleet-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.6, 0.2, 1);
}

.fleet-slide:hover img {
  transform: scale(1.045);
}

.fleet-slide-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(5, 8, 8, 0.03) 34%, rgba(5, 8, 8, 0.9) 100%);
}

.fleet-slide-copy {
  position: absolute;
  z-index: 2;
  right: 30px;
  bottom: 30px;
  left: 30px;
}

.fleet-slide-copy span {
  color: #d9b66f;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 9px;
  font-weight: 700;
}

.fleet-slide-copy h3 {
  margin: 8px 0 10px;
  letter-spacing: -0.04em;
  font-family: Manrope, "Helvetica Neue", Arial, sans-serif;
  font-size: 32px;
  font-weight: 650;
}

.fleet-slide-copy p {
  max-width: 300px;
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
  line-height: 1.55;
}

.fleet-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 22px;
}

.fleet-carousel-button {
  width: 46px;
  height: 46px;
  cursor: pointer;
  color: #101313;
  border: 1px solid rgba(16, 19, 19, 0.2);
  background: transparent;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}

.fleet-carousel-button:hover,
.fleet-carousel-button:focus-visible {
  color: #101313;
  border-color: #d9b66f;
  outline: none;
  background: #d9b66f;
}

.fleet-carousel-status {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 82px;
  color: #6c6d67;
  letter-spacing: 0.12em;
  font-size: 10px;
  font-weight: 700;
}

.fleet-carousel-status i {
  width: 28px;
  height: 1px;
  background: rgba(16, 19, 19, 0.24);
}

@media (max-width: 900px) {
  .fleet-carousel-track {
    grid-auto-columns: calc((100% - 16px) / 2);
  }

  .fleet-slide {
    min-height: 500px;
  }
}

@media (max-width: 600px) {
  .fleet-carousel-track {
    grid-auto-columns: 86%;
    gap: 10px;
  }

  .fleet-slide {
    min-height: 450px;
  }

  .fleet-carousel-controls {
    justify-content: space-between;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fleet-carousel-track {
    scroll-behavior: auto;
  }

  .fleet-slide img {
    transition: none;
  }
}
