/* En Route Courier - the whole site's styling, in one file.
 *
 * The palette and the type are NOT invented. They were read off the live Services page with the
 * browser's own computed styles, because that is the one page whose Elementor stylesheet still
 * exists and therefore the only page still showing the design the client signed off:
 *      headings  Raleway 700, #313131
 *      body      Roboto 400, #313131 on white
 *      buttons   12px radius, 12px 24px padding, 600 weight
 *                #006eff blue, #ff9e00 orange, #2421ee deep blue
 *      tint      #f5f5f5
 * One deliberate change: body text is 16px, not the old 14px. Fourteen is small for a page of
 * prose, and this is a site people read on a phone in a van.
 */

:root {
  --ink:        #313131;
  --ink-soft:   #5b6166;
  --line:       #e2e6e9;
  --tint:       #f5f5f5;
  --paper:      #ffffff;
  --blue:       #006eff;
  --blue-dark:  #0057cc;
  --blue-deep:  #2421ee;
  --orange:     #ff9e00;
  --orange-dark:#e08a00;
  --green:      #2e9e4f;
  --green-dark: #24803f;
  --dark:       #3a3a3a;
  --darker:     #2b2b2b;

  --head: "Raleway", "Helvetica Neue", Arial, sans-serif;
  --body: "Roboto", "Helvetica Neue", Arial, sans-serif;

  --wrap: 1140px;
  --shadow: 0 1px 2px rgba(20,25,30,.06), 0 10px 30px -18px rgba(20,25,30,.35);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); }
a:hover { color: var(--blue-dark); }

h1, h2, h3, h4 { font-family: var(--head); font-weight: 700; color: var(--ink);
                 line-height: 1.18; margin: 0 0 .6em; text-wrap: balance; }
h1 { font-size: clamp(28px, 4.4vw, 42px); }
h2 { font-size: clamp(22px, 2.9vw, 30px); }
h3 { font-size: 19px; }
p  { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
address { font-style: normal; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding-inline: 20px; }
.wrap--narrow { max-width: 800px; }
.c { text-align: center; }
.lead { color: var(--ink-soft); max-width: 70ch; margin-inline: auto; }

.skip { position: absolute; left: -9999px; }
.skip:focus { left: 12px; top: 12px; z-index: 100; background: #fff; padding: 10px 16px;
              border-radius: 8px; box-shadow: var(--shadow); }

:where(a, button, input, select, textarea):focus-visible {
  outline: 3px solid var(--blue); outline-offset: 2px;
}

/* ------------------------------------------------------------------ icons + buttons */
.ic { width: 17px; height: 17px; fill: currentColor; flex: none; vertical-align: -3px; }
.ic--btn { width: 16px; height: 16px; margin-right: 7px; }
.ic--lg { width: 30px; height: 30px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--head); font-size: 14px; font-weight: 600; letter-spacing: .01em;
  color: #fff; text-decoration: none;
  padding: 12px 24px; border: 0; border-radius: 12px; cursor: pointer;
  transition: background-color .18s ease, transform .18s ease;
}
.btn:hover { color: #fff; transform: translateY(-1px); }
.btn--blue   { background: var(--blue); }
.btn--blue:hover { background: var(--blue-dark); }
.btn--orange { background: var(--orange); }
.btn--orange:hover { background: var(--orange-dark); }
.btn--deep   { background: var(--blue-deep); }
.btn--deep:hover { background: #1a17c9; }
.btn--green  { background: var(--green); }
.btn--green:hover { background: var(--green-dark); }
.btn--wide   { width: 100%; padding-block: 14px; }
.btns { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 1.2em; }

/* ------------------------------------------------------------------ header */
/* !! This z-index has to stay ABOVE .scrim's, and not for a cosmetic reason.
 * `position: sticky` + a z-index makes the header its OWN STACKING CONTEXT. Everything inside it
 * - including the phone menu panel - is then stacked relative to the header, not to the page. So
 * when the header sat at 50 and the backdrop at 55, the menu's own `z-index: 60` counted for
 * nothing: the backdrop covered it, every real tap landed on the backdrop instead of the submenu
 * chevron, and the dropdown looked dead while a programmatic click worked perfectly.
 * That is the Pure Lux mobile-submenu fault all over again, and the shooting script caught it
 * this time - "tapping the submenu revealed nothing (7 links before, 7 after)". */
.hdr { position: sticky; top: 0; z-index: 60; background: #fff;
       border-bottom: 1px solid var(--line); }
.hdr__in { display: flex; align-items: center; gap: 16px; min-height: 76px; }
.logo { margin-right: auto; display: block; }
.logo img { width: 190px; height: auto; }

.burger { display: none; width: 44px; height: 40px; border: 1px solid var(--line);
          background: #fff; border-radius: 10px; cursor: pointer; padding: 10px 9px; }
.burger span { display: block; height: 2px; background: var(--ink); border-radius: 2px; }
.burger span + span { margin-top: 5px; }

.nav ul { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 4px; }
.nav li { position: relative; }
.nav a { display: flex; align-items: center; gap: 7px;
         font-family: var(--head); font-size: 13.5px; font-weight: 600; letter-spacing: .03em;
         color: var(--ink); text-decoration: none; padding: 10px 12px; border-radius: 9px; }
.nav a:hover, .nav a[aria-current="page"] { background: var(--tint); color: var(--blue); }
.nav__cta { display: none; }
.subtoggle { display: none; }

.nav .sub {
  position: absolute; top: 100%; left: 0; min-width: 236px;
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  box-shadow: var(--shadow); padding: 6px; display: none; flex-direction: column; gap: 2px;
}
.nav li.has-sub:hover > .sub,
.nav li.has-sub:focus-within > .sub { display: flex; }
.nav .sub a { font-weight: 500; font-size: 13px; }

/* ------------------------------------------------------------------ hero */
.hero { position: relative; color: #fff; isolation: isolate; }
.hero__bg { position: absolute; inset: 0; z-index: -2;
            background-size: cover; background-position: center; }
.hero::after { content: ""; position: absolute; inset: 0; z-index: -1;
               background: linear-gradient(105deg, rgba(14,22,40,.88) 0%,
                                                   rgba(14,22,40,.72) 48%,
                                                   rgba(14,22,40,.42) 100%); }
.hero__in { padding-block: clamp(54px, 8vw, 96px); max-width: 940px; }
.hero h1 { color: #fff; margin-bottom: .35em; }
.hero__sub { font-size: clamp(17px, 2.1vw, 20px); color: #e6ecf5; max-width: 52ch; }
.hero__btns { display: flex; flex-wrap: wrap; gap: 10px; margin: 1.5em 0 0; }

/* ------------------------------------------------------------------ the three promises */
.strip { background: var(--darker); color: #fff; }
.strip__in { list-style: none; margin-block: 0; display: grid; gap: 4px 34px;
             grid-template-columns: repeat(3, 1fr); padding-block: 22px; }
.strip li { display: flex; align-items: center; justify-content: center; gap: 14px; }
@media (max-width: 720px) { .strip li { justify-content: flex-start; } }
.strip .ic { fill: var(--orange); }
.strip strong { display: block; font-family: var(--head); font-size: 14px; letter-spacing: .04em; }
.strip span { display: block; font-size: 13.5px; color: #c3c9d1; }

/* ------------------------------------------------------------------ sections */
.sec { padding-block: clamp(44px, 6vw, 74px); }
.sec--tint { background: var(--tint); }

.two { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px);
       align-items: center; }
.two--flip .two__text { order: 2; }
.two__img img { border-radius: 14px; box-shadow: var(--shadow); width: 100%; }

.three { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 3.4vw, 44px); }
.three h2 { font-size: 22px; }

.ticks { list-style: none; margin: 1.6em 0 0; padding: 0; display: grid; gap: 10px 30px; }
.ticks--1 { grid-template-columns: 1fr; max-width: 820px; margin-inline: auto; }
.ticks--2 { grid-template-columns: repeat(2, 1fr); }
.ticks--3 { grid-template-columns: repeat(3, 1fr); }
.ticks li { display: flex; gap: 11px; align-items: flex-start;
            background: #fff; border: 1px solid var(--line); border-radius: 11px;
            padding: 12px 15px; font-size: 15px; }
.sec--tint .ticks li { background: #fff; }
.ticks .ic { fill: var(--green); margin-top: 4px; }

.reasons { list-style: none; counter-reset: none; margin: 2em 0 0; padding: 0;
           display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.reasons li { background: #fff; border: 1px solid var(--line); border-radius: 14px;
              padding: 24px 24px 26px; }
.reasons .num { display: block; font-family: var(--head); font-size: 28px; font-weight: 800;
                color: var(--orange); line-height: 1; margin-bottom: 10px; }
.reasons h3 { margin-bottom: .45em; }
.reasons p { font-size: 15px; color: var(--ink-soft); }

/* ------------------------------------------------------------------ testimonials */
.quotes { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 2em; }
.quote { margin: 0; background: #fff; border: 1px solid var(--line); border-radius: 14px;
         padding: 22px 22px 20px; display: flex; flex-direction: column; gap: 12px; }
.quote .stars { color: var(--orange); letter-spacing: 2px; font-size: 15px; }
.quote blockquote { margin: 0; font-size: 15px; color: var(--ink-soft); flex: 1; }
.quote figcaption { font-family: var(--head); font-weight: 700; font-size: 14.5px;
                    border-top: 1px solid var(--line); padding-top: 12px; }
.quote figcaption span { display: block; font-weight: 500; color: var(--ink-soft);
                         font-size: 13px; }

/* ------------------------------------------------------------------ vehicles */
.vehs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 2em; }
.veh { border: 1px solid var(--line); border-radius: 14px; overflow: hidden; background: #fff; }
.veh img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.veh h3 { font-size: 17px; margin: 16px 16px .5em; }
.veh ul { list-style: none; margin: 0; padding: 0 16px 18px; }
.veh li { font-size: 13.5px; color: var(--ink-soft); padding: 3px 0;
          border-bottom: 1px dashed var(--line); }
.veh li:last-child { border-bottom: 0; }

/* ------------------------------------------------------------------ contact cards */
/* !! These two lists also carry the .wrap class, and .wrap centres itself with `margin: 0 auto`.
 * Writing `margin: 0` here is the same specificity and comes later in the file, so it QUIETLY
 * KILLED the auto side-margins and both rows sat hard against the left edge of the screen on a
 * wide monitor. Reset the block margins only, and leave the centring alone. */
.contacts { list-style: none; margin-block: 0; padding: 0;
            display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.contacts li { border: 1px solid var(--line); border-radius: 14px; padding: 26px;
               text-align: center; }
.contacts .ic { fill: var(--blue); margin: 0 auto 12px; }
.contacts h2 { font-size: 19px; }

/* ------------------------------------------------------------------ call to action + forms */
.cta { position: relative; color: #fff; isolation: isolate; }
.cta__bg { position: absolute; inset: 0; z-index: -2;
           background-size: cover; background-position: center; }
.cta::after { content: ""; position: absolute; inset: 0; z-index: -1;
              background: linear-gradient(100deg, rgba(12,18,32,.92) 0%,
                                                  rgba(12,18,32,.78) 52%,
                                                  rgba(12,18,32,.62) 100%); }
.cta__in { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 58px);
           align-items: center; padding-block: clamp(46px, 6vw, 76px); }
/* !! SCOPE THESE TO .cta__text, NOT THE WHOLE BAND.
 * The call-to-action band is dark, so its words are white - but the form sits INSIDE that band on
 * a white card. Colouring every h2 and p in .cta painted the form's own heading white on white
 * (invisible) and its field labels #dde4ee on white (barely readable). Each field is wrapped in a
 * <p class="fld">, so `.cta p` caught every label in the form as well.
 * Harry found the faded labels on the live site; the invisible heading came out of measuring it. */
.cta__text h2 { color: #fff; }
.cta__text p  { color: #dde4ee; }

.enq { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(28px, 4vw, 52px);
       align-items: start; }

.form { background: #fff; color: var(--ink); border-radius: 16px; padding: 26px;
        box-shadow: var(--shadow); }
.form h2 { font-size: 22px; margin-bottom: .8em; }
.fld { margin: 0 0 14px; }
.fld label { display: block; font-family: var(--head); font-size: 13px; font-weight: 600;
             margin-bottom: 5px; }
.req { color: #c0392b; }
.form input, .form select, .form textarea {
  width: 100%; font-family: var(--body); font-size: 15px; color: var(--ink);
  background: #fff; border: 1px solid #cdd4da; border-radius: 9px; padding: 10px 12px;
}
.form textarea { resize: vertical; min-height: 96px; }
.form input:focus, .form select:focus, .form textarea:focus { border-color: var(--blue); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.smallprint { font-size: 12.5px; color: var(--ink-soft); margin: 10px 0 0; }
.sent { border-radius: 10px; padding: 12px 14px; margin-bottom: 14px; font-size: 15px; }
.sent--ok  { background: #e6f6ec; border: 1px solid #b7e2c6; color: #1d6b38; }
.sent--bad { background: #fdecea; border: 1px solid #f5c2bd; color: #9e2b25; }

.prose h2 { margin-top: 1.6em; }
.prose h2:first-child { margin-top: 0; }

/* ------------------------------------------------------------------ footer */
.ftr { background: var(--dark); color: #d7dbe0; font-size: 14.5px; margin-top: 0; }
.ftr a { color: #d7dbe0; text-decoration: none; }
.ftr a:hover { color: #fff; text-decoration: underline; }
.ftr__in { display: grid; grid-template-columns: 1.1fr 1fr 1fr 1.1fr; gap: 34px;
           padding-block: 46px; }
.ftr__h { font-family: var(--head); font-size: 13px; letter-spacing: .12em; color: #fff;
          border-bottom: 1px solid #55595e; padding-bottom: 9px; margin-bottom: 14px; }
.ftr__brand img { width: 170px; margin-bottom: 16px; }
.ftr__brand .btn { display: flex; margin-bottom: 9px; }
.ftr__menu { list-style: none; margin: 0; padding: 0; }
.ftr__menu li { padding: 5px 0; }
.ftr__menu a { display: flex; align-items: center; gap: 9px; }
.ftr__menu .sub a { padding-left: 26px; font-size: 13.5px; color: #b6bbc1; }
.ftr__lbl { font-family: var(--head); font-weight: 700; color: #fff; margin: 14px 0 2px; }
.ftr__bar { border-top: 1px solid #4b4f54; padding-block: 16px; font-size: 13px; color: #a9aeb4; }

/* ------------------------------------------------------------------ tablet */
@media (max-width: 1000px) {
  .quotes, .vehs { grid-template-columns: repeat(2, 1fr); }
  .reasons { grid-template-columns: repeat(2, 1fr); }
  .ftr__in { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .burger { display: block; }
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(330px, 86vw);
    background: #fff; border-left: 1px solid var(--line);
    transform: translateX(100%); transition: transform .25s ease;
    padding: 84px 18px 28px; overflow-y: auto; z-index: 60;
    display: flex; flex-direction: column; gap: 18px;
  }
  .nav.open { transform: translateX(0); }
  .nav ul { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav li { border-bottom: 1px solid var(--line); }
  .nav a { padding: 13px 8px; font-size: 15px; }
  .nav__cta { display: flex; flex-direction: column; gap: 9px; }

  /* the submenu is a tap target on a phone, not a hover - and it must be visible when open,
     which is exactly the thing that broke on Pure Lux and was missed by 160 screenshots */
  .nav li.has-sub { position: relative; }
  .subtoggle { display: block; position: absolute; top: 4px; right: 2px;
               width: 44px; height: 44px; background: none; border: 0; cursor: pointer; }
  .subtoggle span { display: block; width: 9px; height: 9px; margin: 0 auto;
                    border-right: 2px solid var(--ink); border-bottom: 2px solid var(--ink);
                    transform: rotate(45deg) translate(-2px, -2px); transition: transform .2s ease; }
  .subtoggle[aria-expanded="true"] span { transform: rotate(225deg) translate(-3px, -3px); }
  .nav .sub { position: static; display: none; border: 0; box-shadow: none; padding: 0 0 8px 14px;
              min-width: 0; }
  .nav li.has-sub.open > .sub { display: flex; }
  .nav li.has-sub:hover > .sub { display: none; }
  .nav li.has-sub.open:hover > .sub { display: flex; }

  .scrim { position: fixed; inset: 0; background: rgba(15,20,28,.5); z-index: 55; }
}

/* ------------------------------------------------------------------ phone */
@media (max-width: 720px) {
  .two, .cta__in, .enq { grid-template-columns: 1fr; }
  .two--flip .two__text { order: 0; }
  .three { grid-template-columns: 1fr; }
  .strip__in { grid-template-columns: 1fr; gap: 14px; }
  .ticks--2, .ticks--3 { grid-template-columns: 1fr; }
  .reasons, .quotes, .vehs, .contacts { grid-template-columns: 1fr; }
  .ftr__in { grid-template-columns: 1fr; gap: 26px; }
  .hero__btns .btn, .btns .btn { flex: 1 1 auto; }
  .form { padding: 20px; }
}

@media (max-width: 420px) {
  .logo img { width: 150px; }
  .hdr__in { min-height: 66px; }
}
