/* Black-on-black vehicle silhouette cards — elegant placeholders for real fleet photos */

.vehicle-silhouette {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(ellipse at 50% 80%, rgba(227, 200, 146, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 30% 20%, rgba(227, 200, 146, 0.04) 0%, transparent 50%),
    linear-gradient(180deg, #0a0a0a 0%, #050505 50%, #000 100%);
  overflow: hidden;
}

/* subtle floor reflection line */
.vehicle-silhouette::before {
  content: '';
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 22%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(227, 200, 146, 0.25), transparent);
}

/* ambient glow pool under the vehicle */
.vehicle-silhouette::after {
  content: '';
  position: absolute;
  left: 15%;
  right: 15%;
  bottom: 18%;
  height: 22%;
  background: radial-gradient(ellipse at center top, rgba(227, 200, 146, 0.12), transparent 70%);
  filter: blur(16px);
  pointer-events: none;
}

.vehicle-silhouette svg {
  position: relative;
  z-index: 2;
  width: 72%;
  height: auto;
  max-height: 60%;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.9));
}

/* Nameplate in the corner */
.vehicle-silhouette .plate {
  position: absolute;
  left: 24px;
  top: 20px;
  z-index: 3;
  font: 500 10px/1 'JetBrains Mono', monospace;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(227, 200, 146, 0.7);
  display: flex;
  align-items: center;
  gap: 8px;
}

.vehicle-silhouette .plate::before {
  content: '';
  width: 18px;
  height: 1px;
  background: rgba(227, 200, 146, 0.5);
}

.vehicle-silhouette .name {
  position: absolute;
  right: 24px;
  bottom: 20px;
  z-index: 3;
  font: italic 500 18px/1 'Playfair Display', serif;
  color: rgba(227, 200, 146, 0.85);
  letter-spacing: 0.02em;
}

/* small variant for teaser cards */
.vehicle-silhouette.small svg { width: 82%; max-height: 58%; }
.vehicle-silhouette.small .plate { font-size: 9px; left: 16px; top: 14px; }
.vehicle-silhouette.small .name { font-size: 14px; right: 16px; bottom: 14px; }

/* hero / fleet-page variant */
.vehicle-silhouette.hero svg { width: 78%; max-height: 64%; }
.vehicle-silhouette.hero .plate { font-size: 11px; left: 32px; top: 28px; }
.vehicle-silhouette.hero .name { font-size: 22px; right: 32px; bottom: 28px; }

/* Gold filigree line pattern on the vehicle (subtle) */
.vehicle-silhouette .body { fill: #141414; stroke: #2a2a2a; stroke-width: 1.2; }
.vehicle-silhouette .body-highlight { fill: none; stroke: rgba(227, 200, 146, 0.35); stroke-width: 1; }
.vehicle-silhouette .window { fill: #080808; stroke: rgba(227, 200, 146, 0.18); stroke-width: 0.8; }
.vehicle-silhouette .wheel { fill: #0a0a0a; stroke: rgba(227, 200, 146, 0.25); stroke-width: 1; }
.vehicle-silhouette .wheel-inner { fill: #1a1a1a; stroke: rgba(227, 200, 146, 0.45); stroke-width: 0.6; }
.vehicle-silhouette .headlight { fill: rgba(227, 200, 146, 0.55); }
.vehicle-silhouette .accent { fill: rgba(227, 200, 146, 0.4); }
