/* China Chauffeur Service — Fleet V22
   Based on V21. Refinement only:
   - keeps the approved V21 Fleet layout, typography, colors and motion
   - removes the separate shadow/panel feeling around left-side main vehicle images
   - removes the thin white artifact above the Audi A6L main image
*/

.fleet-page-v19 {
  background: #f5f1e9;
}

.fleet-hero-v19 {
  position: relative;
  display: grid;
  min-height: 292px;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #052f35;
}

.fleet-hero-v19 > img {
  position: absolute;
  right: 3%;
  bottom: -54%;
  width: min(620px, 48vw);
  height: 155%;
  object-fit: cover;
  object-position: center 65%;
  opacity: .5;
  filter: saturate(.72) contrast(1.08);
  mix-blend-mode: luminosity;
  transform: translate3d(0, var(--hero-shift, 0), 0);
}

.fleet-hero-shade-v19 {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    radial-gradient(circle at 77% 46%, rgba(191,158,96,.13), transparent 30%),
    linear-gradient(90deg, #052f35 0, rgba(5,47,53,.95) 46%, rgba(5,47,53,.26) 82%, rgba(5,47,53,.7));
}

.fleet-hero-inner-v19 {
  position: relative;
  z-index: 2;
}

.fleet-hero-v19 h1 {
  margin: 0;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(48px, 4.8vw, 64px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.025em;
}

.fleet-hero-v19 h1::after {
  display: block;
  width: 70px;
  height: 3px;
  margin-top: 22px;
  background: var(--gold);
  content: "";
}

.fleet-list-v19 {
  overflow: hidden;
  background:
    radial-gradient(circle at 7% 9%, rgba(191,158,96,.08), transparent 15%),
    radial-gradient(circle at 93% 54%, rgba(7,52,58,.055), transparent 18%),
    #f5f1e9;
}

.vehicle-row-v19 {
  position: relative;
  --bridge-shift: 0px;
  --main-drift: 0px;
  --gallery-drift: 0px;
  padding: 78px 0 82px;
  overflow: hidden;
  background: transparent;
}

.vehicle-row-v19::before {
  position: absolute;
  z-index: 0;
  top: -82px;
  left: -8%;
  width: 116%;
  height: 172px;
  background: linear-gradient(105deg, transparent 15%, rgba(191,158,96,.085) 44%, rgba(7,52,58,.045) 67%, transparent 88%);
  content: "";
  opacity: .78;
  pointer-events: none;
  transform: translate3d(var(--bridge-shift), 0, 0) skewY(-1.6deg);
  will-change: transform;
}

.vehicle-row-v19:nth-child(odd)::after,
.vehicle-row-v19:nth-child(even)::after {
  position: absolute;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  opacity: .3;
  background: radial-gradient(circle, rgba(191,158,96,.17), transparent 68%);
  content: "";
  pointer-events: none;
}

.vehicle-row-v19:nth-child(odd)::after {
  right: -220px;
  bottom: -230px;
}

.vehicle-row-v19:nth-child(even)::after {
  top: -230px;
  left: -220px;
}

.vehicle-row-inner-v19 {
  position: relative;
  z-index: 1;
  width: min(1280px, calc(100% - 64px));
  margin-inline: auto;
}

.vehicle-heading-v19 {
  display: grid;
  grid-template-columns: minmax(340px, .82fr) minmax(0, 1.18fr);
  gap: clamp(48px, 7vw, 104px);
  align-items: end;
  margin-bottom: 39px;
}

.vehicle-number-v19 {
  margin: 0 0 10px;
  color: #8a6b35;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.vehicle-heading-v19 h2 {
  margin: 0;
  color: var(--dark);
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(39px, 3.7vw, 54px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.02em;
}

.vehicle-heading-v19 > p {
  max-width: 680px;
  margin: 0;
  color: #555e5d;
  font-size: 15px;
  line-height: 1.72;
}

.vehicle-media-v19 {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(420px, .82fr);
  gap: 18px;
  align-items: stretch;
  background: transparent;
  border: 0;
  outline: 0;
  box-shadow: none;
}

.vehicle-main-v19,
.vehicle-gallery-v19 figure {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.vehicle-main-v19 {
  display: grid;
  min-height: 432px;
  place-items: center;
  background: transparent;
  border: 0;
  outline: 0;
  box-shadow: none;
}

/* V22: remove the artificial oval shadow under the left main vehicle image. */
.vehicle-main-v19::before {
  display: none;
  content: none;
}

.vehicle-main-v19 > img {
  position: relative;
  z-index: 1;
  display: block;
  width: 92%;
  height: 390px;
  object-fit: contain;
  background: transparent;
  border: 0;
  outline: 0;
  box-shadow: none;
  filter: none;
  mix-blend-mode: multiply;
  transform: translate3d(0, var(--main-drift), 0);
  transition: transform 850ms var(--ease-premium);
  will-change: transform;
}

.vehicle-main-photo-v19 > img {
  width: 94%;
}

/* V22: gently dissolve the outer edges of the three full-photo main images
   into the existing Fleet background without altering layout or scale. */
.vehicle-main-photo-v19 > img {
  -webkit-mask-image: radial-gradient(
    ellipse 76% 74% at 50% 50%,
    #000 0 58%,
    rgba(0,0,0,.98) 70%,
    rgba(0,0,0,.78) 82%,
    transparent 100%
  );
  mask-image: radial-gradient(
    ellipse 76% 74% at 50% 50%,
    #000 0 58%,
    rgba(0,0,0,.98) 70%,
    rgba(0,0,0,.78) 82%,
    transparent 100%
  );
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

/* V22: remove the thin white line embedded near the top edge
   of the Audi A6L transparent main image only. */
#audi-a6l .vehicle-main-v19 > img {
  clip-path: inset(7% 0 0 0);
}

.vehicle-row-v19:hover .vehicle-main-v19 > img {
  transform: translate3d(7px, calc(var(--main-drift) - 3px), 0) scale(1.01);
}

.vehicle-main-v19 figcaption,
.vehicle-gallery-v19 figcaption {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  color: #fff;
  background: linear-gradient(transparent, rgba(3,30,34,.84));
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.vehicle-main-v19 figcaption {
  right: auto;
  left: 22px;
  bottom: 17px;
  padding: 8px 11px;
  background: rgba(5,47,53,.9);
}

.vehicle-gallery-v19 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 10px;
  min-height: 432px;
}

.vehicle-gallery-v19 img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  transform: scale(1.035) translate3d(0, var(--gallery-drift), 0);
  transition: transform 720ms var(--ease-premium), filter 520ms ease;
  will-change: transform;
}

.vehicle-gallery-v19 figure:hover img {
  filter: saturate(1.03) contrast(1.02);
  transform: scale(1.07) translate3d(0, var(--gallery-drift), 0);
}

.vehicle-gallery-v19 figcaption {
  padding: 25px 12px 9px;
}

.vehicle-capacity-v19 {
  display: grid;
  grid-template-columns: 150px 150px 150px minmax(0, 1fr);
  gap: 12px;
  align-items: stretch;
  margin-top: 18px;
}

.vehicle-capacity-v19 > div {
  position: relative;
  display: grid;
  grid-template-columns: 30px 1fr;
  column-gap: 6px;
  align-items: center;
  min-height: 70px;
  padding: 12px 14px;
  background: rgba(255,255,255,.7);
  box-shadow: 0 12px 28px rgba(8,44,48,.045);
}

.vehicle-capacity-v19 svg {
  grid-row: 1 / 3;
  width: 25px;
  height: 25px;
  fill: none;
  stroke: var(--gold);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.vehicle-capacity-v19 span {
  align-self: end;
  color: #7a7d78;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.vehicle-capacity-v19 strong {
  align-self: start;
  color: var(--dark);
  font-family: "Newsreader", Georgia, serif;
  font-size: 25px;
  font-weight: 500;
  line-height: 1;
}

.vehicle-capacity-v19 > p {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 14px 21px;
  color: #626965;
  background: rgba(230,223,211,.72);
  font-size: 13px;
  line-height: 1.55;
}

.vehicle-capacity-v19 > p strong {
  flex: 0 0 auto;
  margin-right: 10px;
  color: var(--dark);
  font-family: "Inter", Arial, sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.fleet-match-v19 {
  padding: 34px 0;
  color: #fff;
  background:
    radial-gradient(circle at 80% 50%, rgba(191,158,96,.11), transparent 30%),
    #06343a;
}

.fleet-match-inner-v19 {
  display: grid;
  grid-template-columns: minmax(220px, .66fr) minmax(0, 1.7fr);
  gap: 54px;
  align-items: center;
}

.fleet-match-v19 h2 {
  margin: 0;
  color: #fff;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(28px, 2.65vw, 39px);
  font-weight: 500;
  line-height: 1.04;
}

.fleet-match-v19 ol {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 25px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fleet-match-v19 li {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 9px;
  align-items: center;
}

.fleet-match-v19 li:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -17px;
  color: rgba(191,158,96,.78);
  content: "→";
  transform: translateY(-50%);
}

.fleet-match-v19 li > span {
  grid-row: 1 / 3;
  color: var(--gold-hover);
  font-family: "Newsreader", Georgia, serif;
  font-size: 29px;
  line-height: 1;
}

.fleet-match-v19 strong {
  font-size: 15px;
  line-height: 1.1;
}

.fleet-match-v19 small {
  color: rgba(255,255,255,.62);
  font-size: 13px;
  line-height: 1.3;
}

.fleet-note-v19 {
  margin: 0;
  padding: 21px max(24px, calc((100vw - 1180px) / 2));
  color: #666b67;
  background: #eee7dc;
  font-size: 13px;
  line-height: 1.55;
  text-align: center;
}

.fleet-note-v19 strong {
  color: var(--dark);
}

.fleet-page-v19 .services-cta {
  position: relative;
  margin-top: 0;
  padding: 84px 0;
  color: var(--dark);
  background: #f7f3ec;
}

.fleet-page-v19 .services-cta::after {
  display: none;
}

.fleet-page-v19 .services-cta .inner-cta-layout {
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
  gap: 5%;
}

.fleet-page-v19 .services-cta .button {
  justify-self: center;
}

.fleet-page-v19 .services-cta h2 {
  color: var(--dark);
  font-size: clamp(38px, 3.2vw, 48px);
  line-height: 1.1;
  letter-spacing: -.018em;
}

.fleet-page-v19 .services-cta p:not(.eyebrow) {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

@media (max-width: 1040px) {
  .vehicle-heading-v19 {
    grid-template-columns: minmax(300px, .8fr) minmax(0, 1.2fr);
    gap: 46px;
  }

  .vehicle-media-v19 {
    grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr);
  }

  .vehicle-capacity-v19 {
    grid-template-columns: repeat(3, 1fr);
  }

  .vehicle-capacity-v19 > p {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .fleet-hero-v19 {
    min-height: 232px;
  }

  .fleet-hero-v19 > img {
    right: -23%;
    width: 88vw;
    opacity: .34;
  }

  .fleet-hero-v19 h1 {
    font-size: 46px;
  }

  .vehicle-row-v19 {
    padding: 54px 0 60px;
  }

  .vehicle-row-inner-v19 {
    width: min(100% - 32px, 1280px);
  }

  .vehicle-heading-v19 {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 28px;
  }

  .vehicle-heading-v19 h2 {
    font-size: 38px;
  }

  .vehicle-media-v19 {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .vehicle-main-v19 {
    min-height: 280px;
  }

  .vehicle-main-v19 > img {
    width: 96%;
    height: 265px;
  }

  .vehicle-gallery-v19 {
    min-height: 390px;
    gap: 7px;
  }

  .vehicle-capacity-v19 {
    gap: 7px;
    margin-top: 12px;
  }

  .vehicle-capacity-v19 > div {
    grid-template-columns: 23px 1fr;
    column-gap: 4px;
    min-height: 65px;
    padding: 10px 8px;
  }

  .vehicle-capacity-v19 svg {
    width: 20px;
    height: 20px;
  }

  .vehicle-capacity-v19 span {
    font-size: 7px;
  }

  .vehicle-capacity-v19 strong {
    font-size: 20px;
  }

  .fleet-match-inner-v19,
  .fleet-page-v19 .services-cta .inner-cta-layout {
    grid-template-columns: 1fr;
  }

  .fleet-match-inner-v19 {
    gap: 24px;
  }

  .fleet-match-v19 ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 28px;
  }

  .fleet-match-v19 li:nth-child(2)::after {
    display: none;
  }

  .fleet-match-v19 li > span {
    font-size: 26px;
  }

  .fleet-match-v19 strong {
    font-size: 13px;
  }

  .fleet-match-v19 small {
    font-size: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .vehicle-row-v19::before,
  .vehicle-main-v19 > img,
  .vehicle-gallery-v19 img {
    transform: none;
    transition: none;
  }
}
