:root{
  --hero-bg: #0b5ed7;
}

body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.bg-primary{
  background-color: #1D4B71 !important;
}

.btn-primary{
  background-color: #1D4B71 !important;
}

.brand-logo{
  height: 52px;
  width: auto;
  display: block;
}

.hero{
  background: linear-gradient(180deg, rgba(0,0,0,.50), rgba(0,0,0,.55)),
              url('/assets/img/banner.png') center/cover no-repeat,
              radial-gradient(1200px 600px at 20% 20%, rgba(255,255,255,.18), transparent 55%),
              radial-gradient(900px 500px at 80% 10%, rgba(255,255,255,.12), transparent 60%),
              linear-gradient(135deg, #0b5ed7, #084298);
  color: #fff;
  padding: 92px 0;
  min-height: 360px;
  display: flex;
  align-items: center;
}

.hero .hero-subcopy{
  max-width: 60ch;
  color: rgba(255,255,255,.92);
  line-height: 1.45;
}

@media (max-width: 768px){
  .brand-logo{
    height: 44px;
  }

  .hero{
    padding: 64px 0;
    min-height: 280px;
  }

  .hero .hero-subcopy{
    max-width: 100%;
  }
}

.hero-card{
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 14px;
  padding: 16px;
}

.hero-icon{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(255,255,255,.18);
}

.vehicle-card{
  transition: transform .18s ease, box-shadow .18s ease;
}

.vehicle-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.vehicle-thumb{
  height: 190px;
  width: 100%;
  object-fit: cover;
  background: #f3f4f6;
}

.kv{
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 8px;
  align-items: center;
  color: #6c757d;
  font-size: .9rem;
}

.kv i{ color: #0b5ed7; }

.map-embed{
  position: relative;
}

.map-embed iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.map-pin{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -100%);
  z-index: 2;
  font-size: 56px;
  line-height: 1;
  color: #dc3545;
  text-shadow: 0 6px 14px rgba(0,0,0,.35);
  pointer-events: none;
}
