/* ============================================================
   MAIN.CSS — RoadSafe Traffic Planning
   Shared styles for all pages
============================================================ */

/* ============================================================
   TOKENS & RESET
============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy:        #1B3A6B;
  --navy-deep:   #0F2447;
  --orange:      #E8892B;
  --orange-warm: #FFF3E0;
  --grey-mid:    #4A4A4A;
  --grey-light:  #F5F7FA;
  --grey-border: #DDE2ED;
  --white:       #FFFFFF;

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Inter', sans-serif;

  --stripe-hero:  repeating-linear-gradient(-45deg, rgba(255,255,255,0.05) 0px, rgba(255,255,255,0.05) 2px, transparent 2px, transparent 26px);
  --stripe-dark:  repeating-linear-gradient(-45deg, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 2px, transparent 2px, transparent 26px);
  --stripe-light: repeating-linear-gradient(-45deg, rgba(27,58,107,0.04) 0px, rgba(27,58,107,0.04) 2px, transparent 2px, transparent 26px);

  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-expo:  cubic-bezier(0.76, 0, 0.24, 1);
}

html { scroll-behavior: smooth; }

/* ============================================================
   CUSTOM SCROLLBAR
============================================================ */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--grey-light); }
::-webkit-scrollbar-thumb {
  background: var(--orange);
  border-radius: 4px;
  border: 2px solid var(--grey-light);
}
::-webkit-scrollbar-thumb:hover { background: #d97b22; }
* { scrollbar-width: thin; scrollbar-color: var(--orange) var(--grey-light); }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--grey-mid);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

/* ============================================================
   SKIP LINK
============================================================ */
.skip-link {
  position: absolute;
  top: -200%;
  left: 1rem;
  background: var(--orange);
  color: var(--navy-deep);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.5rem 1.25rem;
  border-radius: 0 0 6px 6px;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ============================================================
   PAGE LOADER
============================================================ */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--navy-deep);
  background-image: var(--stripe-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  transition: transform 0.85s var(--ease-expo);
  will-change: transform;
}

.loader--hidden {
  transform: translateY(-100%);
  pointer-events: none;
}

.loader__wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.75rem, 7vw, 4rem);
  letter-spacing: 0.03em;
  line-height: 1;
  opacity: 0;
  transform: translateY(18px);
  animation: loaderIn 0.55s var(--ease-out) 0.1s forwards;
}
.loader__wordmark .word-road { color: var(--white); }
.loader__wordmark .word-safe { color: var(--orange); }

.loader__sub {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  opacity: 0;
  animation: loaderIn 0.5s var(--ease-out) 0.28s forwards;
}

.loader__bar-track {
  width: 180px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
  opacity: 0;
  animation: loaderIn 0.4s var(--ease-out) 0.38s forwards;
}

.loader__bar-fill {
  height: 100%;
  background: var(--orange);
  width: 0%;
  border-radius: 2px;
  animation: loaderBar 0.95s cubic-bezier(0.4, 0, 0.2, 1) 0.45s forwards;
}

@keyframes loaderIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes loaderBar { to { width: 100%; } }

/* ============================================================
   SCROLL ANIMATIONS
============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}
.fade-up.is-visible { opacity: 1; transform: translateY(0); }

.fade-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}
.fade-left.is-visible { opacity: 1; transform: translateX(0); }

.fade-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}
.fade-right.is-visible { opacity: 1; transform: translateX(0); }

/* Stagger delay helpers */
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }
.d5 { transition-delay: 0.40s; }

/* Animated orange underline on section headings */
.u-line {
  position: relative;
  display: inline-block;
}
.u-line::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
  transition: width 0.75s var(--ease-out) 0.25s;
}
.u-line.is-visible::after { width: 100%; }

/* Hero word-split animation */
.hw { display: inline-block; overflow: hidden; vertical-align: bottom; }
.hw-inner {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 0.62s var(--ease-out), opacity 0.5s var(--ease-out);
}
.hw-inner.is-visible { transform: translateY(0); opacity: 1; }

/* Counter number animation */
.count-num {
  display: inline-block;
  transition: all 0.1s linear;
}

@media (prefers-reduced-motion: reduce) {
  .fade-up, .fade-left, .fade-right {
    opacity: 1; transform: none; transition: none;
  }
  .hw-inner { transform: none; opacity: 1; transition: none; }
  .u-line::after { width: 100%; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   LAYOUT HELPERS
============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
}

.section-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.85rem, 4vw, 2.8rem);
  color: var(--navy);
  line-height: 1.08;
  letter-spacing: 0.01em;
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.875rem 2rem;
  border-radius: 5px;
  border: 2px solid transparent;
  cursor: pointer;
  min-height: 48px;
  white-space: nowrap;
  transition:
    background   0.22s var(--ease-out),
    color        0.22s var(--ease-out),
    border-color 0.22s var(--ease-out),
    transform    0.14s var(--ease-out),
    box-shadow   0.22s var(--ease-out);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.25s var(--ease-out);
}
.btn:hover::after { background: rgba(255,255,255,0.08); }
.btn:active { transform: translateY(1px); }

.btn--orange {
  background: var(--orange);
  color: var(--navy-deep);
  border-color: var(--orange);
}
.btn--orange:hover {
  background: #d97b22;
  border-color: #d97b22;
  box-shadow: 0 6px 22px rgba(232,137,43,0.35);
}
.btn--orange::after { background: rgba(255,255,255,0); }

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn--outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

.btn--navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn--navy:hover {
  background: var(--navy-deep);
  border-color: var(--navy-deep);
  box-shadow: 0 6px 22px rgba(15,36,71,0.3);
}

.btn--outline-orange {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}
.btn--outline-orange:hover {
  background: var(--orange);
  color: var(--navy-deep);
}

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

/* ============================================================
   NAVIGATION (sticky, shared across all pages)
============================================================ */
header {
  position: sticky;
  top: 0;
  z-index: 500;
}

.nav {
  background: var(--white);
  border-bottom: 1px solid var(--grey-border);
  transition:
    box-shadow   0.3s var(--ease-out),
    border-color 0.3s var(--ease-out);
}

.nav--scrolled {
  background: var(--white);
  box-shadow: 0 2px 16px rgba(27,58,107,0.10);
  border-color: var(--grey-border);
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo / wordmark */
.nav__logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.nav__logo-img { height: 44px; width: auto; display: block; }
.nav__wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  line-height: 1;
  transition: opacity 0.2s;
}
.nav__wordmark:hover { opacity: 0.82; }
.nav__wordmark .word-road { color: var(--navy); }
.nav__wordmark .word-safe { color: var(--orange); }

/* Desktop links */
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--grey-mid);
  position: relative;
  padding-bottom: 2px;
  transition: color 0.2s var(--ease-out);
  text-decoration: none;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transition: width 0.25s var(--ease-out);
}
.nav__link:hover,
.nav__link.is-active { color: var(--navy); }
.nav__link:hover::after,
.nav__link.is-active::after { width: 100%; }

/* Hamburger toggle */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  min-width: 44px;
  min-height: 44px;
}
.nav__hamburger-bar {
  width: 22px; height: 2px;
  background: var(--navy);
  display: block;
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.3s var(--ease-out), opacity 0.3s var(--ease-out);
}
.nav__hamburger.is-open .nav__hamburger-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.is-open .nav__hamburger-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.is-open .nav__hamburger-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile overlay menu */
.nav__mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  top: 72px;
  background: var(--white);
  z-index: 499;
  padding: 1.5rem 1.5rem 2rem;
  flex-direction: column;
  border-top: 1px solid var(--grey-border);
  overflow-y: auto;
}
.nav__mobile-menu.is-open { display: flex; }

.nav__mobile-link {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--navy);
  letter-spacing: 0.02em;
  padding: 1rem 0;
  border-bottom: 1px solid var(--grey-border);
  text-decoration: none;
  transition: color 0.2s;
}
.nav__mobile-link:last-of-type { border-bottom: none; }
.nav__mobile-link:hover,
.nav__mobile-link.is-active { color: var(--orange); }

.nav__mobile-cta {
  margin-top: 1.5rem;
  background: var(--orange);
  color: var(--navy-deep);
  font-weight: 700;
  font-size: 1rem;
  padding: 1rem 1.5rem;
  border-radius: 5px;
  text-align: center;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.2s;
}
.nav__mobile-cta:hover { background: #d97b22; }

/* ============================================================
   PAGE BANNER (mini hero for inner pages)
============================================================ */
.page-banner {
  position: relative;
  background: var(--navy);
  padding: 5rem 0 4.5rem;
  overflow: hidden;
}
.page-banner__stripe {
  position: absolute;
  inset: 0;
  background-image: var(--stripe-hero);
  pointer-events: none;
}
.page-banner::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 90px;
  background: linear-gradient(to bottom, transparent, rgba(15,36,71,0.28));
  pointer-events: none;
}
.page-banner__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.page-banner__eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
}
.page-banner__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--white);
  line-height: 1.06;
  letter-spacing: 0.01em;
}

/* ============================================================
   HERO (index.html — full screen)
============================================================ */
.section-hero {
  position: relative;
  background-color: var(--navy);
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Canvas sits at z-index 0 */
.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* Diagonal stripe overlay above canvas */
.hero__stripe-overlay {
  position: absolute;
  inset: 0;
  background-image: var(--stripe-hero);
  pointer-events: none;
  z-index: 1;
}

/* Bottom vignette */
.hero__vignette {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 240px;
  background: linear-gradient(to bottom, transparent, rgba(15,36,71,0.55));
  pointer-events: none;
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 1.5rem 4.5rem;
  width: 100%;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: heroIn 0.6s var(--ease-out) 1.3s forwards;
}

.hero__headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.5rem, 5.5vw, 4.4rem);
  color: var(--white);
  line-height: 1.04;
  letter-spacing: 0.01em;
  max-width: 840px;
  margin-bottom: 1.375rem;
}

/* JS wraps words in .hw/.hw-inner for stagger reveal */
.hero__headline .hw { display: inline-block; overflow: hidden; vertical-align: bottom; }
.hero__headline .hw-inner {
  display: inline-block;
  transform: translateY(105%);
  opacity: 0;
  transition: transform 0.65s var(--ease-out), opacity 0.5s var(--ease-out);
}
.hero__headline .hw-inner.is-visible { transform: translateY(0); opacity: 1; }

.hero__subheading {
  font-size: clamp(1rem, 1.8vw, 1.175rem);
  color: rgba(255,255,255,0.75);
  max-width: 545px;
  line-height: 1.72;
  margin-bottom: 2.75rem;
  font-weight: 400;
  opacity: 0;
  animation: heroIn 0.6s var(--ease-out) 1.75s forwards;
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroIn 0.6s var(--ease-out) 1.95s forwards;
}

/* Mouse/scroll indicator */
.hero__scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  opacity: 0;
  animation: heroIn 0.6s var(--ease-out) 2.3s forwards;
}
.hero__scroll-mouse {
  width: 22px; height: 36px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  position: relative;
}
.hero__scroll-mouse::after {
  content: '';
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 3px; height: 7px;
  background: rgba(255,255,255,0.55);
  border-radius: 2px;
  animation: scrollBob 2.2s ease-in-out infinite;
}
@keyframes scrollBob {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50%       { transform: translateX(-50%) translateY(9px); opacity: 0.25; }
}

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

/* ============================================================
   HOME: SERVICES PREVIEW (index.html)
============================================================ */
.services-preview {
  background: var(--grey-light);
  padding: 6rem 0;
  position: relative;
}
.services-preview::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--stripe-light);
  pointer-events: none;
  opacity: 0.5;
}

.preview-header {
  text-align: center;
  margin-bottom: 3rem;
}

.preview-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.75rem;
}

.preview-card {
  background: var(--white);
  border: 1.5px solid var(--grey-border);
  border-radius: 8px;
  padding: 2rem 1.75rem;
  transition:
    transform    0.25s var(--ease-out),
    box-shadow   0.25s var(--ease-out),
    border-color 0.25s var(--ease-out);
}
.preview-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 44px rgba(27,58,107,0.11);
  border-color: var(--navy);
}
.preview-card__icon {
  width: 52px; height: 52px;
  background: var(--orange-warm);
  color: var(--orange);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
  transition: background 0.22s, color 0.22s;
}
.preview-card:hover .preview-card__icon {
  background: var(--navy);
  color: var(--white);
}
.preview-card__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--navy);
  letter-spacing: 0.01em;
  margin-bottom: 0.5rem;
}
.preview-card__desc {
  font-size: 0.875rem;
  color: var(--grey-mid);
  line-height: 1.62;
}

.preview-cta { text-align: center; }

/* ============================================================
   HOME: TRUST / WHY ROADSAFE (index.html)
============================================================ */
.trust-section {
  background: var(--white);
  padding: 6rem 0;
}

.trust-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.trust-section__copy .section-eyebrow { display: block; }
.trust-section__copy .section-heading { margin-bottom: 1.25rem; }

.trust-section__body {
  font-size: 1.0625rem;
  line-height: 1.78;
  color: var(--grey-mid);
  margin-bottom: 2rem;
}

.trust-stat-stack {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

/* ============================================================
   STAT CARDS (shared: home + about)
============================================================ */
.stat-card {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-left: 4px solid var(--orange);
  padding: 1.4rem 1.5rem;
  border-radius: 7px;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}
.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(27,58,107,0.10);
}
.stat-card__icon {
  width: 44px; height: 44px; min-width: 44px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background 0.22s, transform 0.22s var(--ease-out);
}
.stat-card:hover .stat-card__icon {
  background: var(--orange);
  color: var(--navy-deep);
  transform: scale(1.08);
}
.stat-card__body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
  letter-spacing: 0.01em;
  margin-bottom: 0.25rem;
}
.stat-card__body p {
  font-size: 0.875rem;
  color: var(--grey-mid);
  line-height: 1.55;
}

/* ============================================================
   ABOUT PAGE
============================================================ */
.about-content {
  background: var(--grey-light);
  padding: 6rem 0;
  position: relative;
}
.about-content::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 6px;
  background-color: var(--orange);
  background-image: repeating-linear-gradient(-45deg, rgba(255,255,255,0.22) 0px, rgba(255,255,255,0.22) 3px, transparent 3px, transparent 9px);
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.about__body {
  margin-top: 1.25rem;
  font-size: 1.0625rem;
  line-height: 1.78;
  color: var(--grey-mid);
}
.about__body p + p { margin-top: 0.9rem; }

.about__stat-stack {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

/* Big numbers strip on about page */
.about-numbers {
  background: var(--navy);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.about-numbers__stripe {
  position: absolute;
  inset: 0;
  background-image: var(--stripe-dark);
  pointer-events: none;
}
.about-numbers__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.big-num {
  text-align: center;
  padding: 1.5rem;
}
.big-num__value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3rem, 6vw, 4.5rem);
  color: var(--orange);
  letter-spacing: 0.01em;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.big-num__label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.375rem;
}
.big-num__desc {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.55;
}

/* Process / How it works (about page) */
.about-process {
  background: var(--white);
  padding: 6rem 0;
}

.about-process__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--orange) 0px, var(--orange) 8px, transparent 8px, transparent 18px);
  opacity: 0.4;
}

.process-step {
  text-align: center;
  padding: 1.5rem 1rem;
}
.process-step__num {
  width: 64px; height: 64px;
  background: var(--orange-warm);
  border: 2px solid var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--orange);
  margin: 0 auto 1.25rem;
  transition: background 0.25s, color 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}
.process-step:hover .process-step__num {
  background: var(--orange);
  color: var(--navy-deep);
  transform: scale(1.08);
}
.process-step__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
  letter-spacing: 0.01em;
  margin-bottom: 0.5rem;
}
.process-step__desc {
  font-size: 0.8125rem;
  color: var(--grey-mid);
  line-height: 1.6;
}

/* ============================================================
   SERVICES PAGE
============================================================ */
.services-main {
  background: var(--white);
  padding: 5.5rem 0;
}

.services__header {
  text-align: center;
  margin-bottom: 3.25rem;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(285px, 1fr));
  gap: 1.375rem;
  margin-bottom: 2.75rem;
}

.service-card {
  border: 1.5px solid var(--grey-border);
  border-radius: 8px;
  padding: 1.625rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  background: var(--white);
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity       0.6s var(--ease-out),
    transform     0.6s var(--ease-out),
    box-shadow    0.25s var(--ease-out),
    border-color  0.25s var(--ease-out);
}
.service-card.is-visible { opacity: 1; transform: translateY(0); }
.service-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 14px 36px rgba(27,58,107,0.11);
  border-color: var(--navy);
}

/* Stagger: each card gets a delay via nth-child */
.services__grid .service-card:nth-child(1)  { transition-delay: 0.00s, 0.00s, 0s, 0s; }
.services__grid .service-card:nth-child(2)  { transition-delay: 0.05s, 0.05s, 0s, 0s; }
.services__grid .service-card:nth-child(3)  { transition-delay: 0.10s, 0.10s, 0s, 0s; }
.services__grid .service-card:nth-child(4)  { transition-delay: 0.15s, 0.15s, 0s, 0s; }
.services__grid .service-card:nth-child(5)  { transition-delay: 0.20s, 0.20s, 0s, 0s; }
.services__grid .service-card:nth-child(6)  { transition-delay: 0.25s, 0.25s, 0s, 0s; }
.services__grid .service-card:nth-child(7)  { transition-delay: 0.30s, 0.30s, 0s, 0s; }
.services__grid .service-card:nth-child(8)  { transition-delay: 0.35s, 0.35s, 0s, 0s; }
.services__grid .service-card:nth-child(9)  { transition-delay: 0.40s, 0.40s, 0s, 0s; }
.services__grid .service-card:nth-child(10) { transition-delay: 0.45s, 0.45s, 0s, 0s; }
.services__grid .service-card:nth-child(11) { transition-delay: 0.50s, 0.50s, 0s, 0s; }

.service-card__icon {
  width: 46px; height: 46px;
  background: var(--orange-warm);
  color: var(--orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
  transition: background 0.22s, color 0.22s;
}
.service-card:hover .service-card__icon {
  background: var(--navy);
  color: var(--white);
}
.service-card__abbrev {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.service-card__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy);
  letter-spacing: 0.01em;
  line-height: 1.2;
}
.service-card__desc {
  font-size: 0.875rem;
  color: var(--grey-mid);
  line-height: 1.62;
  flex: 1;
}
.service-card__price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--navy);
  letter-spacing: 0.01em;
  padding-top: 0.5rem;
  border-top: 1px solid var(--grey-border);
  margin-top: auto;
}

/* Equipment hire banner */
.equip-banner {
  position: relative;
  background: var(--navy);
  border-radius: 10px;
  padding: 2.5rem;
  margin-bottom: 3rem;
  overflow: hidden;
}
.equip-banner__stripe {
  position: absolute;
  inset: 0;
  background-image: var(--stripe-dark);
  pointer-events: none;
}
.equip-banner__eyebrow {
  position: relative; z-index: 1;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.5rem;
}
.equip-banner__heading {
  position: relative; z-index: 1;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.35rem, 2.5vw, 1.8rem);
  color: var(--white);
  letter-spacing: 0.01em;
  margin-bottom: 2rem;
}
.equip-banner__grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.equip-item {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 7px;
  padding: 1.375rem 1rem;
  text-align: center;
  transition: background 0.22s, border-color 0.22s, transform 0.22s var(--ease-out);
}
.equip-item:hover {
  background: rgba(255,255,255,0.13);
  border-color: rgba(232,137,43,0.5);
  transform: translateY(-2px);
}
.equip-item__icon {
  font-size: 1.5rem;
  color: var(--orange);
  margin-bottom: 0.625rem;
}
.equip-item__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  letter-spacing: 0.01em;
  margin-bottom: 0.25rem;
  line-height: 1.3;
}
.equip-item__price {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  letter-spacing: 0.08em;
}

.services__cta-wrap { text-align: center; }

/* ============================================================
   CONTACT PAGE
============================================================ */
.contact-main {
  background: var(--white);
  padding: 5.5rem 0;
}

.contact__header {
  text-align: center;
  margin-bottom: 3.25rem;
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 4rem;
  align-items: start;
}

.contact__info-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--navy);
  letter-spacing: 0.01em;
  margin-bottom: 1.5rem;
}

.contact__info-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.contact__info-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
.contact__info-icon {
  width: 42px; height: 42px; min-width: 42px;
  background: var(--orange-warm);
  color: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9375rem;
  transition: background 0.22s, color 0.22s, transform 0.22s var(--ease-out);
}
.contact__info-item:hover .contact__info-icon {
  background: var(--navy);
  color: var(--white);
  transform: scale(1.08);
}
.contact__info-text {
  font-size: 0.9375rem;
  color: var(--grey-mid);
}
.contact__info-text a {
  font-weight: 600;
  color: var(--navy);
  transition: color 0.2s;
}
.contact__info-text a:hover { color: var(--orange); }

.contact__coverage {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--grey-light);
  border-radius: 7px;
  padding: 1rem 1.25rem;
  margin-bottom: 2rem;
}
.contact__coverage i { color: var(--orange); font-size: 1rem; }
.contact__coverage p { font-size: 0.875rem; color: var(--grey-mid); font-weight: 500; }

/* Form wrapper */
.contact__form-wrap {
  background: var(--grey-light);
  border-radius: 10px;
  padding: 2.25rem 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1.125rem;
}
.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
}
.form-label .req { color: var(--orange); margin-left: 2px; }

.form-input,
.form-select,
.form-textarea {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--grey-mid);
  background: var(--white);
  border: 1.5px solid var(--grey-border);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  width: 100%;
  min-height: 48px;
  transition: border-color 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
  appearance: none;
  -webkit-appearance: none;
}
.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='%234A4A4A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.75rem;
  cursor: pointer;
}
.form-textarea { resize: vertical; min-height: 110px; line-height: 1.6; }
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27,58,107,0.12);
}
.form-input.has-error,
.form-select.has-error,
.form-textarea.has-error {
  border-color: #bf3b2d;
  box-shadow: 0 0 0 3px rgba(191,59,45,0.1);
}
.form-error {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #bf3b2d;
  display: none;
}
.form-error.is-visible { display: block; }

.form-submit {
  width: 100%;
  background: var(--orange);
  color: var(--navy-deep);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  padding: 1rem 2rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  min-height: 52px;
  margin-top: 0.5rem;
  transition: background 0.2s var(--ease-out), transform 0.14s var(--ease-out), box-shadow 0.2s var(--ease-out);
}
.form-submit:hover {
  background: #d97b22;
  box-shadow: 0 4px 18px rgba(232,137,43,0.32);
}
.form-submit:active { transform: translateY(1px); }

.form-success { display: none; text-align: center; padding: 2.5rem 1.5rem; }
.form-success.is-visible { display: block; }
.form-success__icon {
  width: 64px; height: 64px;
  background: var(--orange);
  color: var(--navy-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto 1.25rem;
}
.form-success__heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.9rem;
  color: var(--navy);
  letter-spacing: 0.01em;
  margin-bottom: 0.625rem;
}
.form-success__body {
  font-size: 1rem;
  color: var(--grey-mid);
  line-height: 1.65;
}

/* ============================================================
   FOOTER (shared)
============================================================ */
footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 0;
  position: relative;
  overflow: hidden;
}
.footer__stripe {
  position: absolute;
  inset: 0;
  background-image: var(--stripe-dark);
  pointer-events: none;
}
.footer__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem 3.5rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
}
.footer__wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.45rem;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 0.875rem;
}
.footer__wordmark .word-road { color: var(--white); }
.footer__wordmark .word-safe { color: var(--orange); }
.footer__tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  max-width: 230px;
}
.footer__col-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--white);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.125rem;
}
.footer__links-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer__nav-link {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.58);
  transition: color 0.2s;
  text-decoration: none;
}
.footer__nav-link:hover { color: var(--orange); }
.footer__contact-list { display: flex; flex-direction: column; gap: 0.75rem; }
.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.58);
}
.footer__contact-item i { color: var(--orange); width: 14px; text-align: center; flex-shrink: 0; }
.footer__contact-item a {
  color: rgba(255,255,255,0.58);
  transition: color 0.2s;
  text-decoration: none;
}
.footer__contact-item a:hover { color: var(--orange); }
.footer__bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,0.09);
}
.footer__bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.footer__copyright { font-size: 0.8125rem; color: rgba(255,255,255,0.36); }
.footer__disclaimer { font-size: 0.75rem; color: rgba(255,255,255,0.26); }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (min-width: 769px) and (max-width: 1024px) {
  .preview-grid        { grid-template-columns: 1fr 1fr; }
  .trust-section__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-numbers__grid  { grid-template-columns: 1fr 1fr; }
  .process-steps        { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
  .equip-banner__grid  { grid-template-columns: 1fr 1fr; }
  .footer__inner       { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

  .hero__content { padding: 4.5rem 1.25rem 3.5rem; }
  .hero__scroll-hint { display: none; }

  .services-preview { padding: 4rem 0; }
  .preview-grid { grid-template-columns: 1fr; gap: 1rem; }
  .trust-section { padding: 4rem 0; }
  .trust-section__inner { grid-template-columns: 1fr; gap: 2.5rem; }

  .about-content { padding: 4rem 0; }
  .about__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-numbers { padding: 3.5rem 0; }
  .about-numbers__grid { grid-template-columns: 1fr; gap: 1rem; }
  .about-process { padding: 4rem 0; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }

  .services-main { padding: 4rem 0; }
  .services__grid { grid-template-columns: 1fr; }
  .equip-banner { padding: 2rem 1.25rem; }
  .equip-banner__grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }

  .contact-main { padding: 4rem 0; }
  .contact__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact__form-wrap { padding: 1.75rem 1.25rem; }

  .footer__inner { grid-template-columns: 1fr; gap: 2rem; padding-bottom: 2.5rem; }

  .page-banner { padding: 3.5rem 0 3rem; }
}

@media (max-width: 480px) {
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; }
  .equip-banner__grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
}

/* ============================================================
   PAGE BANNER — alternate selectors used in inner pages
============================================================ */
.page-banner__content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.page-banner__heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--white);
  line-height: 1.06;
  letter-spacing: 0.01em;
}
.page-banner__sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.62);
  margin-top: 0.6rem;
}

/* ============================================================
   ABOUT INTRO (about.html)
============================================================ */
.about-intro {
  background: var(--white);
  padding: 6rem 0;
}
.about-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-intro__text p {
  margin-bottom: 1rem;
  font-size: 1.0625rem;
  line-height: 1.78;
  color: var(--grey-mid);
}
.about-intro__text p:last-of-type { margin-bottom: 1.75rem; }
.about-intro__text .section-eyebrow { display: block; }
.about-intro__text .section-heading { margin-bottom: 1.25rem; }

.about-image-block {
  position: relative;
  border-radius: 10px;
  overflow: visible;
}
.about-image-placeholder {
  width: 100%;
  min-height: 380px;
  background: var(--grey-light);
  border: 2px dashed var(--grey-border);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
  color: var(--grey-mid);
  padding: 2rem;
}
.about-image-placeholder i {
  font-size: 3.5rem;
  color: var(--navy);
  opacity: 0.2;
}
.about-image-placeholder p { font-size: 0.9rem; }
.about-image-tag {
  position: absolute;
  bottom: -14px;
  right: -14px;
  background: var(--orange);
  color: var(--navy-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.55rem 1rem;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 4px 16px rgba(232,137,43,0.32);
}

/* ============================================================
   BIG NUMBERS STRIP (about.html)
============================================================ */
.big-numbers {
  background: var(--navy);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.big-numbers__stripe {
  position: absolute;
  inset: 0;
  background-image: var(--stripe-dark);
  pointer-events: none;
}
.big-numbers__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.big-number-card { padding: 1.5rem 1rem; }
.big-number__value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--orange);
  letter-spacing: 0.01em;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.big-number__label {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.72);
}

/* ============================================================
   PROCESS SECTION (about.html) — vertical list layout
============================================================ */
.process-section {
  background: var(--grey-light);
  padding: 6rem 0;
  position: relative;
}
.process-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--stripe-light);
  pointer-events: none;
  opacity: 0.5;
}
.process-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
/* Override the horizontal grid from about-process for this vertical list */
.process-section .process-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  max-width: 820px;
  margin: 0 auto;
}
.process-section .process-steps::before { display: none; }
.process-section .process-step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: var(--white);
  border: 1.5px solid var(--grey-border);
  border-radius: 8px;
  padding: 1.75rem 2rem;
  text-align: left;
  transition: border-color 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}
.process-section .process-step:hover {
  border-color: var(--navy);
  box-shadow: 0 10px 28px rgba(27,58,107,0.09);
  transform: translateX(5px);
}
.process-step__number {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  color: var(--orange);
  letter-spacing: 0.02em;
  line-height: 1;
  flex-shrink: 0;
  min-width: 52px;
}
.process-step__content { flex: 1; }

/* ============================================================
   CTA BAND (about.html + services.html)
============================================================ */
.cta-band {
  background: var(--navy);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-band__stripe {
  position: absolute;
  inset: 0;
  background-image: var(--stripe-dark);
  pointer-events: none;
}
.cta-band__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-band__heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--white);
  letter-spacing: 0.01em;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}
.cta-band__sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
}
.cta-band__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ============================================================
   SERVICES PAGE (services.html)
============================================================ */
.services-page {
  background: var(--white);
  padding: 5.5rem 0;
}
.services-page__header {
  text-align: center;
  margin-bottom: 3.25rem;
}
.services-page__intro {
  font-size: 0.9375rem;
  color: var(--grey-mid);
  margin-top: 0.75rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* GST notice banner on services page */
.price-notice {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  background: var(--orange-warm);
  border: 1.5px solid var(--orange);
  border-left: 5px solid var(--orange);
  border-radius: 7px;
  padding: 1rem 1.375rem;
  margin-bottom: 2.25rem;
  font-size: 0.9375rem;
  color: var(--grey-mid);
  line-height: 1.55;
}
.price-notice__icon {
  color: var(--orange);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.price-notice strong { color: var(--navy-deep); }
.price-notice a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}
.price-notice a:hover { color: var(--orange); }
/* Service card additions */
.service-card__content { flex: 1; }
.service-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.875rem;
  border-top: 1px solid var(--grey-border);
  margin-top: auto;
  gap: 0.75rem;
}
.service-card__cta {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  border: 1.5px solid var(--navy);
  border-radius: 4px;
  padding: 0.4rem 0.9rem;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.service-card__cta:hover {
  background: var(--navy);
  color: var(--white);
}

/* Equipment hire banner (services.html alternative) */
.hire-banner {
  background: var(--navy-deep);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.hire-banner__stripe {
  position: absolute;
  inset: 0;
  background-image: var(--stripe-dark);
  pointer-events: none;
}
.hire-banner__inner {
  position: relative;
  z-index: 1;
}
.hire-banner__text { margin-bottom: 2.5rem; }
.hire-banner__heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--white);
  letter-spacing: 0.01em;
  margin-bottom: 0.75rem;
  line-height: 1.1;
}
.hire-banner__desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.58);
  max-width: 560px;
}
.hire-banner__items {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.hire-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  transition: background 0.22s, border-color 0.22s;
}
.hire-item:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(232,137,43,0.4);
}
.hire-item > i {
  color: var(--orange);
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.hire-item div { flex: 1; }
.hire-item strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  letter-spacing: 0.01em;
  margin-bottom: 0.2rem;
}
.hire-item span {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

/* ============================================================
   CONTACT PAGE (contact.html)
============================================================ */
.contact-section {
  background: var(--white);
  padding: 5.5rem 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}
.contact-info__heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.7rem;
  color: var(--navy);
  letter-spacing: 0.01em;
  margin-bottom: 1rem;
}
.contact-info__body {
  font-size: 1rem;
  color: var(--grey-mid);
  line-height: 1.72;
  margin-bottom: 2rem;
}
.contact-detail-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.contact-detail__icon {
  width: 44px; height: 44px; min-width: 44px;
  background: var(--orange-warm);
  color: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background 0.22s, color 0.22s, transform 0.22s var(--ease-out);
}
.contact-detail:hover .contact-detail__icon {
  background: var(--navy);
  color: var(--white);
  transform: scale(1.08);
}
.contact-detail div strong {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.contact-detail div a,
.contact-detail div span {
  font-size: 0.9375rem;
  color: var(--grey-mid);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-detail div a:hover { color: var(--orange); }
.contact-hours {
  background: var(--grey-light);
  border-radius: 8px;
  padding: 1.375rem 1.5rem;
  margin-top: 0.5rem;
}
.contact-hours__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.875rem;
}
.contact-hours ul {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.contact-hours li {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  color: var(--grey-mid);
  gap: 1rem;
}
.contact-hours li span { color: var(--grey-mid); }
.contact-hours li strong { color: var(--navy); font-weight: 600; }

.contact-form-wrap {
  background: var(--grey-light);
  border-radius: 10px;
  padding: 2.25rem 2rem;
}
.contact-form { display: flex; flex-direction: column; gap: 0; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.125rem;
}
.form-hint {
  font-size: 0.8rem;
  color: rgba(74,74,74,0.62);
  margin-top: 0.2rem;
}
.form-submit-row { margin-top: 0.5rem; }
.form-success__alt {
  font-size: 0.875rem;
  color: var(--grey-mid);
  margin-top: 0.75rem;
}
.form-success__alt a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
}
.form-success__alt a:hover { color: var(--orange); }

/* ============================================================
   TESTIMONIALS PAGE
============================================================ */

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

/* Star display */
.review-stars {
  display: flex;
  gap: 2px;
  color: var(--orange);
  font-size: 0.85rem;
  margin-top: 0.2rem;
}

/* Avatar initials circles */
.review-avatar {
  width: 44px; height: 44px; min-width: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.review-avatar--lg {
  width: 58px; height: 58px; min-width: 58px;
  font-size: 1.1rem;
}
.av-navy   { background: var(--navy);  color: var(--white); }
.av-orange { background: var(--orange); color: var(--navy-deep); }
.av-teal   { background: #1a7a6e; color: var(--white); }

/* ── Rating summary strip ── */
.rating-strip {
  background: var(--grey-light);
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--grey-border);
  text-align: center;
}
.rating-strip__score { display: inline-flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.rating-strip__number {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 5rem;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.01em;
}
.rating-strip__stars {
  display: flex;
  gap: 5px;
  color: var(--orange);
  font-size: 1.6rem;
}
.rating-strip__count {
  font-size: 0.875rem;
  color: var(--grey-mid);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ── Featured review ── */
.featured-review {
  background: var(--navy);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.featured-review::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--stripe-dark);
  pointer-events: none;
}
.featured-review__card {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.featured-review__quote-mark {
  color: var(--orange);
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 1.25rem;
  opacity: 0.7;
}
.featured-review__quote {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.88);
  line-height: 1.82;
  font-style: italic;
  margin-bottom: 2rem;
  quotes: none;
}
.featured-review__author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  text-align: left;
}
.featured-review__name {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: 0.01em;
  margin-bottom: 0.15rem;
}
.featured-review__role {
  display: block;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.52);
  margin-bottom: 0.3rem;
}
.featured-review__author .review-stars { color: var(--orange); font-size: 0.8rem; }

/* ── Reviews grid ── */
.reviews-section {
  background: var(--white);
  padding: 5.5rem 0 6rem;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.review-card {
  background: var(--white);
  border: 1.5px solid var(--grey-border);
  border-radius: 8px;
  padding: 1.625rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), border-color 0.25s var(--ease-out);
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(27,58,107,0.10);
  border-color: var(--navy);
}
.review-card__header {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
.review-card__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  letter-spacing: 0.01em;
  line-height: 1.2;
}
.review-card__quote {
  font-size: 0.9375rem;
  color: var(--grey-mid);
  line-height: 1.72;
  flex: 1;
  quotes: none;
  font-style: italic;
  border-left: 3px solid var(--orange);
  padding-left: 1rem;
}
.review-card__date {
  font-size: 0.75rem;
  color: rgba(74,74,74,0.5);
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-top: auto;
}

/* ============================================================
   RESPONSIVE ADDITIONS — new sections
============================================================ */
@media (min-width: 769px) and (max-width: 1024px) {
  .about-intro__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-intro__image { display: none; }
  .big-numbers__inner { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .featured-review     { padding: 3.5rem 0; }

  .about-intro { padding: 4rem 0; }
  .about-intro__grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-intro__image { display: none; }
  .big-numbers { padding: 3.5rem 0; }
  .big-numbers__inner { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
  .process-section { padding: 4rem 0; }
  .process-section .process-step { padding: 1.25rem 1.25rem; gap: 1rem; }
  .cta-band { padding: 3.5rem 0; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .services-page { padding: 4rem 0; }
  .hire-banner { padding: 4rem 0; }
  .hire-banner__items { gap: 1rem; }
  .contact-section { padding: 4rem 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-form-wrap { padding: 1.75rem 1.25rem; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .big-numbers__inner { grid-template-columns: 1fr 1fr; }
  .cta-band__actions { flex-direction: column; width: 100%; }
  .cta-band__actions .btn { width: 100%; }
}
