/* =========================
   VEHICLE TRANSPORT (NEW UI)
   scoped: .vt-page
========================= */

.vt-page{
  background: var(--bg-light);
}

.vt-shell{
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

@media (min-width: 992px){
  .vt-shell{
    grid-template-columns: 1.2fr .8fr;
    align-items: start;
  }
}

.vt-hero{
  border-radius: 26px;
  overflow: hidden;
  background: #0b1220;
  position: relative;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255,255,255,.08);
}

.vt-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(90deg, rgba(0,0,0,.85), rgba(0,0,0,.25));
  z-index: 1;
}

.vt-hero-img{
  width: 100%;
  height: 380px;
  object-fit: cover;
  background: #908fd2;
  display:block;
}

@media (min-width: 992px){
  .vt-hero-img{ height: 460px; }
}

.vt-hero-content{
  position:absolute;
  inset:0;
  z-index: 2;
  padding: 28px;
  display:flex;
  flex-direction: column;
  justify-content: flex-end;
  color:#fff;
}

.vt-kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
  width: fit-content;
  margin-bottom: 10px;
}

.vt-hero-title{
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 900;
  line-height: 1.15;
  margin: 0 0 10px;
}

.vt-hero-title span{ color: var(--green-primary); }

.vt-hero-text{
  max-width: 820px;
  color: rgba(255,255,255,.88);
  line-height: 1.8;
  margin: 0;
  font-size: 1.05rem;
}

.vt-rail{
  display:grid;
  gap: 14px;
}

.vt-rail-card{
  background:#fff;
  border: 1px solid rgba(29,53,87,.10);
  border-radius: 20px;
  padding: 18px;
  box-shadow: var(--shadow-sm);
}

.vt-rail-card h3{
  margin: 0 0 8px;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--secondary);
}

.vt-rail-card p{
  margin: 0;
  color: var(--text-light);
  line-height: 1.7;
  font-size: .97rem;
}

.vt-badges{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.vt-badge{
  background: linear-gradient(135deg, rgba(7,148,96,.12), rgba(29,53,87,.06));
  border: 1px solid rgba(7,148,96,.18);
  color: var(--secondary);
  font-weight: 800;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: .9rem;
}

.vt-section{
  background:#fff;
  border: 1px solid rgba(29,53,87,.10);
  border-radius: 24px;
  padding: 26px;
  box-shadow: var(--shadow-sm);
}

.vt-section h2{
  margin: 0 0 14px;
  font-weight: 900;
  color: var(--secondary);
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
}

.vt-section h2 span{ color: var(--green-primary); }

.vt-timeline{
  display:grid;
  gap: 14px;
  margin-top: 14px;
}

.vt-step{
  display:grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  padding: 14px;
  border-radius: 18px;
  background: var(--bg-light);
  border: 1px solid rgba(29,53,87,.08);
}

.vt-step-num{
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 900;
  color:#fff;
  background: linear-gradient(135deg, var(--green-primary), #06c757);
  box-shadow: 0 4px 15px rgba(7,148,96,.25);
}

.vt-step strong{
  color: var(--secondary);
  display:block;
  margin-bottom: 4px;
  font-weight: 900;
}

.vt-imgcard{
  border-radius: 22px;
  overflow:hidden;
  border: 1px solid rgba(29,53,87,.10);
  box-shadow: var(--shadow-sm);
}

.vt-imgcard img{
  width:100%;
  height: 320px;
  object-fit: cover;
  display:block;
}

@media (min-width: 992px){
  .vt-imgcard img{ height: 360px; }
}

.vt-split{
  display:grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 992px){
  .vt-split{
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.vt-list{
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--text-main);
  line-height: 1.8;
}

.vt-cta{
  background: linear-gradient(135deg, rgba(7,148,96,.14), rgba(29,53,87,.06));
  border: 1px solid rgba(7,148,96,.18);
  border-radius: 26px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.vt-cta h2{
  margin: 0 0 10px;
  font-weight: 900;
  color: var(--secondary);
}

.vt-cta p{
  margin: 0;
  color: var(--text-main);
  line-height: 1.85;
  font-size: 1.05rem;
}
