﻿.page-hero {
  position: relative;
  height: 380px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 60px;
  overflow: hidden;
}
 
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.page-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(20, 79, 80, 0.7) 100%);
}
 
.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
 
.page-hero-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}
 
.page-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
.page-breadcrumb li {
  display: flex;
  align-items: center;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
}
.page-breadcrumb li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}
.page-breadcrumb li a:hover {
  color: var(--gold-on-dark);
}
.page-breadcrumb li.active {
  color: var(--gold-on-dark);
}
 
.page-breadcrumb-sep {
  display: inline-block;
  margin: 0 14px;
  color: var(--gold-on-dark);
  font-size: 14px;
  line-height: 1;
  user-select: none;
}
 
@media (max-width: 991.98px) {
  .page-hero {
    height: 320px;
    padding-bottom: 50px;
  }
}
@media (max-width: 575.98px) {
  .page-hero {
    height: 280px;
    padding-bottom: 40px;
  }
  .page-hero-title {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
  }
  .page-breadcrumb li {
    font-size: 11px;
    letter-spacing: 1px;
  }
  .page-breadcrumb-sep {
    margin: 0 10px;
  }
}
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.fleet-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(20, 79, 80, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
}
.fleet-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(20, 79, 80, 0.14);
}

.fleet-card-img {
  position: relative;
  overflow: hidden;
  background: #0A0A0A;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fleet-card-img img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: contain;
  padding: 20px 16px;
  display: block;
  transition: transform 0.6s ease;
}

.fleet-card:hover .fleet-card-img img {
  transform: scale(1.04);
}

.fleet-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--green);
  color: var(--gold-on-dark);
  padding: 6px 14px;
  border-radius: 2px;
}

.fleet-card-body {
  padding: 32px 30px 36px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.fleet-card-target {
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.fleet-card-model {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--green);
  margin-bottom: 4px;
}

.fleet-card-headline {
  font-family: "Montserrat", sans-serif;
  font-size: 13.5px;
  font-weight: 400;
  line-height: 1.85;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.fleet-card-specs {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
}
.fleet-card-specs li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Montserrat", sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.85;
  color: var(--text);
}
.fleet-card-specs li i {
  color: var(--gold);
  font-size: 13px;
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}

.fleet-card-copy {
  font-family: "Montserrat", sans-serif;
  font-size: 13.5px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.fleet-card .content-block-cta {
  margin-top: auto;
}

@media (max-width: 991.98px) {
  .fleet-grid {
    gap: 24px;
  }
}

@media (max-width: 767.98px) {
  .fleet-grid {
    grid-template-columns: 1fr;
  }
  .fleet-card-specs {
    grid-template-columns: 1fr;
  }
  .fleet-card-copy {
    font-size: 12.5px;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  .fleet-card-headline {
    margin-bottom: 16px;
  }
  .fleet-card-body {
    padding: 24px 20px 28px;
  }
}