/* =========================================================
   ADVERTISING VANS
   Complete replacement stylesheet
   ========================================================= */

/* ---------- Colours and settings ---------- */

:root {
  --orange: #ff5a1f;
  --orange-dark: #df4010;
  --orange-light: #fff1eb;

  --navy: #111827;
  --navy-soft: #1f2937;
  --blue: #1a56db;

  --text: #253044;
  --muted: #667085;
  --border: #e4e7ec;

  --white: #ffffff;
  --off-white: #f8fafc;
  --light-grey: #f1f5f9;

  --bg-dark: #111827;

  --shadow-small: 0 4px 16px rgba(17, 24, 39, 0.08);
  --shadow-medium: 0 12px 35px rgba(17, 24, 39, 0.13);
  --shadow-large: 0 22px 60px rgba(17, 24, 39, 0.2);

  --radius-small: 8px;
  --radius: 14px;
  --radius-large: 22px;

  --wrap: 1180px;
}

/* ---------- Reset ---------- */

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: var(--orange-dark);
  text-decoration: none;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

a:hover {
  color: var(--orange);
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

p {
  margin: 0 0 1.2rem;
}

ul,
ol {
  padding-left: 1.35rem;
}

li {
  margin-bottom: 0.4rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1rem;
  color: var(--navy);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.8rem);
}

h2 {
  font-size: clamp(2rem, 3.7vw, 3.25rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.55rem);
}

h4 {
  font-size: 1.1rem;
}

::selection {
  color: var(--white);
  background: var(--orange);
}

/* ---------- Shared layout ---------- */

.wrap {
  width: min(var(--wrap), calc(100% - 40px));
  margin-right: auto;
  margin-left: auto;
}

.section {
  position: relative;
  padding: 88px 0;
}

.section--alt {
  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(255, 90, 31, 0.08),
      transparent 30%
    ),
    var(--off-white);
}

.section--dark {
  color: var(--white);
  background: var(--navy);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--white);
}

.section__lead {
  max-width: 850px;
  color: #475467;
  font-size: 1.08rem;
}

.section__lead > p:last-child {
  margin-bottom: 0;
}

.center {
  text-align: center;
}

.muted {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
  gap: 65px;
  align-items: start;
}

.grid {
  display: grid;
  gap: 24px;
  margin-top: 35px;
}

.grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(228, 231, 236, 0.9);
  box-shadow: 0 5px 22px rgba(17, 24, 39, 0.05);
  backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  width: min(var(--wrap), calc(100% - 40px));
  min-height: 82px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.nav__logo {
  position: relative;
  display: block;
  overflow: hidden;
  flex: 0 0 auto;
  width: 190px;
  border-radius: 11px;
  line-height: 0;
  box-shadow: 0 3px 12px rgba(17, 24, 39, 0.08);
}

.nav__logo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
}

.nav__logo::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  content: "";
  padding: 4px;
  background: conic-gradient(from var(--logo-angle),
    #ff5a1f 0deg,
    #ffcc33 60deg,
    #38b66b 120deg,
    #198acb 180deg,
    #3f51d7 240deg,
    #e31567 300deg,
    #ff5a1f 360deg
  );
  animation: logo-track 4s linear infinite;
  border-radius: inherit;
  pointer-events: none;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.nav__logo:hover {
  box-shadow: 0 5px 16px rgba(17, 24, 39, 0.14);
}

@property --logo-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

@keyframes logo-track {
  to {
    --logo-angle: 360deg;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav__logo::before {
    animation: none;
  }
}

.nav__links {
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: 5px;
  list-style: none;
}

.nav__links > li {
  position: relative;
  margin: 0;
}

.nav__links > li > a {
  display: block;
  padding: 11px 12px;
  color: #344054;
  border-radius: var(--radius-small);
  font-size: 0.93rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.nav__links > li > a:hover {
  color: var(--orange-dark);
  background: var(--orange-light);
}

.nav__links .nav__call {
  margin-left: 7px;
  padding: 12px 17px;
  color: var(--white);
  background: var(--orange);
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(255, 90, 31, 0.26);
}

.nav__links .nav__call:hover {
  color: var(--white);
  background: var(--orange-dark);
  transform: translateY(-1px);
}

.nav__toggle {
  display: none;
  width: 44px;
  height: 42px;
  padding: 0;
  color: var(--navy);
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-small);
  font-size: 1.35rem;
}

/* ---------- Dropdown menu ---------- */

.has-dropdown > a::after {
  margin-left: 6px;
  content: "▾";
  color: var(--orange);
  font-size: 0.75rem;
}

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  display: none;
  width: 280px;
  margin: 0;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-medium);
  list-style: none;
}

.dropdown li {
  margin: 0;
}

.dropdown a {
  display: block;
  padding: 11px 13px;
  color: var(--text);
  border-radius: var(--radius-small);
  font-size: 0.92rem;
  font-weight: 650;
}

.dropdown a:hover {
  color: var(--orange-dark);
  background: var(--orange-light);
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  display: block;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  min-height: 610px;
  color: var(--white);
  background:
    radial-gradient(
      circle at 78% 20%,
      rgba(255, 90, 31, 0.4),
      transparent 31%
    ),
    radial-gradient(
      circle at 8% 92%,
      rgba(26, 86, 219, 0.3),
      transparent 32%
    ),
    linear-gradient(120deg, #111827 0%, #1b2434 58%, #241810 100%) !important;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to right, black, transparent 85%);
}

.hero::after {
  position: absolute;
  right: -130px;
  bottom: -210px;
  width: 550px;
  height: 550px;
  content: "";
  border: 85px solid rgba(255, 90, 31, 0.12);
  border-radius: 50%;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(var(--wrap), calc(100% - 40px));
  min-height: 610px;
  margin: 0 auto;
  padding: 100px 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.hero__eyebrow {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 8px 14px;
  color: #ffd8ca;
  background: rgba(255, 90, 31, 0.16);
  border: 1px solid rgba(255, 143, 102, 0.36);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 950px;
  margin-bottom: 24px;
  color: var(--white);
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.28);
}

.hero__inner > p:not(.hero__eyebrow) {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

.hero__cta {
  display: flex;
  margin-top: 35px;
  flex-wrap: wrap;
  gap: 14px;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  min-height: 48px;
  padding: 12px 21px;
  color: var(--white);
  background: var(--orange);
  border: 2px solid var(--orange);
  border-radius: 999px;
  box-shadow: 0 7px 18px rgba(255, 90, 31, 0.22);
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.btn:hover {
  color: var(--white);
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  box-shadow: 0 12px 25px rgba(255, 90, 31, 0.3);
  transform: translateY(-2px);
}

.btn--lg {
  min-height: 56px;
  padding: 15px 27px;
  font-size: 1rem;
}

.btn--ghost {
  color: var(--navy);
  background: transparent;
  border-color: #cfd4dc;
  box-shadow: none;
}

.btn--ghost:hover {
  color: var(--orange-dark);
  background: var(--white);
  border-color: var(--orange);
}

/* ---------- Cards ---------- */

.card {
  position: relative;
  height: 100%;
  overflow: hidden;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-small);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 68px;
  height: 5px;
  content: "";
  background: var(--orange);
  border-radius: 0 0 5px 0;
}

.card:hover {
  border-color: rgba(255, 90, 31, 0.4);
  box-shadow: var(--shadow-medium);
  transform: translateY(-5px);
}

.card h3 {
  margin-bottom: 12px;
}

.card p:last-of-type {
  margin-bottom: 15px;
}

.card > a:last-child {
  font-weight: 800;
}

/* ---------- Lists and area links ---------- */

.linklist {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13px;
  list-style: none;
}

.linklist li {
  margin: 0;
}

.linklist a {
  display: block;
  padding: 14px 17px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 3px 12px rgba(17, 24, 39, 0.04);
  font-weight: 750;
}

.linklist a::after {
  float: right;
  content: "→";
  color: var(--orange);
}

.linklist a:hover {
  color: var(--orange-dark);
  border-color: rgba(255, 90, 31, 0.45);
  box-shadow: var(--shadow-small);
  transform: translateY(-2px);
}

/* ---------- Forms ---------- */

.form-card {
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-medium);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  margin-bottom: 7px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  display: block;
  width: 100%;
  color: var(--text);
  background: var(--white);
  border: 1px solid #cfd4dc;
  border-radius: 10px;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.field input,
.field select {
  min-height: 51px;
  padding: 11px 13px;
}

.field textarea {
  min-height: 150px;
  padding: 13px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 90, 31, 0.13);
}

/* ---------- Tables ---------- */

table {
  width: 100%;
  margin: 28px 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-small);
}

th,
td {
  padding: 15px 17px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}

th {
  color: var(--white);
  background: var(--navy);
  font-size: 0.9rem;
}

tr:last-child td {
  border-bottom: 0;
}

tbody tr:nth-child(even) {
  background: var(--off-white);
}

/* ---------- FAQ and detail content ---------- */

details {
  margin-bottom: 13px;
  padding: 0 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 3px 13px rgba(17, 24, 39, 0.04);
}

summary {
  padding: 18px 0;
  color: var(--navy);
  cursor: pointer;
  font-weight: 800;
}

details[open] {
  border-color: rgba(255, 90, 31, 0.4);
}

details[open] summary {
  color: var(--orange-dark);
}

details > p:last-child {
  padding-bottom: 17px;
}

/* ---------- Footer ---------- */

.site-footer {
  position: relative;
  padding: 72px 0 30px;
  color: rgba(255, 255, 255, 0.76);
  background:
    radial-gradient(
      circle at 12% 0%,
      rgba(255, 90, 31, 0.19),
      transparent 28%
    ),
    #0d1422;
  border-top: 5px solid var(--orange);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 1.1fr 1fr;
  gap: 45px;
}

.site-footer h4 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 1.05rem;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.72) !important;
  font-size: 0.91rem;
  line-height: 1.65;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li {
  margin: 0 0 8px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.76);
}

.site-footer a:hover {
  color: #ff9d79;
}

.footer-disclaimer {
  margin-top: 20px;
  padding-top: 17px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.8rem !important;
}

/* ---------- General content improvements ---------- */

.section h1 + .section__lead,
.section h2 + .section__lead {
  margin-top: 18px !important;
}

.section .wrap > h1,
.section .wrap > h2 {
  max-width: 950px;
}

.section:not(.section--alt) + .section:not(.section--alt) {
  border-top: 1px solid var(--border);
}

strong {
  color: inherit;
}

hr {
  height: 1px;
  margin: 35px 0;
  background: var(--border);
  border: 0;
}

/* Fix nested button paragraphs created by the page builder */

.section__lead p .btn {
  margin-top: 10px;
}

/* ---------- Responsive layout ---------- */

@media (max-width: 1080px) {
  .nav {
    gap: 15px;
  }

  .nav__links > li > a {
    padding-right: 8px;
    padding-left: 8px;
    font-size: 0.86rem;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .nav {
    position: relative;
    min-height: 72px;
  }

  .nav__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav__links {
    position: absolute;
    top: 72px;
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100vh - 90px);
    padding: 15px;
    overflow-y: auto;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: var(--shadow-medium);
    flex-direction: column;
    align-items: stretch;
  }

  .nav__links.open {
    display: flex;
  }

  .nav__links > li > a {
    padding: 13px;
    font-size: 0.95rem;
  }

  .nav__links .nav__call {
    margin: 5px 0 0;
    text-align: center;
  }

  .dropdown {
    position: static;
    display: block;
    width: auto;
    margin: 0 8px 8px;
    padding: 5px 10px;
    background: var(--off-white);
    border: 0;
    box-shadow: none;
  }

  .split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .linklist {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero,
  .hero__inner {
    min-height: 540px;
  }

  .hero__inner {
    padding: 80px 0;
  }
}

@media (max-width: 650px) {
  body {
    font-size: 16px;
  }

  .wrap,
  .nav,
  .hero__inner {
    width: min(100% - 28px, var(--wrap));
  }

  .section {
    padding: 65px 0;
  }

  h1 {
    font-size: clamp(2.2rem, 12vw, 3.25rem);
  }

  h2 {
    font-size: clamp(1.8rem, 9vw, 2.5rem);
  }

  .hero,
  .hero__inner {
    min-height: 510px;
  }

  .hero__inner {
    padding: 65px 0;
  }

  .hero__eyebrow {
    font-size: 0.72rem;
  }

  .hero__cta {
    width: 100%;
    flex-direction: column;
  }

  .hero__cta .btn {
    width: 100%;
  }

  .grid--2,
  .grid--3,
  .grid--4,
  .linklist,
  .footer-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .card,
  .form-card {
    padding: 24px;
    border-radius: var(--radius);
  }

  .footer-grid {
    gap: 30px;
  }

  .site-footer {
    padding-top: 55px;
  }

  table {
    display: block;
    overflow-x: auto;
  }
}

/* ---------- Reduced motion accessibility ---------- */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* =========================================================
   ADVERTISING VANS — PREMIUM POLISH
   Paste at the very bottom of style.css
   ========================================================= */

/* Easier-to-read page text */

body {
  font-size: 18px;
  line-height: 1.75;
}

p {
  color: #475467;
}

.section {
  padding-top: 105px;
  padding-bottom: 105px;
}

.section__lead {
  max-width: 900px;
  font-size: 1.12rem;
  line-height: 1.8;
}

/* Stronger headings */

h1,
h2,
h3 {
  letter-spacing: -0.04em;
}

h2 {
  margin-bottom: 24px;
}

h3 {
  line-height: 1.25;
}

/* Larger, clearer header */

.site-header {
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 8px 30px rgba(17, 24, 39, 0.08);
}

.nav {
  min-height: 94px;
}

.nav__logo {
  font-size: 1.55rem;
  font-weight: 900;
}

.nav__logo::before {
  width: 15px;
  height: 15px;
}

.nav__links {
  gap: 8px;
}

.nav__links > li > a {
  padding: 13px 14px;
  font-size: 0.98rem;
}

.nav__links .nav__call {
  padding: 14px 21px;
  font-size: 0.96rem;
}

/* More impressive hero */

.hero,
.hero__inner {
  min-height: 690px;
}

.hero {
  background:
    radial-gradient(
      circle at 88% 22%,
      rgba(255, 90, 31, 0.48),
      transparent 29%
    ),
    radial-gradient(
      circle at 5% 95%,
      rgba(37, 99, 235, 0.42),
      transparent 38%
    ),
    linear-gradient(
      118deg,
      #0b1322 0%,
      #17243a 54%,
      #3b1b12 100%
    ) !important;
}

.hero__inner {
  padding-top: 120px;
  padding-bottom: 120px;
}

.hero h1 {
  max-width: 920px;
  font-size: clamp(3rem, 6.2vw, 5.8rem);
  line-height: 1.02;
}

.hero__inner > p:not(.hero__eyebrow) {
  max-width: 780px;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  line-height: 1.65;
}

.hero__eyebrow {
  padding: 10px 17px;
  font-size: 0.86rem;
}

.hero__cta {
  margin-top: 42px;
  gap: 17px;
}

/* Bigger call-to-action buttons */

.btn {
  min-height: 54px;
  padding: 14px 24px;
  font-size: 0.98rem;
  box-shadow: 0 10px 25px rgba(255, 90, 31, 0.28);
}

.btn--lg {
  min-height: 62px;
  padding: 17px 31px;
  font-size: 1.07rem;
}

.btn:hover {
  transform: translateY(-3px);
}

/* Premium content cards */

.grid {
  gap: 28px;
  margin-top: 45px;
}

.card {
  padding: 35px;
  border: 1px solid rgba(208, 213, 221, 0.85);
  border-radius: 20px;
  box-shadow:
    0 8px 20px rgba(17, 24, 39, 0.06),
    0 22px 55px rgba(17, 24, 39, 0.05);
}

.card::before {
  width: 78px;
  height: 6px;
}

.card::after {
  position: absolute;
  top: 23px;
  right: 25px;
  width: 34px;
  height: 34px;
  content: "→";
  color: var(--orange);
  background: var(--orange-light);
  border-radius: 50%;
  font-size: 1.1rem;
  font-weight: 900;
  line-height: 34px;
  text-align: center;
}

.card h3 {
  padding-right: 45px;
  font-size: 1.35rem;
}

.card:hover {
  box-shadow:
    0 14px 30px rgba(17, 24, 39, 0.1),
    0 30px 70px rgba(17, 24, 39, 0.08);
  transform: translateY(-7px);
}

/* Stronger alternate sections */

.section--alt {
  background:
    radial-gradient(
      circle at 95% 10%,
      rgba(255, 90, 31, 0.11),
      transparent 30%
    ),
    radial-gradient(
      circle at 5% 90%,
      rgba(37, 99, 235, 0.06),
      transparent 32%
    ),
    #f7f9fc;
}

/* Better service-area buttons */

.linklist {
  gap: 16px;
}

.linklist a {
  padding: 17px 19px;
  border-radius: 14px;
}

.linklist a:hover {
  background: var(--orange-light);
  transform: translateY(-3px);
}

/* Improved FAQ */

details {
  margin-bottom: 16px;
  padding-right: 24px;
  padding-left: 24px;
  border-radius: 15px;
}

summary {
  padding-top: 21px;
  padding-bottom: 21px;
  font-size: 1rem;
}

/* Improved forms */

.form-card {
  padding: 40px;
  border-radius: 22px;
}

.field input,
.field select {
  min-height: 56px;
}

.field textarea {
  min-height: 170px;
}

/* More polished footer */

.site-footer {
  padding-top: 90px;
  background:
    radial-gradient(
      circle at 10% 0%,
      rgba(255, 90, 31, 0.24),
      transparent 30%
    ),
    linear-gradient(135deg, #0b1120, #111b2d);
}

.footer-grid {
  gap: 55px;
}

.site-footer h4 {
  font-size: 1.12rem;
}

.site-footer p,
.site-footer a {
  font-size: 0.96rem;
}

/* Gentle reveal animation */

@keyframes premiumFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__inner > *,
.section .card {
  animation: premiumFadeUp 0.65s ease both;
}

.section .card:nth-child(2) {
  animation-delay: 0.08s;
}

.section .card:nth-child(3) {
  animation-delay: 0.16s;
}

.section .card:nth-child(4) {
  animation-delay: 0.24s;
}

/* Tablet */

@media (max-width: 900px) {
  .nav {
    min-height: 78px;
  }

  .nav__links {
    top: 78px;
  }

  .hero,
  .hero__inner {
    min-height: 590px;
  }

  .hero__inner {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .section {
    padding-top: 82px;
    padding-bottom: 82px;
  }
}

/* Mobile */

@media (max-width: 650px) {
  body {
    font-size: 17px;
  }

  .nav__logo {
    font-size: 1.25rem;
  }

  .hero,
  .hero__inner {
    min-height: 560px;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 13vw, 3.65rem);
  }

  .hero__inner > p:not(.hero__eyebrow) {
    font-size: 1.08rem;
  }

  .section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .card {
    padding: 27px;
  }

  .card::after {
    top: 20px;
    right: 20px;
  }

  .form-card {
    padding: 27px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__inner > *,
  .section .card {
    animation: none;
  }
}

/* =========================================================
   FINAL PHOTO HERO
   ========================================================= */

/* =========================================================
   HERO
   ========================================================= */

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
/* ==========================
   TABLET
   ========================== */

@media (max-width:900px){

  .hero{
    min-height:620px;
    background:
      linear-gradient(
        90deg,
        rgba(12,18,30,.72) 0%,
        rgba(12,18,30,.48) 45%,
        rgba(12,18,30,.15) 100%
      ),
      url("images/hero-van.jpg") 72% center / cover no-repeat !important;
  }

  .hero__inner{
    min-height:620px;
  }

  .hero h1{
    max-width:620px;
  }

}

/* ==========================
   MOBILE
   ========================== */

@media (max-width:650px){

  .hero{
    min-height:620px;
    background:
      linear-gradient(
        180deg,
        rgba(12,18,30,.55) 0%,
        rgba(12,18,30,.78) 48%,
        rgba(12,18,30,.92) 100%
      ),
      url("images/hero-van.jpg") 68% center / cover no-repeat !important;
  }

  .hero__inner{
    min-height:620px;
    padding-top:75px;
    padding-bottom:65px;
    justify-content:flex-end;
  }

  .hero h1{
    max-width:100%;
    font-size:clamp(2.6rem,12vw,3.6rem);
  }

  .hero__inner > p:not(.hero__eyebrow){
    max-width:100%;
    font-size:1.05rem;
  }

  .hero__cta{
    width:100%;
  }

  .hero__cta .btn{
    width:100%;
  }

}

/* =========================================================
   PREMIUM SERVICE CARDS
   ========================================================= */

.services-showcase {
  padding: 90px 0;
  background: #f5f7fb;
}

.services-heading {
  max-width: 760px;
  margin: 0 auto 46px;
  text-align: center;
}

.services-eyebrow {
  margin-bottom: 10px;
  color: #ff5a1f;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.services-heading h1 {
  margin-bottom: 16px;
  color: #111827;
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 1.08;
}

.services-heading > p:last-child {
  max-width: 650px;
  margin: 0 auto;
  color: #5f6878;
  font-size: 1.12rem;
  line-height: 1.7;
}

.service-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.service-image-card {
  position: relative;
  display: block;
  min-height: 430px;
  overflow: hidden;
  color: #fff;
  background: #111827;
  border-radius: 20px;
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.16);
  text-decoration: none;
  isolation: isolate;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.service-image-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 54px rgba(15, 23, 42, 0.24);
}

.service-image-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.service-image-card:hover img {
  transform: scale(1.05);
}

.service-image-card__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(
      180deg,
      rgba(8, 13, 23, 0.02) 20%,
      rgba(8, 13, 23, 0.28) 52%,
      rgba(8, 13, 23, 0.92) 100%
    );
}

.service-image-card__content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 34px;
}

.service-image-card__content h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  line-height: 1.12;
}

.service-image-card__content p {
  max-width: 480px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.55;
}

.service-image-card__content span {
  display: inline-flex;
  align-items: center;
  color: #ffb79d;
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.service-image-card:hover .service-image-card__content span {
  color: #fff;
  transform: translateX(5px);
}

/* ==========================
   TABLET
   ========================== */

@media (max-width: 900px) {

  .services-showcase {
    padding: 70px 0;
  }

  .service-card-grid {
    gap: 20px;
  }

  .service-image-card {
    min-height: 380px;
  }

  .service-image-card__content {
    padding: 27px;
  }

}

/* ==========================
   MOBILE
   ========================== */

@media (max-width: 650px) {

  .services-showcase {
    padding: 55px 0;
  }

  .services-heading {
    margin-bottom: 32px;
    text-align: left;
  }

  .services-heading > p:last-child {
    margin: 0;
  }

  .service-card-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .service-image-card {
    display: grid;
    grid-template-rows: 235px auto;
    min-height: 0;
    overflow: hidden;
    background: #111827;
    border-radius: 16px;
  }

  .service-image-card img {
    position: relative;
    inset: auto;
    z-index: 0;
    grid-row: 1;
    width: 100%;
    height: 235px;
    object-fit: cover;
  }

  .service-image-card__overlay {
    display: none;
  }

  .service-image-card__content {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    grid-row: 2;
    padding: 24px;
  }

  .service-image-card__content h2 {
    font-size: 1.65rem;
  }

  .service-image-card__content p {
    font-size: 0.98rem;
  }

}

/* =========================================================
   DIGITAL ADVANS PAGE FIX
   ========================================================= */

.site-header {
  position: relative !important;
  top: auto !important;
  display: block !important;
  visibility: visible !important;
  width: 100% !important;
  z-index: 1000 !important;
}

.has-dropdown > span {
  display: block;
  padding: 13px 14px;
  color: #344054;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.has-dropdown > span::after {
  margin-left: 6px;
  content: "▾";
  color: #ff5a1f;
  font-size: 0.75rem;
}

.has-dropdown > span:hover {
  color: #df4010;
  background: #fff1eb;
}

.hero {
  min-height: 620px;
}

.hero__inner {
  min-height: 620px;
  padding-top: 80px;
  padding-bottom: 80px;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(3rem, 5vw, 4.6rem);
  line-height: 1.05;
}

.hero__inner > p:not(.hero__eyebrow) {
  max-width: 720px;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .has-dropdown > span {
    padding: 13px;
    font-size: 0.95rem;
  }

  .hero,
  .hero__inner {
    min-height: 560px;
  }

  .hero__inner {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}

@media (max-width: 650px) {
  .hero,
  .hero__inner {
    min-height: 540px;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 12vw, 3.4rem);
  }
}

/* =========================================================
   DIGITAL ADVANS RELATED SERVICES
   ========================================================= */

.related-service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.related-service-grid .service-image-card {
  min-height: 380px;
}

.related-service-grid .service-image-card__content {
  padding: 27px;
}

.related-service-grid .service-image-card__content h2 {
  font-size: 1.8rem;
}

@media (max-width: 900px) {
  .related-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 650px) {
  .related-service-grid {
    grid-template-columns: 1fr;
  }

  .related-service-grid .service-image-card {
    min-height: 0;
  }
}

/* =========================================================
   ADVERTISING VANS HEADER LOGO
   ========================================================= */

.nav__logo {
  position: relative;
  display: block;
  overflow: hidden;
  width: 230px;
  height: 66px;
  flex: 0 0 230px;
  background: none;
  border-radius: 15px;
  line-height: 0;
}

.nav__logo::before {
  display: block;
  width: auto;
  height: auto;
}

.nav__logo strong {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1080px) {
  .nav__logo {
    width: 190px;
    height: 58px;
    flex-basis: 190px;
  }
}

@media (max-width: 650px) {
  .nav__logo {
    width: 175px;
    height: 54px;
    flex-basis: 175px;
  }
}

/* =========================================================
   SERVICES DROPDOWN CLICK FIX
   ========================================================= */

.has-dropdown .dropdown {
  top: 100%;
  z-index: 1200;
  pointer-events: auto;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  display: block;
}
