/* ==========================================================================
   Walk the Line Striping — Main Stylesheet
   Industrial Precision / Heavy-Duty Americana
   ========================================================================== */

/* ── CSS Variables ──────────────────────────────────────────────────────── */
:root {
  --orange:        #f97316;
  --orange-hover:  #ea6c0c;
  --yellow:        #d4a017;
  --black:         #0d0d0d;
  --dark:          #141414;
  --charcoal:      #242424;
  --warm-white:    #f8f5f0;
  --gray:          #808080;
  --light-gray:    #e5e5e5;
  --white:         #ffffff;
  --container-max: 1280px;
  --radius:        4px;
  --transition:    0.25s ease;
  --shadow-md:     0 4px 16px rgba(0,0,0,.25);
  --shadow-lg:     0 8px 32px rgba(0,0,0,.35);

  /* Asphalt SVG texture (subtle noise) */
  --asphalt-texture: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.12'/%3E%3C/svg%3E");
}

/* ── Reset & Base ───────────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--black);
  background: var(--warm-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Bebas Neue', sans-serif;
  line-height: 1.05;
  letter-spacing: 0.02em;
  font-weight: 400;
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem);   }
h2 { font-size: clamp(2rem, 4vw, 3.5rem);   }
h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h4 { font-size: 1.375rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

a {
  color: var(--orange);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--orange-hover); }

img, video { max-width: 100%; height: auto; display: block; }

ul, ol { padding-left: 1.25rem; }
li { margin-bottom: 0.25rem; }

button { cursor: pointer; border: none; background: none; font-family: inherit; }

abbr[title] { text-decoration: underline dotted; cursor: help; }

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

/* ── Container ─────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px)  { .container { padding-left: 1.5rem; padding-right: 1.5rem; } }
@media (min-width: 1024px) { .container { padding-left: 2rem;   padding-right: 2rem;   } }

/* ── Buttons ────────────────────────────────────────────────────────────── */
.btn-orange,
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-lg {
  font-size: 1.125rem;
  padding: 0.9rem 2.25rem;
}

.btn-orange {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-orange:hover {
  background: var(--orange-hover);
  border-color: var(--orange-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249,115,22,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}

/* ── Design Motifs ──────────────────────────────────────────────────────── */
.road-stripe {
  width: 60px;
  height: 4px;
  background: var(--yellow);
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.section-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 8rem;
  opacity: 0.05;
  position: absolute;
  top: -1rem;
  right: 1rem;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  color: currentColor;
}

.asphalt-bg {
  background-color: var(--black);
  background-image: var(--asphalt-texture);
  background-size: 300px 300px;
  color: var(--warm-white);
}

.font-display {
  font-family: 'Bebas Neue', sans-serif;
}

/* ── Navigation Links ───────────────────────────────────────────────────── */
.nav-link {
  position: relative;
  color: inherit;
  text-decoration: none;
  padding-bottom: 2px;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width var(--transition);
}
.nav-link:hover::after,
.nav-link.current-menu-item::after { width: 100%; }

/* ── Animations ─────────────────────────────────────────────────────────── */
.anim-hidden {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.anim-visible {
  opacity: 1;
  transform: translateY(0);
}

.anim-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.anim-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.anim-left.anim-visible,
.anim-right.anim-visible {
  opacity: 1;
  transform: translate(0);
}

/* Staggered children */
.anim-hidden:nth-child(2) { transition-delay: 0.1s; }
.anim-hidden:nth-child(3) { transition-delay: 0.2s; }
.anim-hidden:nth-child(4) { transition-delay: 0.3s; }

/* ═══════════════════════════════════════════════════════════════════════
   FIXED HEADER WRAPPER (topbar + nav as one fixed unit)
═══════════════════════════════════════════════════════════════════════ */
.wtl-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 9999 !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  transform: none !important;
}
/* Push header below WP admin bar when logged in */
.admin-bar .wtl-header { top: 32px !important; }
@media (max-width: 782px) { .admin-bar .wtl-header { top: 46px !important; } }

/* ── Top bar ─────────────────────────────────────────────────────────────── */
.wtl-topbar {
  background: var(--orange);
  color: var(--white);
  font-size: 0.8125rem;
  font-weight: 500;
  overflow: hidden;
  max-height: 48px;
  opacity: 1;
  transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
}
.wtl-topbar.hidden {
  max-height: 0;
  opacity: 0;
  pointer-events: none;
}

.wtl-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.45rem;
  padding-bottom: 0.45rem;
  gap: 1rem;
}

.wtl-topbar__contact {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.wtl-topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--white);
  text-decoration: none;
  opacity: 0.92;
  transition: opacity var(--transition);
}
.wtl-topbar__item:hover { opacity: 1; color: var(--white); }
.wtl-topbar__item--location { display: none; }

@media (min-width: 768px) {
  .wtl-topbar__item--location { display: inline-flex; }
}

.wtl-topbar__badge {
  font-size: 0.75rem;
  opacity: 0.8;
  display: none;
}
@media (min-width: 1024px) { .wtl-topbar__badge { display: block; } }

/* ── Primary navigation ───────────────────────────────────────────────────── */
.wtl-nav {
  background: #0d0d0d;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.wtl-header.scrolled .wtl-nav {
  background: #0d0d0d;
  box-shadow: 0 2px 24px rgba(0,0,0,0.55);
}

.wtl-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 68px;
}

/* Logo */
.wtl-nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}
.wtl-nav__logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.wtl-nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.wtl-nav__logo-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.375rem;
  letter-spacing: 0.06em;
  color: var(--white);
  line-height: 1;
}
.wtl-nav__logo-sub {
  font-size: 0.625rem;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  margin-top: 2px;
}

/* Desktop menu */
.wtl-nav__menu { display: none; }
@media (min-width: 1024px) {
  .wtl-nav__menu { display: flex; flex: 1; justify-content: center; }
}

.wtl-nav__menu .wtl-nav__list,
.wtl-nav__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.wtl-nav__list li a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color var(--transition);
  position: relative;
}
.wtl-nav__list li a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width var(--transition);
}
.wtl-nav__list li a:hover,
.wtl-nav__list li.current-menu-item > a { color: var(--white); }
.wtl-nav__list li a:hover::after,
.wtl-nav__list li.current-menu-item > a::after { width: 100%; }

/* Dropdown submenus — mega-menu */
.wtl-nav__list li { position: relative; }
.wtl-nav__list .sub-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  width: 560px;
  background: #161616;
  border-top: 2px solid var(--orange);
  border-radius: 0 0 8px 8px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.55);
  list-style: none;
  padding: 0.875rem;
  margin: 0;
  z-index: 200;
  grid-template-columns: 1fr 1fr;
  gap: 0.25rem;
}
.wtl-nav__list li:hover > .sub-menu { display: grid; }
.wtl-nav__list .sub-menu li { width: 100%; }
.wtl-nav__list .sub-menu li a {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.625rem 0.75rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.15s;
  white-space: normal;
}
.wtl-nav__list .sub-menu li a::after { display: none; }
.wtl-nav__list .sub-menu li a:hover { background: rgba(255,255,255,0.07); }
.sub-menu__icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  background: rgba(249,115,22,0.12);
  border: 1px solid rgba(249,115,22,0.25);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
}
.sub-menu__text { display: flex; flex-direction: column; gap: 0.2rem; min-width: 0; }
.sub-menu__name {
  font-size: 0.875rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  line-height: 1.3;
}
.sub-menu__desc {
  font-size: 0.725rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.4;
}
/* Arrow indicator on parent */
.wtl-nav__list .menu-item-has-children > a::before {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  margin-left: 5px;
  vertical-align: middle;
  opacity: 0.6;
}

/* CTA button */
.wtl-nav__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.wtl-nav__cta {
  display: none;
  background: var(--orange);
  color: var(--white);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.12em;
  padding: 0.55rem 1.25rem;
  border-radius: 4px;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition);
  line-height: 1;
  align-items: center;
}
.wtl-nav__cta:hover { background: #e86210; color: var(--white); transform: translateY(-1px); }
@media (min-width: 768px) { .wtl-nav__cta { display: inline-flex; } }

/* Hamburger */
.wtl-nav__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: 4px;
  background: rgba(255,255,255,0.08);
  transition: background var(--transition);
}
.wtl-nav__hamburger:hover { background: rgba(255,255,255,0.16); }
@media (min-width: 1024px) { .wtl-nav__hamburger { display: none; } }

.wtl-nav__hamburger-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.wtl-nav--menu-open .wtl-nav__hamburger-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.wtl-nav--menu-open .wtl-nav__hamburger-bar:nth-child(2) { opacity: 0; }
.wtl-nav--menu-open .wtl-nav__hamburger-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.wtl-nav__mobile {
  display: none;
  background: #111;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.wtl-nav__mobile.open { display: block; }

.wtl-nav__mobile .container {
  padding-top: 1.25rem;
  padding-bottom: 1.5rem;
}

.wtl-nav__mobile-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
}
.wtl-nav__mobile-list li {
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.wtl-nav__mobile-list li a {
  display: block;
  padding: 0.875rem 0;
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: color var(--transition), padding-left var(--transition);
}
.wtl-nav__mobile-list li a:hover { color: var(--orange); padding-left: 0.5rem; }

.wtl-nav__mobile-cta {
  display: block;
  text-align: center;
  margin-bottom: 1rem;
  background: var(--orange);
  color: var(--white);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
}
.wtl-nav__mobile-cta:hover { background: #e86210; color: var(--white); }

.wtl-nav__mobile-contact { text-align: center; }
.wtl-nav__mobile-contact a { color: rgba(255,255,255,0.55); font-size: 0.875rem; }

/* ── Body offset so fixed header doesn't cover content ───────────────────── */
body { padding-top: 116px; } /* topbar ~48px + nav ~68px */
.wtl-header.scrolled ~ * body,
body.scrolled-header { padding-top: 68px; }

/* Hero sections sit flush under the fixed header — they handle their own top spacing */
.wtl-hero,
.wtl-page-hero { margin-top: -116px; padding-top: 116px; }
.wtl-header.scrolled + * .wtl-page-hero { padding-top: 68px; }

/* ═══════════════════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════════════════ */
.wtl-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.wtl-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}
.wtl-hero__bg.loaded { transform: scale(1); }

.wtl-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,13,13,0.85) 0%,
    rgba(13,13,13,0.65) 50%,
    rgba(13,13,13,0.4) 100%
  );
}

.wtl-hero__content {
  position: relative;
  z-index: 1;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.wtl-hero__text {
  max-width: 780px;
}

.wtl-hero__heading {
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.1em;
}

.wtl-hero__line { display: block; color: #fff; }
.wtl-hero__line--accent { color: var(--orange); }

.wtl-hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.78);
  max-width: 560px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.wtl-hero__ctas {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

/* Trust Badges */
.wtl-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.wtl-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 2rem;
  padding: 0.45rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.02em;
}
.wtl-hero__badge svg { color: var(--orange); flex-shrink: 0; }

/* Scroll Chevron */
.wtl-hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  opacity: 0.6;
  animation: bounce 2s ease-in-out infinite;
  z-index: 1;
  transition: opacity var(--transition);
}
.wtl-hero__scroll:hover { opacity: 1; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ═══════════════════════════════════════════════════════════════════════
   STATS BAR
═══════════════════════════════════════════════════════════════════════ */
.stats-bar {
  background: var(--charcoal);
  color: var(--white);
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}
.stats-bar::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
}

.stats-bar__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: center;
}

@media (max-width: 767px) {
  .stats-bar__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1rem;
  }
  .stats-bar__divider { display: none !important; }
}

.stats-bar__item {
  text-align: center;
  padding: 1rem 1.5rem;
}

.stats-bar__number {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  color: var(--orange);
  letter-spacing: 0.02em;
  margin-bottom: 0.4rem;
}

.stats-bar__label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6);
}

.stats-bar__divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.12);
  justify-self: center;
}

/* ═══════════════════════════════════════════════════════════════════════
   CLIENTS
═══════════════════════════════════════════════════════════════════════ */
.wtl-clients {
  background: var(--warm-white);
  padding: 4rem 0;
  text-align: center;
}

.wtl-clients__label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 2rem;
}

.wtl-clients__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.wtl-clients__badge {
  border: 2px solid var(--light-gray);
  padding: 1rem 2rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.375rem;
  letter-spacing: 0.1em;
  color: var(--charcoal);
  border-radius: var(--radius);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
  cursor: default;
}
.wtl-clients__badge:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(249,115,22,0.05);
}

/* ═══════════════════════════════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════════════════════════════ */
.wtl-services {
  background: var(--white);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.wtl-services__header {
  margin-bottom: 3.5rem;
  max-width: 600px;
}

.wtl-services__sub {
  color: var(--gray);
  font-size: 1.0625rem;
  margin-top: 0.75rem;
}

.wtl-services__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 900px) {
  .wtl-services__layout {
    grid-template-columns: 380px 1fr;
    gap: 3rem;
    align-items: start;
  }
}

/* Service List (left) */
.wtl-services__list {
  list-style: none;
  padding: 0;
  margin: 0;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  overflow: hidden;
}

.service-list-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid var(--light-gray);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  user-select: none;
}
.service-list-item:last-child { border-bottom: none; }

.service-list-item:hover {
  background: rgba(249,115,22,0.06);
}

.service-list-item.active {
  background: var(--orange);
  color: var(--white);
}

.service-list-item__num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  opacity: 0.5;
  flex-shrink: 0;
  min-width: 2rem;
}
.service-list-item.active .service-list-item__num { opacity: 0.7; }

.service-list-item__name {
  flex: 1;
  font-weight: 600;
  font-size: 0.9375rem;
}

.service-list-item__arrow {
  flex-shrink: 0;
  opacity: 0.4;
  transition: transform var(--transition), opacity var(--transition);
}
.service-list-item:hover .service-list-item__arrow,
.service-list-item.active .service-list-item__arrow {
  transform: translateX(3px);
  opacity: 0.9;
}

/* Service Detail (right) */
.service-detail {
  position: relative;
  background: var(--charcoal);
  color: var(--warm-white);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 360px;
}

.service-detail__inner {
  padding: 2.5rem;
  position: relative;
  z-index: 1;
}

.service-detail__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.service-detail__desc {
  color: rgba(248,245,240,0.75);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-detail__features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.service-detail__features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9375rem;
  color: rgba(248,245,240,0.85);
  margin-bottom: 0;
}
.service-detail__features li svg { color: var(--orange); flex-shrink: 0; }

.service-detail__visual {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  pointer-events: none;
  padding-right: 1.5rem;
}

.service-detail__visual-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(6rem, 12vw, 10rem);
  line-height: 1;
  opacity: 0.05;
  color: var(--white);
  user-select: none;
}

/* ═══════════════════════════════════════════════════════════════════════
   PROCESS
═══════════════════════════════════════════════════════════════════════ */
.wtl-process {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.wtl-process__header {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 4rem;
  color: var(--warm-white);
}
.wtl-process__header h2 { color: var(--warm-white); }
.wtl-process__header .road-stripe { margin-left: auto; margin-right: auto; }

.wtl-process__sub {
  color: rgba(248,245,240,0.65);
  margin-top: 0.5rem;
}

.wtl-process__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .wtl-process__grid {
    grid-template-columns: 1fr auto 1fr auto 1fr;
  }
}

.process-card {
  position: relative;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  overflow: hidden;
  transition: border-color var(--transition), background var(--transition);
}
.process-card:hover {
  border-color: rgba(249,115,22,0.4);
  background: rgba(255,255,255,0.08);
}

.process-card__watermark {
  position: absolute;
  top: -0.5rem;
  right: 0.75rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 6rem;
  line-height: 1;
  opacity: 0.05;
  color: var(--white);
  user-select: none;
  pointer-events: none;
}

.process-card__circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}

.process-card__title {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.process-card__desc {
  color: rgba(248,245,240,0.65);
  font-size: 0.9375rem;
  line-height: 1.65;
  margin: 0;
}

.process-card__connector {
  color: var(--orange);
  opacity: 0.4;
  display: none;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .process-card__connector { display: flex; }
}

.wtl-process__cta {
  text-align: center;
  margin-top: 3rem;
}

/* Dashed center decoration */
.wtl-process__centerline {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    var(--yellow) 0px,
    var(--yellow) 40px,
    transparent 40px,
    transparent 80px
  );
  opacity: 0.25;
}

/* ═══════════════════════════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════════════════════════ */
.wtl-testimonials {
  background: var(--warm-white);
  padding: 6rem 0;
}

.wtl-testimonials__header {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 3rem;
}
.wtl-testimonials__header .road-stripe { margin: 0 auto 1rem; }

.wtl-testimonials__carousel {
  position: relative;
  max-width: 760px;
  margin: 0 auto 2rem;
  min-height: 280px;
}

.testimonial-card {
  display: none;
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  animation: fadeSlideIn 0.45s ease forwards;
}
.testimonial-card--active { display: block; }

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.testimonial-card__quote {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 7rem;
  line-height: 0.7;
  color: var(--orange);
  opacity: 0.12;
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  user-select: none;
  pointer-events: none;
}

.testimonial-card__text {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  font-style: normal;
}

.testimonial-card__footer {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.testimonial-card__stars {
  color: var(--yellow);
  font-size: 1rem;
  letter-spacing: 2px;
}

.testimonial-card__author {
  display: flex;
  flex-direction: column;
  font-style: normal;
}
.testimonial-card__author strong {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--black);
}
.testimonial-card__author span {
  font-size: 0.8125rem;
  color: var(--gray);
}

/* Dots */
.testimonial-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--light-gray);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  padding: 0;
}
.testimonial-dot--active,
.testimonial-dot:hover {
  background: var(--orange);
  transform: scale(1.3);
}

/* ═══════════════════════════════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════════════════════════════ */
.wtl-faq {
  background: var(--white);
  padding: 6rem 0;
}

.wtl-faq__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 900px) {
  .wtl-faq__inner {
    grid-template-columns: 340px 1fr;
    gap: 5rem;
    align-items: start;
  }
}

.wtl-faq__left h2 { color: var(--black); margin-bottom: 1rem; }
.wtl-faq__left p  { color: var(--gray); margin-bottom: 1.75rem; }

.wtl-faq__accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border: 1px solid var(--light-gray);
  border-top: none;
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item:first-child { border-top: 1px solid var(--light-gray); border-radius: var(--radius) var(--radius) 0 0; }
.faq-item:last-child  { border-radius: 0 0 var(--radius) var(--radius); }

.faq-item.open {
  border-color: var(--orange);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--black);
  text-align: left;
  background: var(--white);
  transition: background var(--transition), color var(--transition);
  font-family: 'DM Sans', sans-serif;
}
.faq-trigger:hover {
  background: rgba(249,115,22,0.04);
  color: var(--orange);
}
.faq-item.open .faq-trigger {
  color: var(--orange);
  background: rgba(249,115,22,0.04);
}

.faq-trigger__icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-item.open .faq-trigger__icon { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.25rem;
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 1.25rem 1.25rem;
}

.faq-answer p {
  color: var(--gray);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════════════════
   QUOTE CTA SECTION
═══════════════════════════════════════════════════════════════════════ */
.wtl-quote {
  position: relative;
  color: var(--white);
  padding: 6rem 0;
  overflow: hidden;
}

.wtl-quote__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.wtl-quote__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,13,13,0.92) 0%, rgba(13,13,13,0.82) 100%);
}

.wtl-quote__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 900px) {
  .wtl-quote__inner {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }
}

.wtl-quote__info h2 { color: var(--white); margin-bottom: 1rem; }
.wtl-quote__info p  { color: rgba(255,255,255,0.7); margin-bottom: 2rem; font-size: 1.0625rem; }

.wtl-quote__contacts {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.wtl-quote__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color var(--transition);
}
a.wtl-quote__contact-item:hover { color: var(--white); }

.wtl-quote__contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(249,115,22,0.2);
  border: 1px solid rgba(249,115,22,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--orange);
  transition: background var(--transition);
}
a.wtl-quote__contact-item:hover .wtl-quote__contact-icon {
  background: rgba(249,115,22,0.35);
}

.wtl-quote__contact-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.15rem;
}
.wtl-quote__contact-value {
  display: block;
  font-size: 0.9375rem;
  font-weight: 500;
}

/* ── Form ────────────────────────────────────────────────────────────── */
.wtl-quote__form-wrap {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 2.25rem;
}

.wtl-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.wtl-form__row { display: flex; flex-direction: column; gap: 1.25rem; }

@media (min-width: 560px) {
  .wtl-form__row--2 {
    flex-direction: row;
  }
  .wtl-form__row--2 .wtl-form__group { flex: 1; }
}

.wtl-form__group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.wtl-form__label {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.7);
}
.wtl-form__label abbr { color: var(--orange); text-decoration: none; }

.wtl-form__input {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  font-family: 'DM Sans', sans-serif;
  color: var(--white);
  transition: border-color var(--transition), background var(--transition);
  width: 100%;
}
.wtl-form__input::placeholder { color: rgba(255,255,255,0.35); }
.wtl-form__input:focus {
  outline: none;
  border-color: var(--orange);
  background: rgba(255,255,255,0.12);
}

.wtl-form__select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='white' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.wtl-form__select option { background: var(--charcoal); color: var(--white); }

.wtl-form__textarea {
  resize: vertical;
  min-height: 120px;
}

.wtl-form__submit {
  align-self: flex-start;
  width: 100%;
  justify-content: center;
}

.wtl-form__disclaimer {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
  margin: 0;
}

/* Form states */
.wtl-form-success {
  text-align: center;
  padding: 3rem 1.5rem;
  color: var(--white);
}
.wtl-form-success svg { margin: 0 auto 1rem; color: var(--orange); }
.wtl-form-success h3 { font-size: 2rem; margin-bottom: 0.5rem; }
.wtl-form-success p  { color: rgba(255,255,255,0.7); }

.wtl-form-error {
  background: rgba(239,68,68,0.15);
  border: 1px solid rgba(239,68,68,0.4);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  color: #fca5a5;
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ═══════════════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════════════ */
.wtl-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 4rem;
}

.wtl-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
}

@media (min-width: 640px) {
  .wtl-footer__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .wtl-footer__grid { grid-template-columns: 2fr 1fr 1.5fr; gap: 4rem; }
}

/* Brand column */
.wtl-footer__logo-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  margin-bottom: 1rem;
}
.wtl-footer__logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.wtl-footer__logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.wtl-footer__logo-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.375rem;
  letter-spacing: 0.05em;
  color: var(--white);
}
.wtl-footer__logo-sub {
  font-size: 0.6875rem;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.wtl-footer__tagline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.wtl-footer__desc {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.5rem;
}

/* Social */
.wtl-footer__social {
  display: flex;
  gap: 0.6rem;
}
.wtl-footer__social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.wtl-footer__social-link:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

/* Footer heading */
.wtl-footer__heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.125rem;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.75rem;
}
.wtl-footer__heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--orange);
}

/* Footer links */
.wtl-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.wtl-footer__links li { margin: 0; }
.wtl-footer__links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color var(--transition), padding-left var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.wtl-footer__links a::before {
  content: '→';
  font-size: 0.75rem;
  opacity: 0;
  transition: opacity var(--transition);
  color: var(--orange);
}
.wtl-footer__links a:hover {
  color: var(--white);
  padding-left: 0.25rem;
}
.wtl-footer__links a:hover::before { opacity: 1; }

/* Address */
.wtl-footer__address { font-style: normal; }
.wtl-footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
}
.wtl-footer__contact-item svg { color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.wtl-footer__contact-item a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color var(--transition);
}
.wtl-footer__contact-item a:hover { color: var(--white); }

.wtl-footer__hours { margin-top: 1.25rem; }
.wtl-footer__hours-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.wtl-footer__hours p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.25rem;
}

/* Bottom bar */
.wtl-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.25rem 0;
}
.wtl-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.wtl-footer__copyright,
.wtl-footer__credentials {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════════════════
   INNER PAGE HERO
═══════════════════════════════════════════════════════════════════════ */
.wtl-page-hero {
  position: relative;
  padding: 5rem 0 4rem;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: center;
}

.wtl-page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,13,13,0.85) 0%, rgba(13,13,13,0.7) 100%);
}

.wtl-page-hero__inner {
  position: relative;
  z-index: 1;
}

.wtl-page-hero__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  line-height: 1;
  margin-bottom: 1rem;
}

/* Breadcrumb */
.wtl-breadcrumb { font-size: 0.8125rem; }
.wtl-breadcrumb ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  align-items: center;
}
.wtl-breadcrumb li { margin: 0; color: rgba(255,255,255,0.4); }
.wtl-breadcrumb li + li::before { content: '/'; margin-right: 0.3rem; }
.wtl-breadcrumb a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color var(--transition);
}
.wtl-breadcrumb a:hover { color: var(--orange); }
.wtl-breadcrumb [aria-current="page"] { color: var(--orange); }

/* Post hero extras */
.wtl-post-hero__cats { margin-bottom: 1rem; display: flex; gap: 0.5rem; flex-wrap: wrap; }
.wtl-post-hero__cat {
  background: var(--orange);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.75rem;
  border-radius: 2rem;
  text-decoration: none;
  transition: background var(--transition);
}
.wtl-post-hero__cat:hover { background: var(--orange-hover); color: var(--white); }

.wtl-post-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
}
.wtl-post-hero__meta time,
.wtl-post-hero__meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

/* ═══════════════════════════════════════════════════════════════════════
   PAGE CONTENT / BLOG TYPOGRAPHY
═══════════════════════════════════════════════════════════════════════ */
.wtl-page-content,
.wtl-single-content {
  padding: 4rem 0 5rem;
}

.wtl-single-content__wrap { max-width: 820px; margin: 0 auto; }

.page-content,
.post-content {
  /* Typography for WP editor content */
}

.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4,
.page-content h5,
.page-content h6,
.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6 {
  color: var(--black);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.page-content h2,
.post-content h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
.page-content h3,
.post-content h3 { font-size: clamp(1.375rem, 2.5vw, 1.875rem); }

.page-content p,
.post-content p {
  color: #3a3a3a;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.page-content a,
.post-content a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color var(--transition);
}
.page-content a:hover,
.post-content a:hover { color: var(--orange-hover); }

.page-content ul,
.page-content ol,
.post-content ul,
.post-content ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}
.page-content li,
.post-content li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
  color: #3a3a3a;
}

.page-content blockquote,
.post-content blockquote {
  border-left: 4px solid var(--orange);
  margin: 2rem 0;
  padding: 1rem 1.5rem;
  background: rgba(249,115,22,0.05);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--charcoal);
}
.page-content blockquote p,
.post-content blockquote p { margin: 0; }

.page-content img,
.post-content img {
  border-radius: var(--radius);
  margin: 1.5rem 0;
}

.page-content pre,
.post-content pre {
  background: var(--charcoal);
  color: var(--warm-white);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  overflow-x: auto;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.page-content table,
.post-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
}
.page-content th,
.page-content td,
.post-content th,
.post-content td {
  border: 1px solid var(--light-gray);
  padding: 0.65rem 1rem;
  text-align: left;
}
.page-content th,
.post-content th {
  background: var(--warm-white);
  font-weight: 700;
}

/* Featured image */
.post-content__featured-image {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 2rem;
}
.post-content__featured-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  margin: 0;
}

/* Tags */
.post-content__tags {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--light-gray);
  font-size: 0.875rem;
  color: var(--gray);
}
.post-content__tags a {
  display: inline-block;
  background: var(--warm-white);
  border: 1px solid var(--light-gray);
  padding: 0.2rem 0.65rem;
  border-radius: 2rem;
  margin: 0.2rem;
  font-size: 0.8rem;
  color: var(--charcoal);
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}
.post-content__tags a:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

/* Post navigation */
.wtl-post-nav {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--light-gray);
}
@media (min-width: 640px) {
  .wtl-post-nav { grid-template-columns: 1fr 1fr; }
}

.wtl-post-nav__item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.25rem;
  background: var(--warm-white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  text-decoration: none;
  transition: border-color var(--transition), background var(--transition);
}
.wtl-post-nav__item:hover {
  border-color: var(--orange);
  background: rgba(249,115,22,0.04);
}
.wtl-post-nav__item--next { text-align: right; }

.wtl-post-nav__label {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--orange);
}

.wtl-post-nav__title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1.4;
}

/* ═══════════════════════════════════════════════════════════════════════
   BLOG ARCHIVE
═══════════════════════════════════════════════════════════════════════ */
.wtl-archive {
  padding: 4rem 0 5rem;
  background: var(--warm-white);
}

.wtl-archive__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 640px) {
  .wtl-archive__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .wtl-archive__grid { grid-template-columns: repeat(3, 1fr); }
}

.wtl-archive__pagination {
  margin-top: 3rem;
  text-align: center;
}

.wtl-archive__empty {
  text-align: center;
  padding: 4rem 1rem;
}
.wtl-archive__empty h2 { margin-bottom: 1rem; }
.wtl-archive__empty p  { color: var(--gray); margin-bottom: 1.5rem; }

/* Pagination */
.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}
.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--charcoal);
  text-decoration: none;
  transition: all var(--transition);
}
.page-numbers:hover { border-color: var(--orange); color: var(--orange); }
.page-numbers.current {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}
.page-numbers.dots { border: none; width: auto; }

/* ═══════════════════════════════════════════════════════════════════════
   POST CARD
═══════════════════════════════════════════════════════════════════════ */
.post-card {
  background: var(--charcoal);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(255,255,255,0.05);
}
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.post-card__image-link { display: block; }

.post-card__image-wrap {
  overflow: hidden;
  height: 200px;
}
.post-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.post-card:hover .post-card__image { transform: scale(1.04); }

.post-card__image-placeholder {
  height: 200px;
  background: rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.post-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.post-card__cats {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}
.post-card__cat {
  background: rgba(249,115,22,0.15);
  color: var(--orange);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.6rem;
  border-radius: 2rem;
  text-decoration: none;
  transition: background var(--transition);
}
.post-card__cat:hover { background: var(--orange); color: var(--white); }

.post-card__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.375rem;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}
.post-card__title a {
  color: var(--white);
  text-decoration: none;
  transition: color var(--transition);
}
.post-card__title a:hover { color: var(--orange); }

.post-card__excerpt {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.25rem;
}

.post-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.post-card__date {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.post-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--orange);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: gap var(--transition);
}
.post-card__link:hover { gap: 0.5rem; color: var(--orange); }

/* ═══════════════════════════════════════════════════════════════════════
   404 PAGE
═══════════════════════════════════════════════════════════════════════ */
.wtl-404 {
  padding: 5rem 0 6rem;
  background: var(--warm-white);
}

.wtl-404__inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  position: relative;
}

.wtl-404__number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(8rem, 20vw, 16rem);
  line-height: 0.85;
  color: var(--orange);
  opacity: 0.1;
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
}

.wtl-404__heading {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
  position: relative;
}

.wtl-404__text {
  color: var(--gray);
  margin-bottom: 2rem;
  font-size: 1.0625rem;
  position: relative;
}

.wtl-404__actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  position: relative;
}

.wtl-404__actions .btn-outline {
  color: var(--black);
  border-color: var(--charcoal);
}
.wtl-404__actions .btn-outline:hover {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}

.wtl-404__search {
  position: relative;
}
.wtl-404__search p {
  color: var(--gray);
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

/* WP Search Form */
.search-form {
  display: flex;
  gap: 0.5rem;
  max-width: 400px;
  margin: 0 auto;
}
.search-field {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-family: 'DM Sans', sans-serif;
}
.search-submit {
  padding: 0.75rem 1.25rem;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.9375rem;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background var(--transition);
}
.search-submit:hover { background: var(--orange-hover); }

/* ═══════════════════════════════════════════════════════════════════════
   UTILITY / MISC
═══════════════════════════════════════════════════════════════════════ */
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* WP alignment classes */
.alignleft  { float: left;  margin-right: 1.5rem; margin-bottom: 1rem; }
.alignright { float: right; margin-left:  1.5rem; margin-bottom: 1rem; }
.aligncenter { margin-left: auto; margin-right: auto; display: block; }
.alignwide  { max-width: 1100px; margin-left: auto; margin-right: auto; }
.alignfull  { max-width: 100%; margin-left: calc(-50vw + 50%); width: 100vw; }

/* Clearfix */
.clearfix::after { content: ''; display: table; clear: both; }

/* ═══════════════════════════════════════════════════════════════════════
   DIAGONAL SECTION TRANSITIONS
═══════════════════════════════════════════════════════════════════════ */
.wtl-clients {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), 0 100%);
  padding-bottom: calc(4rem + 40px);
}

.stats-bar {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), 0 100%);
  padding-bottom: calc(3.5rem + 30px);
}

/* ═══════════════════════════════════════════════════════════════════════
   RESPONSIVE OVERRIDES
═══════════════════════════════════════════════════════════════════════ */

/* Mobile — max 639px */
@media (max-width: 639px) {
  .wtl-hero__heading { font-size: clamp(2.5rem, 10vw, 3.5rem); }
  .wtl-hero__ctas    { flex-direction: column; }
  .wtl-hero__ctas .btn-orange,
  .wtl-hero__ctas .btn-outline { width: 100%; justify-content: center; }

  .wtl-quote__form-wrap { padding: 1.5rem; }
  .wtl-footer__bottom-inner { flex-direction: column; align-items: flex-start; gap: 0.25rem; }

  .section-number { font-size: 5rem; }

  .wtl-clients { clip-path: none; }
  .stats-bar    { clip-path: none; }
}

/* Tablet — 640–1023px */
@media (min-width: 640px) and (max-width: 1023px) {
  .wtl-hero__text { max-width: 100%; }
}

/* Print */
@media print {
  .wtl-header,
  .wtl-footer { display: none; }
  body { font-size: 12pt; color: #000; background: #fff; padding-top: 0 !important; }
}

/* ═══════════════════════════════════════════════════════════════════════
   SERVICE PAGE TEMPLATE
═══════════════════════════════════════════════════════════════════════ */
.wtl-service-tagline {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: .75rem;
}
.wtl-page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.75rem;
}
.wtl-service-features {
  padding: 5rem 0;
  background: #fff;
}
.service-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1023px) { .service-features-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 639px)  { .service-features-grid { grid-template-columns: 1fr; } }

.service-feature-card {
  position: relative;
  padding: 1.75rem;
  border: 1px solid #e8e8e8;
  border-radius: .5rem;
  background: #fff;
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.service-feature-card:hover {
  border-color: var(--orange);
  box-shadow: 0 8px 32px rgba(249,115,22,.12);
  transform: translateY(-3px);
}
.service-feature-card__num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  line-height: 1;
  color: rgba(13,13,13,.05);
  position: absolute;
  top: .5rem;
  right: 1rem;
  pointer-events: none;
  user-select: none;
  transition: color .25s;
}
.service-feature-card:hover .service-feature-card__num { color: rgba(249,115,22,.08); }
.service-feature-card__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  color: var(--black);
  margin-bottom: .5rem;
  letter-spacing: .04em;
}
.service-feature-card__desc { font-size: .875rem; color: #555; line-height: 1.65; }

/* Why section */
.wtl-why { padding: 5rem 0; }
.wtl-why__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 1023px) { .wtl-why__inner { grid-template-columns: 1fr; gap: 2.5rem; } }

.wtl-why__list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: .85rem;
}
.wtl-why__list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  color: rgba(255,255,255,.8);
  font-size: .9375rem;
  line-height: 1.5;
}
.wtl-why__list svg { color: var(--orange); flex-shrink: 0; margin-top: .15rem; }

.wtl-why__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.wtl-why__stat {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: .5rem;
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: border-color .25s, background .25s;
}
.wtl-why__stat:hover { border-color: rgba(249,115,22,.4); background: rgba(255,255,255,.08); }
.wtl-why__stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  color: var(--orange);
  line-height: 1;
}
.wtl-why__stat-label {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,.5);
  margin-top: .35rem;
}

/* ═══════════════════════════════════════════════════════════════════════
   BLOG ARCHIVE (home.php)
═══════════════════════════════════════════════════════════════════════ */
.wtl-archive { padding: 4rem 0 5rem; background: var(--warm-white); }
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 3rem;
}
@media (max-width: 1023px) { .post-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 639px)  { .post-grid { grid-template-columns: 1fr; } }

.wtl-pagination { margin: 1rem 0 0; }
.wtl-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  flex-wrap: wrap;
  padding: 0;
  list-style: none;
}
.wtl-pagination .page-numbers li a,
.wtl-pagination .page-numbers li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--light-gray);
  border-radius: .35rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--black);
  text-decoration: none;
  transition: all .2s;
}
.wtl-pagination .page-numbers li a:hover { border-color: var(--orange); color: var(--orange); }
.wtl-pagination .page-numbers li span.current { background: var(--orange); border-color: var(--orange); color: #fff; }

.wtl-no-posts { padding: 4rem 0; text-align: center; color: var(--gray); }

/* ═══════════════════════════════════════════════════════════════════════
   PAGE HERO SUBTITLE & ACTIONS (shared)
═══════════════════════════════════════════════════════════════════════ */
.wtl-page-hero__sub {
  color: rgba(255,255,255,.7);
  font-size: 1.0625rem;
  max-width: 600px;
  line-height: 1.7;
  margin-top: .75rem;
}

/* section heading helpers */
.section-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: var(--black);
  line-height: 1.05;
  letter-spacing: .02em;
}
.section-heading--white { color: #fff; }
.section-sub {
  color: var(--gray);
  font-size: .9375rem;
  max-width: 560px;
  margin: .75rem auto 0;
  line-height: 1.65;
}

/* ─── Contact Page ─────────────────────────────────────────────────────────── */
.wtl-contact-page { background: var(--warm-white); }

.wtl-contact-split { padding: 5rem 0; }
.wtl-contact-split__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 900px) {
  .wtl-contact-split__inner { grid-template-columns: 1fr; gap: 3rem; }
}

/* Contact detail cards */
.wtl-contact-cards { display: flex; flex-direction: column; gap: 1.25rem; margin: 2rem 0; }
.wtl-contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: #fff;
  border: 1px solid rgba(0,0,0,.07);
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}
.wtl-contact-card__icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--orange);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.wtl-contact-card__body { display: flex; flex-direction: column; gap: .2rem; }
.wtl-contact-card__label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray);
}
.wtl-contact-card__value {
  font-size: 1rem;
  font-weight: 500;
  color: var(--black);
  text-decoration: none;
  line-height: 1.5;
}
a.wtl-contact-card__value:hover { color: var(--orange); }

/* Service area list */
.wtl-contact-area { margin-top: 2rem; }
.wtl-contact-area__heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: .04em;
  color: var(--black);
  margin-bottom: .5rem;
}
.wtl-contact-area__sub {
  font-size: .9375rem;
  color: var(--gray);
  margin-bottom: 1rem;
  line-height: 1.6;
}
.wtl-contact-area__cities {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .4rem .75rem;
}
.wtl-contact-area__cities li {
  font-size: .9rem;
  color: var(--black);
  padding-left: 1.1rem;
  position: relative;
}
.wtl-contact-area__cities li::before {
  content: '';
  position: absolute; left: 0; top: .5em;
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
}

/* Contact form wrap */
.wtl-contact-form-wrap {
  background: #fff;
  border: 1px solid rgba(0,0,0,.07);
  border-radius: 8px;
  padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
  position: sticky;
  top: 6rem;
}
@media (max-width: 900px) {
  .wtl-contact-form-wrap { position: static; padding: 1.75rem; }
}

.wtl-form__privacy {
  font-size: .8125rem;
  color: var(--gray);
  text-align: center;
  margin-top: .75rem;
  line-height: 1.5;
}

/* Trust strip */
.wtl-contact-trust {
  padding: 3rem 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.wtl-contact-trust__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media (max-width: 900px) {
  .wtl-contact-trust__inner { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}
@media (max-width: 500px) {
  .wtl-contact-trust__inner { grid-template-columns: 1fr; }
}
.wtl-contact-trust__item {
  display: flex;
  align-items: flex-start;
  gap: .875rem;
  color: #fff;
}
.wtl-contact-trust__icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: rgba(249,115,22,.15);
  border: 1px solid rgba(249,115,22,.3);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
}
.wtl-contact-trust__item strong { display: block; font-weight: 700; font-size: 1rem; margin-bottom: .2rem; }
.wtl-contact-trust__item span   { font-size: .875rem; color: rgba(255,255,255,.65); line-height: 1.5; }


/* ═══════════════════════════════════════════════════════════════════════
   INTERIOR PAGE HERO — background image support + tall variant
═══════════════════════════════════════════════════════════════════════ */
.wtl-page-hero--tall {
  min-height: 460px;
  padding: 7rem 0 5.5rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ── Interior page sections shared ───────────────────────────────────── */
.wtl-interior-page .wtl-service-features { padding: 5.5rem 0; }
.wtl-interior-page .wtl-why             { padding: 5.5rem 0; }
.wtl-interior-page .wtl-process         { padding: 5.5rem 0; }
.wtl-interior-page .wtl-testimonials    { padding: 5rem 0; }
.wtl-interior-page .wtl-faq            { padding: 5.5rem 0; }

/* ── Why list — light on dark ─────────────────────────────────────────── */
.wtl-why__list { margin-top: 1.5rem; }

/* ── Service features: 2-row 3-col default, 3-col on wide ─────────────── */
/* existing .service-features-grid is already 3-col — nothing to add */

/* ── Process connector fix ─────────────────────────────────────────────── */
.process-card__connector svg { display: block; }

/* ── Submenu hover bridge ────────────────────────────────────────────────────
   The sub-menu sits 12px below the parent li (top: calc(100% + 12px)).
   Without this bridge, the mouse loses the li:hover state while crossing
   that gap and the submenu vanishes. The ::after pseudo-element fills the
   gap so hover stays active during mouse travel. */
.wtl-nav__list .menu-item-has-children::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 14px; /* covers the 12px gap + 2px safety margin */
}

/* ── Contact form on white background ────────────────────────────────────────
   The form inputs/labels default to white text (for dark asphalt sections).
   Inside the white .wtl-contact-form-wrap card, override to dark text. */
.wtl-contact-form-wrap .wtl-form__label {
  color: #374151;
}
.wtl-contact-form-wrap .wtl-form__label span[aria-hidden] {
  color: var(--orange);
}
.wtl-contact-form-wrap .wtl-form__input {
  background: #f9fafb;
  border-color: #d1d5db;
  color: #111827;
}
.wtl-contact-form-wrap .wtl-form__input::placeholder {
  color: #9ca3af;
}
.wtl-contact-form-wrap .wtl-form__input:focus {
  background: #fff;
  border-color: var(--orange);
}
.wtl-contact-form-wrap .wtl-form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}
.wtl-contact-form-wrap .wtl-form__privacy {
  color: #6b7280;
}
.wtl-contact-form-wrap .wtl-form__heading {
  color: #111827;
}

/* ── Why Choose: advantage cards (interior pages) ─────────────────────────── */
.wtl-why__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.wtl-why__card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: .5rem;
  padding: 1.5rem 1.25rem;
  transition: border-color .25s, background .25s;
}
.wtl-why__card:hover { border-color: rgba(249,115,22,.4); background: rgba(255,255,255,.08); }
.wtl-why__card-dot {
  width: 28px; height: 4px;
  background: var(--orange);
  border-radius: 2px;
  margin-bottom: .875rem;
}
.wtl-why__card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1875rem;
  letter-spacing: .04em;
  color: var(--white);
  margin-bottom: .5rem;
}
.wtl-why__card-body {
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
  margin: 0;
}

/* ── 5-step process grid ───────────────────────────────────────────────────── */
@media (min-width: 768px) {
  .wtl-process__grid--5step {
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
    max-width: 1200px;
  }
}

/* ── 4-step process grid ───────────────────────────────────────────────────── */
@media (min-width: 768px) {
  .wtl-process__grid--4step {
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    max-width: 1000px;
  }
}

/* ── What's Included bullet list ───────────────────────────────────────────── */
.wtl-included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 0.875rem;
}
.wtl-included-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
  color: #374151;
  line-height: 1.5;
}

/* ── Interior page: split heading ──────────────────────────────────────────── */
.wtl-split-heading__line1 {
  color: #fff;
  display: inline;
}
.wtl-split-heading__line1--dark {
  color: #111827;
}
.wtl-split-heading__line2 {
  color: var(--orange);
  display: inline;
}

/* ── Interior page: hero label ─────────────────────────────────────────────── */
.wtl-svc-hero-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: .9375rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin: 0 0 .5rem;
}

/* ── Interior page: section label ──────────────────────────────────────────── */
.wtl-section-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: .875rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 .625rem;
}

/* ── Line-flanked label (matches dev site style) ───────────────────────────── */
.wtl-line-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--orange);
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: .75rem;
}
.wtl-line-label__bar {
  height: 1px;
  width: 32px;
  background: var(--orange);
  flex-shrink: 0;
}

/* ── Intro section (2-column) ──────────────────────────────────────────────── */
.wtl-intro {
  padding: 5rem 0;
  background: #fff;
}
.wtl-intro__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 767px) {
  .wtl-intro__inner { grid-template-columns: 1fr; gap: 2rem; }
}
.wtl-intro__label-row {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.25rem;
}
.wtl-intro__svc-icon {
  width: 40px;
  height: 40px;
  background: var(--orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wtl-intro__label-text {
  color: var(--orange);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  line-height: 1.3;
}
.wtl-intro__heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  letter-spacing: .04em;
  line-height: 1.05;
  margin: 0 0 1.375rem;
}
.wtl-intro__body {
  color: #4b5563;
  font-size: 1.0625rem;
  line-height: 1.8;
  margin: 0 0 2rem;
}
.wtl-intro__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.wtl-intro__photo {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #e5e7eb;
}
.wtl-intro__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.wtl-intro__photo-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
}
.wtl-intro__photo-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  background: rgba(10,10,10,.88);
  backdrop-filter: blur(6px);
  border-radius: 8px;
  padding: .875rem 1rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  border: 1px solid rgba(249,115,22,.25);
}
.wtl-intro__photo-badge strong {
  display: block;
  font-size: .9375rem;
  color: #fff;
  font-weight: 700;
}
.wtl-intro__photo-badge span {
  display: block;
  font-size: .75rem;
  color: rgba(255,255,255,.55);
  margin-top: .125rem;
}

/* ── What's Included (redesigned) ─────────────────────────────────────────── */
.wtl-included {
  padding: 5rem 0;
  background: #f8f9fa;
}
.wtl-included__header {
  text-align: center;
  margin-bottom: 2.75rem;
}
.wtl-included__heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  letter-spacing: .05em;
  color: #111;
  margin: 0;
}
.wtl-included-grid--4col {
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}
@media (min-width: 900px) {
  .wtl-included-grid--4col { grid-template-columns: repeat(4, 1fr); }
}
.wtl-included-grid--4col .wtl-included-item {
  background: #fff;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 4px rgba(0,0,0,.05);
  align-items: flex-start;
  font-size: .9375rem;
  font-weight: 500;
  transition: box-shadow .2s, transform .2s;
}
.wtl-included-grid--4col .wtl-included-item:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,.1);
  transform: translateY(-2px);
}

/* ── Why Choose v2 (dark bg, icon cards) ──────────────────────────────────── */
.wtl-why-v2 {
  padding: 5rem 0;
}
.wtl-why-v2__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 0;
}
@media (min-width: 900px) {
  .wtl-why-v2__grid { grid-template-columns: repeat(4, 1fr); }
}
.wtl-why-v2__card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 8px;
  padding: 1.75rem 1.5rem;
  transition: border-color .25s, background .25s;
}
.wtl-why-v2__card:hover {
  border-color: rgba(249,115,22,.4);
  background: rgba(255,255,255,.08);
}
.wtl-why-v2__icon {
  width: 44px;
  height: 44px;
  background: var(--orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.125rem;
  flex-shrink: 0;
}
.wtl-why-v2__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  letter-spacing: .04em;
  color: #fff;
  margin: 0 0 .625rem;
}
.wtl-why-v2__body {
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  line-height: 1.65;
  margin: 0;
}

/* ── Process + FAQ (side by side) ─────────────────────────────────────────── */
.wtl-proc-faq {
  padding: 5rem 0;
  background: #fff;
}
.wtl-proc-faq__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 767px) {
  .wtl-proc-faq__inner { grid-template-columns: 1fr; gap: 3rem; }
}
.wtl-proc__heading,
.wtl-faq-col__heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  letter-spacing: .04em;
  color: #111;
  margin: 0 0 1.75rem;
}
.wtl-proc__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.wtl-proc__step {
  display: flex;
  gap: 1.125rem;
  align-items: flex-start;
  padding-bottom: 1.5rem;
  position: relative;
}
.wtl-proc__step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 17px;
  top: 36px;
  bottom: 0;
  width: 2px;
  background: #e5e7eb;
}
.wtl-proc__num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: .04em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.wtl-proc__content h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.125rem;
  letter-spacing: .04em;
  color: #111;
  margin: .25rem 0 .375rem;
}
.wtl-proc__content p {
  font-size: .9375rem;
  color: #6b7280;
  line-height: 1.65;
  margin: 0;
}

/* ── Bottom 3-column ───────────────────────────────────────────────────────── */
.wtl-bottom-three {
  padding: 5rem 0;
  background: #f8f9fa;
}
.wtl-bottom-three__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 900px) {
  .wtl-bottom-three__grid { grid-template-columns: 1fr; }
}
.wtl-bottom-three__testimonial {
  background: #fff;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 2px 16px rgba(0,0,0,.07);
}
.wtl-bottom-three__testimonial .testimonial-card__stars {
  color: var(--orange);
  font-size: 1.125rem;
  display: block;
  margin-bottom: 1rem;
}
.wtl-bottom-three__testimonial blockquote {
  margin: 0;
  padding: 0;
  border: none;
}
.wtl-bottom-three__testimonial blockquote p {
  font-size: .9375rem;
  color: #374151;
  line-height: 1.7;
  font-style: italic;
  margin: 0 0 1.25rem;
}
.wtl-bottom-three__testimonial blockquote footer {
  display: flex;
  flex-direction: column;
  gap: .25rem;
}
.wtl-bottom-three__testimonial blockquote footer strong {
  font-size: .9375rem;
  color: #111;
}
.wtl-bottom-three__testimonial blockquote footer span {
  font-size: .8125rem;
  color: #9ca3af;
}
.wtl-bottom-three__cta {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.wtl-bottom-three__cta-inner {
  position: relative;
  z-index: 1;
  padding: 2rem;
}
.wtl-bottom-three__cta h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: .05em;
  color: #fff;
  margin: 0 0 .25rem;
}
.wtl-bottom-three__phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  color: rgba(255,255,255,.7);
  font-size: .9375rem;
  text-decoration: none;
  margin-top: .75rem;
}
.wtl-bottom-three__phone:hover { color: #fff; }
.wtl-bottom-three__badges {
  display: flex;
  flex-direction: column;
  gap: .375rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,.12);
}
.wtl-bottom-three__badges span {
  font-size: .8125rem;
  color: rgba(255,255,255,.6);
}
.wtl-bottom-three__services {
  background: #fff;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 2px 16px rgba(0,0,0,.07);
}
.wtl-other-svc {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: .625rem 0;
  border-bottom: 1px solid #f3f4f6;
  text-decoration: none;
  color: #374151;
  font-size: .9375rem;
  transition: color .2s;
}
.wtl-other-svc:hover { color: var(--orange); }
.wtl-other-svc svg { flex-shrink: 0; color: var(--orange); }
