/*
 * E House Movers - vehicle-transport page styles
 * Page-unique sections only. Shared .vm-* and .eh-modes sections live in
 * shared-sections.css. Follows the house conventions:
 *   title  LemonmilkReg 34px #1a1a1a, accent word in #90191c
 *   line   50px x 3px #c9a656
 *   card   #fff, 12px radius, 1px solid #eee
 */

/* ---------------------------------------------------------------
   .vt-luxury - luxury / classic vehicle transport
   Two-column: image left, copy + checklist right.
   --------------------------------------------------------------- */
.vt-luxury {
  padding: 70px 20px;
  background: #F9F5F5;
}

.vt-luxury-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.vt-luxury-visual {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(144, 25, 28, 0.10);
}

.vt-luxury-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.vt-luxury-title {
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 34px;
  line-height: 1.2;
  color: #1a1a1a;
  margin: 0 0 20px;
}

.vt-luxury-title span {
  color: #90191c;
}

.vt-luxury-line {
  width: 50px;
  height: 3px;
  background: #c9a656;
  border-radius: 2px;
  margin: 0 0 24px;
}

.vt-luxury-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.vt-luxury-list li {
  position: relative;
  padding: 0 0 0 32px;
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.6;
  color: #444;
}

.vt-luxury-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #90191c;
  /* check mark */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  background-size: 12px 12px;
  background-repeat: no-repeat;
  background-position: center;
}

@media (max-width: 960px) {
  .vt-luxury-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .vt-luxury-title {
    font-size: 28px;
  }
}

@media (max-width: 600px) {
  .vt-luxury {
    padding: 48px 16px;
  }

  .vt-luxury-title {
    font-size: 24px;
  }

  .vt-luxury-list li {
    font-size: 15px;
  }
}
