/* ===== SHARED PAGE COMPONENTS (service / city / item / vehicle / content) ===== */
/* Loaded after v1.css. Reuses :root tokens defined there. */

/* Compact hero variant */
.v1-pagehero {
  position: relative;
  padding: 130px 0 80px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(140deg, #061625 0%, #0B2438 55%, #0E2D45 100%);
}

.v1-pagehero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  z-index: 0;
}

.v1-pagehero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 22, 37, 0.92) 25%, rgba(6, 22, 37, 0.55) 100%);
  z-index: 1;
}

.v1-pagehero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.v1-pagehero__inner--single {
  grid-template-columns: 1fr;
  max-width: 820px;
}

.v1-pagehero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.v1-pagehero__breadcrumb a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.v1-pagehero__breadcrumb a:hover { color: #00A7E2; }

.v1-pagehero__breadcrumb svg { opacity: 0.5; flex-shrink: 0; }

.v1-pagehero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(0, 167, 226, 0.16);
  border: 1px solid rgba(0, 167, 226, 0.4);
  color: #B8E5F8;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.v1-pagehero__title {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: clamp(34px, 4.4vw, 54px);
  line-height: 1.06;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  color: #fff;
}

.v1-pagehero__sub {
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 28px;
  max-width: 560px;
}

.v1-pagehero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.v1-pagehero__visual { position: relative; }

.v1-pagehero__visual img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 30px 70px -20px rgba(0, 0, 0, 0.55);
}

/* Quote-form variant of the hero right column (used on Send funnel pages
   like /same-day-delivery/, /3hr-deliveries/, /fast-vip-deliveries/ etc.).
   Just gives the form some breathing room and a max-width that matches
   the homepage hero. */
.v1-pagehero__form {
  position: relative;
  width: 100%;
  max-width: 460px;
  justify-self: end;
}

@media (max-width: 900px) {
  .v1-pagehero__form { max-width: none; justify-self: stretch; margin-top: 8px; }
}

/* Section primitives */
.v1-section { padding: 96px 0; }
.v1-section--surface { background: var(--v1-surface); }
.v1-section--white { background: #fff; }
.v1-section--navy { background: var(--v1-navy); color: #fff; }
.v1-section--navy .v1-section-title { color: #fff; }
.v1-section--navy .v1-section-sub { color: rgba(255, 255, 255, 0.7); }

/* Steps */
.v1-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.v1-step {
  background: #fff;
  border: 1.5px solid var(--v1-line);
  border-radius: 16px;
  padding: 30px 26px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.v1-step:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -22px rgba(15, 27, 38, 0.2);
  border-color: rgba(0, 167, 226, 0.4);
}

.v1-step__num {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, #00A7E2, #0082B0);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 17px;
  margin-bottom: 16px;
  box-shadow: 0 8px 16px -8px rgba(0, 167, 226, 0.6);
}

.v1-step__title {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 19px;
  color: var(--v1-ink);
  margin-bottom: 8px;
}

.v1-step__desc {
  font-size: 14.5px;
  color: var(--v1-muted);
  line-height: 1.6;
}

/* Use cases */
.v1-uses {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.v1-use {
  background: #fff;
  border: 1.5px solid var(--v1-line);
  border-radius: 14px;
  padding: 26px 22px;
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
}

.v1-use:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px -18px rgba(15, 27, 38, 0.2);
  border-color: rgba(0, 167, 226, 0.45);
}

.v1-use__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(0, 167, 226, 0.1);
  color: var(--v1-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.v1-use__title {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 17px;
  color: var(--v1-ink);
  margin-bottom: 6px;
}

.v1-use__desc {
  font-size: 14px;
  color: var(--v1-muted);
  line-height: 1.55;
}

/* Pricing */
.v1-pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.v1-pricing__card {
  background: #fff;
  border-radius: 18px;
  padding: 32px;
  border: 1.5px solid var(--v1-line);
  box-shadow: 0 18px 50px -20px rgba(15, 27, 38, 0.18);
}

.v1-pricing__label {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(0, 167, 226, 0.12);
  color: var(--v1-blue);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.v1-pricing__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--v1-line);
  font-size: 14.5px;
  color: var(--v1-body);
}

.v1-pricing__row:last-child { border-bottom: none; }

.v1-pricing__row strong {
  color: var(--v1-ink);
  font-family: 'Nunito', sans-serif;
}

.v1-pricing__total {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 2px solid var(--v1-ink);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.v1-pricing__total span:first-child {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  color: var(--v1-ink);
  font-size: 16px;
}

.v1-pricing__price {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 26px;
  color: var(--v1-blue);
}

.v1-pricing__note {
  margin-top: 14px;
  font-size: 12px;
  color: var(--v1-muted);
}

.v1-checks {
  list-style: none;
  margin: 24px 0;
  padding: 0;
}

.v1-checks li {
  display: flex;
  gap: 10px;
  padding: 8px 0;
  font-size: 15px;
  color: var(--v1-body);
}

.v1-checks li::before {
  content: '\2713';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0, 167, 226, 0.12);
  color: var(--v1-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 12px;
}

/* FAQ */
.v1-faq {
  max-width: 820px;
  margin: 0 auto;
}

.v1-faq__item { border-bottom: 1px solid var(--v1-line); }

.v1-faq__summary {
  cursor: pointer;
  padding: 22px 36px 22px 0;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--v1-ink);
  list-style: none;
  position: relative;
  display: block;
}

.v1-faq__summary::-webkit-details-marker { display: none; }

.v1-faq__summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: var(--v1-blue);
  font-weight: 400;
  transition: transform 0.18s;
}

.v1-faq__item[open] .v1-faq__summary::after { content: '\2212'; }

.v1-faq__answer {
  padding: 0 0 22px;
  color: var(--v1-muted);
  font-size: 15px;
  line-height: 1.7;
}

/* Inline testimonial */
.v1-testimonial {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: 48px 32px;
  background: #fff;
  border-radius: 18px;
  border: 1.5px solid var(--v1-line);
  box-shadow: 0 6px 22px rgba(15, 27, 38, 0.05);
}

.v1-testimonial__stars {
  display: inline-flex;
  gap: 4px;
  margin-bottom: 18px;
}

.v1-testimonial__quote {
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.4;
  color: var(--v1-ink);
  margin-bottom: 22px;
  font-style: italic;
}

.v1-testimonial__author { color: var(--v1-muted); font-size: 14px; }
.v1-testimonial__author strong { color: var(--v1-ink); font-weight: 700; }

/* CTA strip */
.v1-ctastrip {
  padding: 80px 0;
  background: linear-gradient(135deg, #00A7E2 0%, #0082B0 100%);
  color: #fff;
  text-align: center;
}

.v1-ctastrip__title {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: clamp(26px, 3vw, 38px);
  margin-bottom: 14px;
  color: #fff;
}

.v1-ctastrip__sub {
  font-size: 17px;
  opacity: 0.92;
  margin-bottom: 28px;
}

.v1-ctastrip__buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.v1-btn--white {
  background: #fff;
  color: #00A7E2;
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.15s, box-shadow 0.15s;
}

.v1-btn--white:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -10px rgba(0, 0, 0, 0.3);
}

.v1-btn--outline-light {
  background: transparent;
  color: #fff;
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  display: inline-block;
  border: 2px solid rgba(255, 255, 255, 0.7);
  transition: background 0.15s, border-color 0.15s;
}

.v1-btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

/* City suburb chips */
.v1-city-suburbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
  max-width: 860px;
}

.v1-city-pill {
  display: inline-block;
  padding: 8px 14px;
  background: var(--v1-surface);
  border: 1px solid var(--v1-line);
  border-radius: 999px;
  font-size: 13px;
  color: var(--v1-body);
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.v1-city-pill:hover {
  background: rgba(0, 167, 226, 0.08);
  border-color: rgba(0, 167, 226, 0.4);
  color: var(--v1-blue);
}

/* Option grid */
.v1-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.v1-option {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1.5px solid var(--v1-line);
  border-radius: 14px;
  padding: 22px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
}

.v1-option:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px -20px rgba(15, 27, 38, 0.2);
  border-color: rgba(0, 167, 226, 0.45);
}

.v1-option__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(0, 167, 226, 0.1);
  color: var(--v1-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.v1-option__title {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 17px;
  color: var(--v1-ink);
  margin-bottom: 6px;
}

.v1-option__desc {
  font-size: 13.5px;
  color: var(--v1-muted);
  line-height: 1.55;
  margin-bottom: 14px;
}

.v1-option__cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--v1-blue);
  font-weight: 700;
  font-size: 13.5px;
  transition: gap 0.15s;
}

.v1-option:hover .v1-option__cta { gap: 10px; }

/* Prose */
.v1-prose {
  max-width: 760px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.7;
  color: var(--v1-body);
}

.v1-prose h2 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: var(--v1-ink);
  margin: 40px 0 16px;
}

.v1-prose h3 {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--v1-ink);
  margin: 28px 0 12px;
}

.v1-prose p { margin-bottom: 18px; }

.v1-prose a {
  color: var(--v1-blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.v1-prose ul, .v1-prose ol { margin: 18px 0 18px 24px; }
.v1-prose ul li, .v1-prose ol li {
  margin-bottom: 8px;
  list-style: revert;
}

.v1-prose strong { color: var(--v1-ink); }

/* Forms */
.v1-form {
  display: grid;
  gap: 14px;
  max-width: 580px;
}

.v1-form__field { position: relative; }

.v1-form__label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--v1-ink);
  margin-bottom: 6px;
}

.v1-form__input,
.v1-form__select,
.v1-form__textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--v1-line);
  border-radius: 10px;
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  color: var(--v1-ink);
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.v1-form__textarea {
  min-height: 130px;
  resize: vertical;
}

.v1-form__input:focus,
.v1-form__select:focus,
.v1-form__textarea:focus {
  outline: none;
  border-color: var(--v1-blue);
  box-shadow: 0 0 0 4px rgba(0, 167, 226, 0.12);
}

.v1-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.v1-form__consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--v1-muted);
  line-height: 1.5;
}

.v1-form__consent input {
  margin-top: 3px;
  flex-shrink: 0;
}

.v1-btn--secondary {
  background: #fff;
  color: var(--v1-ink);
  border: 1.5px solid var(--v1-line);
}

.v1-btn--secondary:hover {
  border-color: var(--v1-blue);
  color: var(--v1-blue);
}

/* Two-column with sidebar */
.v1-twocol {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

.v1-aside {
  position: sticky;
  top: 110px;
  background: var(--v1-surface);
  border: 1px solid var(--v1-line);
  border-radius: 14px;
  padding: 28px;
}

.v1-aside h3 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--v1-ink);
  margin-bottom: 14px;
}

.v1-aside ul {
  list-style: none;
  padding: 0;
}

.v1-aside li {
  padding: 8px 0;
  border-bottom: 1px solid var(--v1-line);
}

.v1-aside li:last-child { border-bottom: none; }

.v1-aside a {
  color: var(--v1-body);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.15s;
}

.v1-aside a:hover { color: var(--v1-blue); }

@media (max-width: 1024px) {
  .v1-pagehero__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .v1-steps,
  .v1-pricing,
  .v1-twocol {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .v1-aside { position: static; }
}

@media (max-width: 768px) {
  .v1-section { padding: 64px 0; }
  .v1-pagehero { padding: 110px 0 60px; }
  .v1-form__row { grid-template-columns: 1fr; }
}

/* ===== Sister brand cards (Locate2u, Shred2u promo) ===== */
.v1-sisters__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.v1-sister {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  background: #fff;
  border: 1.5px solid var(--v1-line);
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s;
}

.v1-sister:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -22px rgba(15, 27, 38, 0.22);
  border-color: rgba(0, 167, 226, 0.45);
}

.v1-sister__visual {
  position: relative;
  overflow: hidden;
  background-color: var(--v1-surface);
}

.v1-sister__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}

.v1-sister:hover .v1-sister__img {
  transform: scale(1.04);
}

.v1-sister__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, rgba(15, 27, 38, 0.08) 100%);
  pointer-events: none;
}

.v1-sister__body {
  padding: 32px 32px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 280px;
}

.v1-sister__logo {
  display: block;
  width: auto;
  height: 30px;
  max-width: 160px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 18px;
}

.v1-sister__title {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 22px;
  line-height: 1.25;
  color: var(--v1-ink);
  margin-bottom: 10px;
}

.v1-sister__desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--v1-muted);
  margin-bottom: 22px;
}

.v1-sister__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--v1-blue);
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.01em;
  margin-top: auto;
  align-self: flex-start;
  transition: gap 0.18s ease;
}

.v1-sister:hover .v1-sister__cta {
  gap: 12px;
}

@media (max-width: 768px) {
  .v1-sisters__grid { grid-template-columns: 1fr; gap: 20px; }
  .v1-sister { grid-template-columns: 1fr; }
  .v1-sister__visual { aspect-ratio: 16 / 10; position: relative; }
  .v1-sister__body { padding: 24px 22px; min-height: 0; }
  .v1-sister__title { font-size: 20px; }
}
