/* Transport page */

.transport-page .desktop-nav a[href="#works"] {
  display: none;
}

.transport-hero {
  background:
          linear-gradient(
                  90deg,
                  rgba(245, 247, 251, 0.98) 0%,
                  rgba(245, 247, 251, 0.94) 34%,
                  rgba(245, 247, 251, 0.78) 52%,
                  rgba(245, 247, 251, 0.42) 72%,
                  rgba(245, 247, 251, 0.18) 100%
          ),
          url("assets/transport-hero.png") center right / cover no-repeat;
}

.transport-services .service-card {
  min-height: 0;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.transport-service-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  background: #eef3f9;
}

.transport-service-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.35s ease;
}

.transport-services .service-card:hover .transport-service-image img {
  transform: scale(1.035);
}

.transport-services .service-card h3 {
  margin: 0;
  padding: 18px 28px 10px;
}

.transport-services .service-card p {
  margin: 0;
  padding: 0 28px 28px;
}

.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.vehicle-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(26, 44, 82, 0.08);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.vehicle-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 54px rgba(26, 44, 82, 0.13);
}

.vehicle-card-heading {
  min-height: 150px;
  padding: 30px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  color: #ffffff;
  background:
    radial-gradient(
      circle at 88% 20%,
      rgba(255, 255, 255, 0.16),
      transparent 32%
    ),
    linear-gradient(135deg, #111a2b 0%, #1c2b45 100%);
}

.vehicle-card-heading h3 {
  margin-bottom: 0;
  color: #ffffff;
  font-size: clamp(26px, 3vw, 36px);
}

.vehicle-type {
  margin-bottom: 8px;
  color: #aebbd0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.vehicle-badge {
  min-width: 74px;
  min-height: 44px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 13px;
  color: #ffffff;
  background: var(--primary);
  font-weight: 900;
  white-space: nowrap;
}

.vehicle-body {
  padding: 30px;
}

.vehicle-body > p {
  margin: 26px 0 0;
  color: var(--muted);
}

.vehicle-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.vehicle-spec {
  min-width: 0;
  padding: 18px;
  border-radius: 16px;
  background: var(--bg);
}

.vehicle-spec span,
.vehicle-spec strong {
  display: block;
}

.vehicle-spec span {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 13px;
}

.vehicle-spec strong {
  font-size: 22px;
}

.vehicle-footnote {
  max-width: 760px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.vehicle-photo {
  margin-top: 24px;
  overflow: hidden;
  border-radius: 18px;
  background: #eef3f9;
}

.vehicle-photo img {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* Responsive */

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

@media (max-width: 680px) {
  .transport-hero {
    background:
            linear-gradient(
                    180deg,
                    rgba(245, 247, 251, 0.9) 0%,
                    rgba(245, 247, 251, 0.94) 45%,
                    rgba(245, 247, 251, 0.98) 100%
            ),
            url("assets/transport-hero.png") center / cover no-repeat;
  }

  .transport-services {
    gap: 12px;
  }

  .transport-services .service-card {
    padding: 0;
    text-align: left;
  }

  .transport-service-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    margin: 0;
  }

  .transport-services .service-card h3 {
    margin: 0;
    padding: 14px 14px 8px;
    font-size: 18px;
    line-height: 1.3;
  }

  .transport-services .service-card p {
    margin: 0;
    padding: 0 14px 18px;
    font-size: 14px;
    line-height: 1.55;
  }

  .vehicle-card-heading {
    min-height: auto;
    padding: 24px 22px;
  }

  .vehicle-card-heading h3 {
    font-size: 26px;
  }

  .vehicle-body {
    padding: 22px;
  }

  .vehicle-specs {
    grid-template-columns: 1fr;
  }
}
