:root{
    --card-bg:#ffffff;
    --muted:#6b7280;
    --accent:#0ea5a4;
    --border:#e6e7ea;
    --heading: #111827;
    --radius:12px;
    --shadow: 0 6px 20px rgba(12,17,26,0.06);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}
#vehicle-comparison{
    padding:48px 20px;
    max-width:1200px;
    margin:0 auto;
}
#vehicle-comparison > div:first-child {
  text-align: center;
  margin-bottom: 60px;
  animation: fadeInDown 0.8s ease;
}
#vc-heading{
    font-size:20px;
    margin-bottom:6px;
    color:var(--heading);
}
#vehicle-comparison h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--clr-navy);
  margin-bottom: 15px;
}
#vehicle-comparison #vc-lead {
  font-size: 16px;
  color:var(--muted);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}
.vc-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: linear-gradient(135deg, var(--clr-blue-alice) 0%, #ffffff 100%);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  animation: fadeInUp 0.8s ease;
  animation-delay: 0.2s;
  animation-fill-mode: both;
}
.vc-table thead {
  background: linear-gradient(135deg, var(--clr-navy) 0%, var(--clr-navy-light) 100%);
}
.vc-table tbody tr {
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.vc-table tbody tr:hover {
  background: rgba(129, 199, 132, 0.1);
  transform: scale(1.01);
}
.vc-table thead th {
  padding: 20px 15px;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  background-color: var(--clr-navy);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.vc-table tbody td {
  padding:14px 16px;
  font-size: 14px;
  color:var(--heading);
  vertical-align: middle;
  border-bottom:1px solid var(--border);
}
.vc-table tr:last-child td{
    border-bottom:0;
}

.vehicle-cell{
    display:flex;
    gap:12px;
    align-items:center;
}
.vehicle-icon{
    width:48px;
    height:48px;
    flex:0 0 48px;
    border-radius:8px;
    background:#f3f4f6;
    display:inline-grid;
    place-items:center;
}
.vehicle-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--clr-navy);
  display: block;
  margin-bottom: 5px;
}
.vehicle-sub{
    display:block;
    color:var(--muted);
    font-size:13px;
}

.vc-cards{
    display:none;
    gap:16px;
}
.vc-card{
    background:var(--card-bg);
    border-radius:12px;
    padding:14px;
    box-shadow:var(--shadow);
    border:1px solid var(--border);
}
.vc-row{
    display:flex;
    justify-content:space-between;
    padding:8px 0;
    border-top:1px dashed #f1f2f4;
}
.vc-row:first-of-type{
    border-top:0;
}
.vc-row b{
    display:block;
    font-weight:600;
}
.vc-row span{
    display:block;
    color:var(--muted);
    font-size:13px;
}

@media (max-width:900px){
    .vc-table{
    display:none;
    }
    .vc-cards{
    display:flex;
    flex-direction:column;
    }
}

.tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--clr-green-lighter) 0%, var(--clr-green-light) 100%);
  color: var(--clr-navy);
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  margin-right: 8px;
  margin-bottom: 5px;
  box-shadow: 0 2px 8px rgba(76, 175, 80, 0.2);
  transition: all 0.3s ease;
}

.tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}
.highlight{color:var(--accent);font-weight:700}

.vc-card .vehicle-head{
    display:flex;
    gap:12px;
    align-items:center;
    margin-bottom:6px;
}
.capacity{
    font-weight:600;
    font-size: 13px;
}

/* 
---------------------------------------------
Responsive Style
--------------------------------------------- 
*/

@media (max-width: 992px) {
  #vehicle-comparison {
    padding: 60px 0;
  }  
  #vehicle-comparison h3 {
    font-size: 32px;
  }
}

@media (max-width: 767px) {
  #vehicle-comparison {
    padding: 40px 0;
  }  
  #vehicle-comparison h3 {
    font-size: 5vw;
    padding: 0 5%;
  }  
  #vehicle-comparison #vc-lead {
    font-size: 3vw;
    padding: 0 15px;
  }  
  /* Hide table, show cards on mobile */
  .vc-table {
    display: none;
  }  
  .vc-cards {
    display: block;
    padding: 0 15px;
  }  
  .vc-card {
    background: linear-gradient(135deg, #ffffff 0%, var(--clr-blue-alice) 100%);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
  }  
  .vc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--clr-green-light);
  }  
  .vehicle-head {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--clr-green-lighter);
  }  
  .vehicle-head .vehicle-title {
    font-size: 4vw;
    margin-bottom: 8px;
  }  
  .vehicle-head .vehicle-sub {
    font-size: 2.8vw;
    color: #888;
  }  
  .vc-row {
    margin-bottom: 15px;
    padding-left: 10px;
  }  
  .vc-row:last-child {
    margin-bottom: 0;
  }  
  .vc-row b {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8vw;
    color: var(--clr-navy);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }  
  .vc-row span {
    display: block;
    font-size: 2.5vw;
    color: #555;
  }  
  .vc-row .capacity {
    font-size: 2.5vw;
    color: #888;
    margin-top: 3px;
  }
}