/* =================================================== SERVICES PAGE =================================================== */
.services-filter-row {
  background: #2a2d34;
  padding: 30px;
  border-radius: 11px;
  margin-left: auto;
  margin-right: auto;
  display: table;
}
.services-filter-row input,
.services-filter-row select {
  width: 250px;              /* perfect balanced width */
  max-width: 100%;
}
.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;          /* REMOVES SVG white space */
  flex-shrink: 0;          /* ICON NEVER SHRINKS */
  margin-right: 15px;
}
.service-icon svg {
  width: 24px;
  height: 24px;
}
.popularServices{
  font-weight: 400;
}
.step-circle {
  width: 60px;          /* adjust size */
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;   /* vertical centering */
  justify-content: center; /* horizontal centering */
  color: #fff;
  font-weight: 600;
  font-size: 20px;
  line-height: 0;        /* prevents number from shifting */
}
/* =================================================== SECTOR PAGE =================================================== */
#sectorTabs,
#categoryTabs {
  display: flex;
  flex-wrap: wrap;         /* allow wrapping */
  gap: 0.75rem;            /* spacing between items */
  padding: 0;
}
#sectorTabs .tab-item,
#categoryTabs .tab-item {
  flex: 1 1 calc(25% - 0.75rem);  /* 4 per row */
  display: flex;
}
#sectorTabs .tab-link,
#categoryTabs .tab-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0.75rem;
  text-align: center;
  background: #ffc10814;
  border-radius: 8px;
  text-decoration: none;
  background-color: #2a2d34;
  transition: all 0.3s
  ease;
  cursor: default;
}
#sectorTabs .tab-link:hover,
#sectorTabs .tab-link.active,
#categoryTabs .tab-link:hover,
#categoryTabs .tab-link.active {
  background: var(--he);
  color: #000 !important;
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  opacity: 1;
}
.sidebar-links a {
  padding: 5px;
  display: block;
  cursor: pointer;
}
.chip { display:inline-flex; align-items:center; gap:.5rem; padding:.35rem .75rem; border-radius:999px; background:#fff; color:#0e0e0e; border:1px solid rgba(0,0,0,.06); }
.tick-list li::marker { content:""; }
.tick-list li { position:relative; padding-left:28px; margin:.4rem 0; list-style: none;}
.tick-list li:before{
  content:""; position:absolute; left:0; top:2px; width:20px; height:20px; border-radius:6px;
  border:1px solid #e8e8e8; background:#fff;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20"><path d="M4 10l4 4 8-8" stroke="%23000" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat center / 70%;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20"><path d="M4 10l4 4 8-8" stroke="%23000" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat center / 70%;
  background-color:#0f0f0f;
}
.sticky-side { position:sticky; top:96px; }
.mini-stat { display:flex; align-items:center; gap:.75rem; }
.mini-stat span {
  background: #e6e6e6;
  margin: 2px;
  padding: 4px 20px;
  border-radius: 30px;
}
.anchor-nav a { font-size:.9rem; };
/* ===== BASE STYLES ===== */
/* =================================================== HOME PAGE =================================================== */
/* home page header */
.eyebrow { color: var(--muted); font-weight: 500; letter-spacing: .4px; }
.headline { color: var(--text); font-weight: 500; line-height: 1.1; }
.subcopy { color: var(--muted); font-weight: 400; }
/* Circle badge */
.pickup-badge {
 position: relative;
 width: min(360px, 72vw);
 aspect-ratio: 1 / 1;
 border-radius: 50%;
 background-image: url('../images/heroCTA.svg');
 background-repeat: no-repeat;
 background-size: cover;
 background-position: center;
 border: 1px solid rgba(255,255,255,.16);
 display: grid;
 place-items: center;
 isolation: isolate;
 margin-left: auto;
 margin-right: auto;
}
.pickup-badge h3 {
 text-transform: uppercase;
 letter-spacing: 1.2px;
}
.bg-circle { position: absolute; inset: -10%; z-index: -1; }
.bg-circle__elem {
 position: absolute;
 inset: 0;
 border: 0.15rem solid hsla(0,0%,100%,.3);
 border-radius: 50%;
 animation: circle 3s infinite ease-in-out;
}
.bg-circle__elem.mod--second { animation-delay: .5s; }
.bg-circle__elem.mod--third  { animation-delay: 1s; }
@keyframes circle {
 0% { transform: scale(1); opacity: 1; }
 100% { transform: scale(2.5); opacity: 0; }
}
/* Home Page Featrues */
.feature-box {
 background-color: #2a2d34;
 transition: all 0.3s ease;
 cursor: default;
}
.feature-box span{
  opacity: 0.7;
  font-weight: 500;
}
.icon-chip {
  width: 42px;
  height: 42px;
  background: #f4f4f4; /* light neutral background */
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-chip svg {
  width: 20px;
  height: 20px;
}
.feature-box:hover,
.feature-box .active {
 background:var(--he);
 color: #000;
 transform: translateY(-4px);
 box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
 opacity: 1;
}
.feature-icon {
 color: #bdbdbd;
 transition: color 0.3s ease;
}
.feature-box:hover .feature-icon {
 color: #000;
}
/* Home Page Step */
.steps-wrapper {
  position: relative;
}
.horizontal-line {
  position: absolute;
  top: 30px; /* aligns line with middle of circles */
  left: 0;
  width: 100%;
  height: 2px;
  border-top: 2px dashed #000;
  z-index: 1;
}
.step-item {
  position: relative;
  z-index: 2; /* circles appear above the line */
}
.step-circle {
 width: 60px;
 height: 60px;
 background: #006CFF;
 border-radius: 50%;
 display: flex;
 justify-content: center;
 align-items: center;
 font-size: 18px;
 color: #fff;
 margin: 0 auto 15px auto;
 font-weight: bold;
 z-index: 2;
 position: relative;
}
@media (max-width: 768px) {
  .horizontal-line {
    display: none; /* remove line on mobile (your request earlier) */
  }
}
/* Home Page Industry */
.industry-card {
 transition: all 0.3s ease;
}
.industry-card:hover {
 transform: translateY(-8px);
 box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
 border-color: rgba(247, 187, 7, 0.37);
}
.industry-card h5 {
 font-weight: 500;
}
.industry-card p {
 line-height: 1.6;
}
/* home page vehicle */
#vehicleTabs{
 background: #e5e7eb;
 border-radius: 20px;
 display: flex;
 gap: 10px;
 padding: 10px;
 list-style: none !important;
}
.vehicle-guide li {
  list-style: none !important;
}
.vehicle-guide .tab-link {
 display: flex;
 flex-direction: column;
 align-items: center;
 padding: 8px 12px;
 text-decoration: none;
 color: #000;
 border-radius: 12px;
 transition: all 0.25s ease;
}
.vehicle-guide .tab-link.active {
  font-weight: 500;
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(to right, #eb7925, #c69e41) 1;
  color: #000 !important;
  border-radius: 20px !important;
}
.vehicle-guide .tab-icon-box {
 display: flex;
 justify-content: center;
 margin-bottom: 6px;
}
.vehicle-guide .tab-label {
 display: block;
 text-align: center;
 font-weight: 500;
}
/* mobile */
@media (max-width: 768px) {
  /* TAB WRAPPER */
  #vehicleTabs {
    flex-wrap: wrap;
    justify-content: center;
    border-radius: 14px;
    gap: 8px;
    padding: 12px;
  }
  /* EACH TAB (stacked + bigger tap area) */
  .vehicle-guide .tab-link {
    flex-direction: row;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 14px;
    width: 100%;
    justify-content: flex-start;
    text-align: left;
  }
  .vehicle-guide .tab-link.active {
    border-radius: 16px !important;
    border-bottom: none;
    border-image: none;
    background: #fff6e4; /* soft highlight on active */
  }
  /* ICON FIX */
  .vehicle-guide .tab-icon-box {
    margin-bottom: 0;
    margin-right: 6px;
    justify-content: flex-start;
  }
  .vehicle-guide .tab-label {
    text-align: left;
    font-size: 15px;
  }
  /* MAKE THE TABS FULL WIDTH ON MOBILE */
  #vehicleTabs > li {
    flex: 0 0 100%;
  }
  .vehiclePicSize {
    max-width: 100% !important;
  }
}
/* ICON BOX FOR SPECS */
.icon-box {
  background-color: rgb(238, 238, 238);
  padding: 7px 11px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* ICON COLORS */
.icon-purple { color: rgb(147, 51, 234); }
.icon-blue   { color: rgb(37, 99, 235); }
.icon-green  { color: rgb(22, 163, 74); }
/* VEHICLE IMAGE SIZE */
.vehiclePicSize {
 max-width: 100%;
}
/* TAB PANES */
.tab-pane {
 display: none;
 border-radius: 25px;
}
.tab-pane.active{
 display: block !important;
}
/* cta */
.grid{ display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.field{ display:flex; flex-direction:column; gap:6px; }
.field.full{ grid-column: 1 / -1; }
input, textarea{
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #2a2d34;
  background: rgba(255,255,255,.06);
  color: #fff;
  outline: none;
}
.footer-input{
  color:#000;
  width: auto;
}
#contactForm input, #contactForm textarea{
  color:#000;
}
/* Accordion */
.acc{
  margin-top: 16px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  background: #2a2d34;
}
.acc__sum{
  list-style: none;
  cursor: pointer;
  user-select: none;
  padding: 14px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.acc__sum::-webkit-details-marker{ display:none; }
.acc__left{ display:flex; align-items:center; gap:10px; }
.acc__chev{
  opacity: .8;
  transition: transform .2s ease;
}
details[open] .acc__chev{ transform: rotate(180deg); }
.acc__body{
  padding: 0 14px 14px;
  border-top: 1px solid rgba(255,255,255,.10);
}
.checkline{ display:flex; align-items:center; gap:10px; user-select:none; }
.checkline input{ width: 16px; height: 16px; }
.hint{font-size: 12px; opacity: .75; }
@media (max-width: 640px){
  .grid{ grid-template-columns: 1fr; }
}
.contactPreference {
  margin-top: 16px;
}
.form-msg{
  display:none;
  margin-top: 14px;
  margin-bottom: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-size: 14px;
}
.form-msg.success{
  display:block;
  background: rgba(34,197,94,.12);
  border-color: rgba(34,197,94,.35);
  color: #000;
}
#courierForm .form-msg.success{
  color: #bbf7d0;
}
.form-msg.error{
  display:block;
  background: rgba(239,68,68,.12);
  border-color: rgba(239,68,68,.35);
  color: #fecaca;
}

/* Fix 21 — Honeypot field (anti-bot) */
.hp-field { display: none !important; position: absolute !important; left: -9999px !important; top: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; pointer-events: none !important; }


/* ===== Quote wizard (4-step) ===== */
.courier-wizard .wz-panel{ display:none; }
.courier-wizard .wz-panel.is-active{ display:block; animation:wzFade .25s ease; }
@keyframes wzFade{ from{opacity:0; transform:translateY(6px);} to{opacity:1; transform:none;} }
.wz-steps{ display:flex; list-style:none; padding:0; margin:0 0 22px; }
.wz-step{ flex:1; display:flex; flex-direction:column; align-items:center; gap:6px; position:relative; font-size:13px; color:#9aa0a6; }
.wz-step.is-done{ cursor:pointer; }
.wz-step::before{ content:""; position:absolute; top:16px; left:-50%; width:100%; height:3px; background:#ececec; z-index:0; }
.wz-step:first-child::before{ display:none; }
.wz-step.is-active::before, .wz-step.is-done::before{ background:linear-gradient(to right,#eb7925,#c69e41); }
.wz-dot{ width:34px; height:34px; border-radius:50%; display:grid; place-items:center; background:#ececec; color:#777; font-weight:700; position:relative; z-index:1; transition:.2s; }
.wz-step.is-active .wz-dot{ background:linear-gradient(135deg,#eb7925,#c69e41); color:#fff; box-shadow:0 0 0 4px rgba(235,121,37,.18); }
.wz-step.is-done .wz-dot{ background:#c69e41; color:#fff; font-size:0; }
.wz-step.is-done .wz-dot::after{ content:"\2713"; font-size:16px; }
.wz-step.is-active .wz-label{ color:#b4631c; font-weight:700; }
.van-grid{ display:grid; grid-template-columns:repeat(3, minmax(0,1fr)); gap:14px; }
.van-card{ position:relative; display:flex; flex-direction:column; gap:6px; border:2px solid #e8e8e8; border-radius:14px; padding:12px; cursor:pointer; transition:.18s; background:#fff; }
.van-card:hover{ border-color:#f0c89a; box-shadow:0 6px 18px rgba(0,0,0,.07); }
.van-card input{ position:absolute; opacity:0; pointer-events:none; }
.van-card.is-selected, .van-card:has(input:checked){ border-color:#eb7925; box-shadow:0 8px 22px rgba(235,121,37,.18); }
.van-card:focus-within{ outline:2px solid #eb7925; outline-offset:2px; }
.van-media{ display:block; border-radius:10px; overflow:hidden; aspect-ratio:16/10; background:#f3f5f7; }
.van-media img{ width:100%; height:100%; object-fit:cover; display:block; }
.van-media--icon{ display:grid; place-items:center; font-size:36px; }
.van-name{ font-weight:700; font-size:15px; color:#1f2937; }
.van-spec{ display:flex; gap:7px; flex-wrap:wrap; font-size:12px; color:#5f6368; }
.van-spec span{ background:#f5f1ea; border-radius:6px; padding:2px 7px; }
.van-pay{ font-size:13px; font-weight:700; color:#b4631c; }
.van-for{ font-size:12.5px; color:#6b7280; line-height:1.35; }
.van-pick{ margin-top:auto; align-self:flex-start; font-size:12px; font-weight:700; color:#b4631c; border:1px solid #eb7925; border-radius:999px; padding:4px 14px; }
.van-card.is-selected .van-pick, .van-card:has(input:checked) .van-pick{ background:linear-gradient(135deg,#eb7925,#c69e41); color:#fff; border-color:transparent; }
.van-card.is-selected .van-pick::before, .van-card:has(input:checked) .van-pick::before{ content:"\2713 "; }
.wz-nav{ display:flex; align-items:center; gap:12px; margin-top:24px; }
.wz-spacer{ flex:1; }
.wz-nav button{ min-width:120px; }
@media (max-width:820px){ .van-grid{ grid-template-columns:repeat(2, minmax(0,1fr)); } .wz-label{ font-size:11px; } }
@media (max-width:520px){ .van-grid{ grid-template-columns:1fr; } .wz-nav button{ min-width:96px; } }
.courier-wizard [hidden]{ display:none !important; }
.courier-wizard{ scroll-margin-top:90px; }

/* Quote wizard — style <select> to match the dark text inputs */
.courier-form select{
  width:100%; padding:12px; padding-right:34px; border-radius:12px;
  border:1px solid #2a2d34; background-color:rgba(255,255,255,.06); color:#fff;
  outline:none; -webkit-appearance:none; -moz-appearance:none; appearance:none;
  background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23eb7925' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat:no-repeat; background-position:right 14px center;
}
.courier-form select option{ background:#2a2d34; color:#fff; }
