/* =========================================================
   TOP M MECHANICAL — Merged Site
   Modern & bold · Navy + red · Bootstrap 5
   ========================================================= */

:root {
  --navy-950: #0a1330;
  --navy-900: #1b344e;
  --navy-800: #0f1c45;
  --navy-700: #15265a;
  --navy-600: #1c3070;
  --steel: #e9edf6;
  --steel-2: #cfd5e6;
  --line: #e2e6ef;
  --ink: #0b1228;
  --ink-2: #39425e;
  --muted: #6a738d;
  --red: #c21a12;
  --red-600: #c41a12;
  --red-700: #c41a12;
  --red-50: #fdecea;
  --paper: #f6f7fb;
  --white: #ffffff;

  --shadow-sm: 0 4px 14px rgba(10, 19, 48, .07);
  --shadow: 0 14px 40px rgba(10, 19, 48, .10);
  --shadow-lg: 0 30px 80px rgba(10, 19, 48, .18);

  --rad: 14px;
  --rad-lg: 22px;

  --display: 'Barlow Condensed', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --body: 'Manrope', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

* {
  -webkit-font-smoothing: antialiased;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
}

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

a {
  color: var(--navy-700);
  text-decoration: none;
  transition: color .18s ease;
}

a:hover {
  color: var(--navy-900);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--display);
  letter-spacing: -.01em;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.05;
}

em {
  font-style: italic;
  color: var(--red);
  font-weight: 800;
}

.text-accent {
  color: var(--red) !important;
}

/* ---------- Buttons ---------- */
.btn {
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: .01em;
  padding: .85rem 1.5rem;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}

.btn-lg {
  padding: 1rem 1.75rem;
  font-size: 1rem;
}

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

.btn-accent {
  background: var(--red);
  color: #fff;
  box-shadow: 0 10px 30px rgba(226, 36, 27, .28);
}

.btn-accent:hover,
.btn-accent:focus {
  background: var(--red-600);
  color: #fff;
  box-shadow: 0 14px 40px rgba(226, 36, 27, .36);
}

.btn-outline-light {
  border: 1.5px solid rgba(255, 255, 255, .7);
  color: #fff;
  background: transparent;
}

.btn-outline-light:hover {
  background: #fff;
  color: var(--navy-900);
  border-color: #fff;
}

.btn-cta {
  padding: .6rem 1.1rem;
  font-size: .92rem;
}

/* ---------- Eyebrows / labels ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-family: var(--body);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--navy-700);
  margin-bottom: 1rem;
}

.eyebrow--light {
  color: #fff;
}

.eyebrow__bar {
  width: 28px;
  height: 2px;
  background: var(--navy-700);
  display: inline-block;
}

.eyebrow--light .eyebrow__bar {
  background: var(--red);
}

/* ---------- Top bar ---------- */
.topbar {
  background: var(--navy-950);
  color: #d6dcef;
  font-size: .82rem;
  padding: .55rem 0;
  letter-spacing: .04em;
}

.topbar .container {
  flex-wrap: wrap !important;
}

.topbar a {
  color: #fff;
}

.topbar__pulse {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .02em;
  text-transform: none;
}

.topbar__pulse .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(226, 36, 27, .7);
  animation: pulse 1.6s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(226, 36, 27, .7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(226, 36, 27, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(226, 36, 27, 0);
  }
}

.topbar__call {
  color: #fff;
  font-weight: 700;
  letter-spacing: .06em;
}

.topbar__call:hover {
  color: #ffd9d6;
}

/* ---------- Nav ---------- */
.site-nav {
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  padding: .65rem 0;
  z-index: 1030;
}

.site-nav.is-scrolled {
  background: rgba(255, 255, 255, .96);
  box-shadow: var(--shadow-sm);
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
}

.site-brand img {
  height: 44px;
  width: auto;
}

.site-brand__text {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  font-family: var(--display);
  letter-spacing: .02em;
  color: var(--navy-900);
}

.site-brand__text strong {
  font-weight: 900;
  font-size: 1.25rem;
}

.site-brand__text small {
  font-size: .72rem;
  letter-spacing: .32em;
  color: var(--navy-700);
  font-weight: 700;
}

.site-nav .nav-link {
  color: var(--ink);
  font-weight: 600;
  font-size: .95rem;
  padding: .5rem .9rem !important;
  border-radius: 999px;
  position: relative;
}

.site-nav .nav-link.active,
.site-nav .nav-link:hover {
  color: var(--navy-900);
}

.site-nav .nav-link.active::after,
.site-nav .nav-link:hover::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 4px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}

/* ---------- Hero slider ---------- */
.hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(620px, 88vh, 880px);
  color: #fff;
  overflow: hidden;
  background: var(--navy-950);
}

.hero__slider {
  position: absolute;
  inset: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.2s ease, transform 7s ease;
}

.hero__slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(7, 13, 31, .92) 0%, rgba(10, 19, 48, .78) 38%, rgba(10, 19, 48, .45) 70%, rgba(10, 19, 48, .7) 100%),
    radial-gradient(circle at 80% 20%, rgba(226, 36, 27, .18), transparent 55%);
  z-index: 1;
}

.hero__inner {
  position: relative;
  z-index: 2;
  padding-top: clamp(90px, 14vh, 160px);
  padding-bottom: clamp(120px, 16vh, 180px);
}

.hero__title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2.6rem, 7vw, 5.8rem);
  line-height: .95;
  letter-spacing: -.02em;
  text-transform: uppercase;
  margin: .8rem 0 1.25rem;
}

.hero__title-em {
  font-style: italic;
  color: #fff;
  font-weight: 800;
  display: inline-block;
  position: relative;
  padding: 0 .15em;
}

.hero__title-em::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: .06em;
  height: .18em;
  background: var(--red);
  z-index: -1;
}

.hero__lead {
  max-width: 620px;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, .82);
  margin-bottom: 2rem;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-bottom: 2.4rem;
}

.hero__badges {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: .6rem .8rem;
}

.hero__badges li {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  padding: .5rem .9rem;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
  color: #fff;
  backdrop-filter: blur(6px);
}

.hero__badges i {
  color: #ffd9d6;
}

/* slider controls */
.hero__controls {
  position: absolute;
  z-index: 3;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero__arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .35);
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .18s ease;
  backdrop-filter: blur(8px);
}

.hero__arrow:hover {
  background: var(--red);
  border-color: var(--red);
}

.hero__dots {
  display: flex;
  gap: .5rem;
}

.hero__dots button {
  width: 30px;
  height: 4px;
  background: rgba(255, 255, 255, .3);
  border: 0;
  border-radius: 2px;
  cursor: pointer;
  transition: all .25s ease;
  padding: 0;
}

.hero__dots button.is-active {
  background: var(--red);
  width: 50px;
}

.hero__sideLabel {
  position: absolute;
  right: 32px;
  top: 50%;
  transform: rotate(90deg) translateY(-100%);
  transform-origin: right top;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--body);
  font-size: .7rem;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
}

.hero__sideLabel-line {
  width: 60px;
  height: 1px;
  background: rgba(255, 255, 255, .4);
  display: inline-block;
}

/* ---------- Stats strip ---------- */
.stats {
  background: var(--navy-900);
  color: #fff;
  padding: 2.6rem 0;
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.stats__item {
  position: relative;
}

.stats__item+.stats__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12%;
  bottom: 12%;
  width: 1px;
  background: rgba(255, 255, 255, .12);
}

@media (max-width: 767.98px) {
  .stats__item+.stats__item::before {
    display: none;
  }
}

.stats__num {
  font-family: var(--display);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.02em;
}

.stats__label {
  font-size: .82rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .6);
  font-weight: 600;
  margin-top: .35rem;
}

/* ---------- Sections base ---------- */
.section {
  padding: clamp(72px, 9vw, 120px) 0;
}

.section__title {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -.015em;
  text-transform: none;
  margin: 0 0 1rem;
}

.section__title em {
  color: var(--red);
  font-style: italic;
  font-weight: 900;
}

.section__title--light {
  color: #fff;
}

.section__lead {
  font-size: 1.05rem;
  color: var(--muted);
  margin: 0;
  text-wrap: pretty;
}

.section__lead--light {
  color: rgba(255, 255, 255, .78);
}

/* ---------- Services ---------- */
.section--services {
  background: var(--paper);
}

.svc {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--rad-lg);
  padding: 2rem 1.85rem 1.75rem;
  height: 100%;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.svc:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: transparent;
}

.svc__num {
  font-family: var(--display);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--muted);
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
}

.svc__icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
  color: #fff;
  border-radius: 16px;
  font-size: 1.45rem;
  margin-bottom: 1.1rem;
  box-shadow: 0 12px 30px rgba(10, 19, 48, .18);
}

.svc--accent .svc__icon {
  background: linear-gradient(135deg, var(--red), var(--red-700));
  box-shadow: 0 12px 30px rgba(226, 36, 27, .25);
}

.svc h3 {
  font-family: var(--body);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -.005em;
  margin: 0 0 .55rem;
}

.svc p {
  color: var(--muted);
  font-size: .96rem;
  margin: 0 0 1.1rem;
}

.svc__tags {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}

.svc__tags li {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--paper);
  color: var(--navy-700);
  border: 1px solid var(--line);
  padding: .35rem .65rem;
  border-radius: 999px;
}

.svc--accent {
  background: linear-gradient(135deg, #fff 0%, #fff 60%, #f3f5fb 100%);
  border-color: #dee3f1;
}

.svc--dark {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  color: #fff;
  border-color: transparent;
}

.svc--dark h3 {
  color: #fff;
}

.svc--dark p {
  color: rgba(255, 255, 255, .72);
}

.svc--dark .svc__num {
  color: rgba(255, 255, 255, .4);
}

.svc--dark .svc__tags li {
  background: rgba(255, 255, 255, .08);
  color: #fff;
  border-color: rgba(255, 255, 255, .16);
}

/* ---------- Emergency ---------- */
/* ---------- Emergency siren light ---------- */
.em-flash-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: #dc1e1e;
  animation: em-flashBar 0.9s ease-in-out infinite;
  z-index: 2;
}
@keyframes em-flashBar {
  0%, 100% { opacity: 0.3; }
  50%       { opacity: 1; box-shadow: 0 0 10px 2px rgba(220,30,30,0.7); }
}

.em-ambient-flash {
  position: absolute;
  inset: 0;
  background: rgba(220,30,30,0.06);
  animation: em-ambientFlash 0.9s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
@keyframes em-ambientFlash {
  0%, 100% { opacity: 0; }
  50%       { opacity: 1; }
}

.em-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: .5rem;
}

.em-siren-wrap {
  position: relative;
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}
.em-siren-base {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 35%, #ff6b6b, #c0392b 55%, #7b1010);
  box-shadow: 0 0 0 3px rgba(192,57,43,0.4), 0 0 20px rgba(220,30,30,0.6), 0 0 50px rgba(220,30,30,0.25);
  animation: em-sirenPulse 0.9s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.em-siren-inner {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff8c0, #ffd700 50%, #e67e00);
  box-shadow: 0 0 10px rgba(255,200,0,0.9);
  animation: em-innerFlash 0.9s ease-in-out infinite;
}
.em-siren-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(220,50,50,0.5);
  animation: em-ringPulse 0.9s ease-in-out infinite;
}
.em-siren-ring2 {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1.5px solid rgba(220,50,50,0.25);
  animation: em-ringPulse2 0.9s ease-in-out infinite;
}
@keyframes em-sirenPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(192,57,43,0.4), 0 0 20px rgba(220,30,30,0.6), 0 0 50px rgba(220,30,30,0.25); }
  50%       { box-shadow: 0 0 0 5px rgba(192,57,43,0.6), 0 0 35px rgba(220,30,30,0.9), 0 0 80px rgba(220,30,30,0.45); }
}
@keyframes em-innerFlash {
  0%, 100% { opacity: 0.7; }
  50%       { opacity: 1; box-shadow: 0 0 18px rgba(255,220,0,1); }
}
@keyframes em-ringPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50%       { transform: scale(1.15); opacity: 0; }
}
@keyframes em-ringPulse2 {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50%       { transform: scale(1.2); opacity: 0; }
}

/* Sweep glow behind section content */
.emergency::after {
  content: '';
  position: absolute;
  top: -60px;
  left: 40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(220,30,30,0.3) 0%, transparent 70%);
  animation: em-sweepGlow 1.8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
@keyframes em-sweepGlow {
  0%   { opacity: 0.2; transform: translateX(0px) scale(1); }
  25%  { opacity: 1;   transform: translateX(30px) scale(1.1); }
  50%  { opacity: 0.15; transform: translateX(60px) scale(0.95); }
  75%  { opacity: 0.9; transform: translateX(20px) scale(1.05); }
  100% { opacity: 0.2; transform: translateX(0px) scale(1); }
}

/* Pulse glow on Call button */
.emergency__cta .btn-accent {
  animation: em-btnGlow 1.8s ease-in-out infinite;
}
@keyframes em-btnGlow {
  0%, 100% { box-shadow: 0 12px 30px rgba(226,36,27,0.3); }
  50%       { box-shadow: 0 12px 30px rgba(226,36,27,0.3), 0 0 20px rgba(226,36,27,0.5); }
}

.emergency {
  background:
    linear-gradient(115deg, var(--navy-950) 0%, var(--navy-900) 55%, var(--navy-800) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
  border-top: 3px solid var(--red);
}

.emergency::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 0%, rgba(226, 36, 27, .22), transparent 45%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, .03) 0 2px, transparent 2px 18px);
}

.emergency__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 2rem;
  align-items: center;
  padding: clamp(60px, 7vw, 90px) 0;
}

@media (max-width: 991.98px) {
  .emergency__inner {
    grid-template-columns: 1fr;
  }
}

.emergency h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #fff;
  margin: .4rem 0 1rem;
  line-height: 1.05;
}

.emergency h2 .text-accent {
  color: var(--red) !important;
  background: transparent;
  padding: 0;
  border-radius: 0;
}

.emergency p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .9);
  max-width: 560px;
  margin-bottom: 1.6rem;
}

.emergency__cta {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.emergency__cta .btn-accent {
  background: var(--red);
  color: #fff;
  box-shadow: 0 12px 30px rgba(226, 36, 27, .3);
}

.emergency__cta .btn-accent:hover {
  background: var(--red-600);
}

.emergency__van {
  position: relative;
  text-align: center;
}

.emergency__van img {
  max-width: 540px;
  width: 100%;
  margin: 0 auto;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, .35));
}

/* ---------- Industries ---------- */
.section--industries {
  background: #fff;
}

.ind {
  background: #fff;
  border-radius: var(--rad-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}

.ind:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.ind__media {
  height: 280px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.ind__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 19, 48, .55));
}

.ind__chip {
  position: absolute;
  top: 18px;
  left: 18px;
  background: #fff;
  color: var(--navy-900);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .45rem .85rem;
  border-radius: 999px;
  z-index: 2;
}

.ind__chip--accent {
  background: var(--navy-900);
  color: #fff;
}

.ind__body {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ind__body h3 {
  font-family: var(--body);
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 0 1.1rem;
}

.ind__body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .55rem 1rem;
}

@media (max-width: 575.98px) {
  .ind__body ul {
    grid-template-columns: 1fr;
  }
}

.ind__body ul li {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: .94rem;
  color: var(--ink-2);
}

.ind__body ul li i {
  color: var(--navy-700);
  margin-top: .2rem;
}

.ind--dark .ind__body ul li i {
  color: #8aa1e0;
}

.ind--dark {
  background: var(--navy-900);
  color: #fff;
  border-color: transparent;
}

.ind--dark .ind__body h3 {
  color: #fff;
}

.ind--dark .ind__body ul li {
  color: rgba(255, 255, 255, .78);
}

.link-arrow {
  margin-top: auto;
  font-weight: 700;
  color: var(--navy-900);
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  letter-spacing: .02em;
  border-bottom: 2px solid var(--red);
  align-self: flex-start;
  padding-bottom: 2px;
}

.link-arrow:hover {
  color: var(--red);
  gap: .6rem;
}

.ind--dark .link-arrow {
  color: #fff;
  border-bottom-color: var(--red);
}

.ind--dark .link-arrow:hover {
  color: #ffd9d6;
}

/* ---------- Why us ---------- */
.section--why {
  background: var(--paper);
}

.why__media {
  position: relative;
  border-radius: var(--rad-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  isolation: isolate;
}

.why__media img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  display: block;
}

.why__badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  background: var(--navy-900);
  color: #fff;
  border-radius: 18px;
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  gap: .85rem;
  box-shadow: var(--shadow-lg);
  border-left: 3px solid var(--red);
}

.why__badge-num {
  font-family: var(--display);
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
}

.why__badge-text {
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
}

.why__rating {
  position: absolute;
  right: 24px;
  top: 24px;
  background: #fff;
  border-radius: 16px;
  padding: .85rem 1.1rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: .2rem;
}

.why__rating-stars {
  color: #f5b400;
  letter-spacing: .1em;
}

.why__rating-text {
  font-size: .78rem;
  color: var(--muted);
}

.why__rating-text strong {
  color: var(--ink);
}

.why__grid {
  margin-top: .5rem;
}

.why__item {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  height: 100%;
}

.why__item i {
  font-size: 1.5rem;
  color: var(--navy-700);
  background: #eef1f8;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why__item strong {
  display: block;
  font-family: var(--body);
  font-weight: 700;
  font-size: 1rem;
}

.why__item span {
  font-size: .85rem;
  color: var(--muted);
  display: block;
}

/* ---------- Maintenance plans ---------- */
.section--plans {
  background:
    radial-gradient(circle at 0% 0%, rgba(226, 36, 27, .18), transparent 40%),
    radial-gradient(circle at 100% 100%, rgba(28, 48, 112, .5), transparent 50%),
    var(--navy-950);
  color: #fff;
}

.plan {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: var(--rad-lg);
  padding: 2rem 1.85rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.plan:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, .25);
  background: rgba(255, 255, 255, .06);
}

.plan--featured {
  background: linear-gradient(180deg, rgba(226, 36, 27, .18), rgba(226, 36, 27, .04) 60%, rgba(255, 255, 255, .05));
  border-color: rgba(226, 36, 27, .5);
}

.plan__ribbon {
  position: absolute;
  top: -12px;
  right: 22px;
  background: var(--red);
  color: #fff;
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 700;
  padding: .4rem .8rem;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(226, 36, 27, .4);
}

.plan__head {
  margin-bottom: 1.2rem;
}

.plan__tag {
  display: inline-block;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255, 255, 255, .7);
  margin-bottom: .5rem;
}

.plan--featured .plan__tag {
  color: var(--red);
}

.plan__head h3 {
  font-family: var(--body);
  color: #fff;
  font-size: 1.6rem;
  font-weight: 800;
  margin: 0 0 .25rem;
}

.plan__head p {
  color: rgba(255, 255, 255, .65);
  font-size: .92rem;
  margin: 0;
}

.plan__features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.6rem;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}

.plan__features li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  color: rgba(255, 255, 255, .85);
  font-size: .95rem;
  border-top: 1px dashed rgba(255, 255, 255, .1);
  padding-top: .55rem;
}

.plan__features li:first-child {
  border-top: 0;
  padding-top: 0;
}

.plan__features i {
  color: #8aa1e0;
  margin-top: .2rem;
}

.plan--featured .plan__features i {
  color: var(--red);
}

.plan .btn {
  margin-top: auto;
}

/* ---------- Reviews ---------- */
.section--reviews {
  background: #fff;
}

.review {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--rad-lg);
  padding: 2rem 1.85rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform .25s ease, box-shadow .25s ease;
}

.review:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.review__stars {
  color: #f5b400;
  letter-spacing: .15em;
  font-size: 1.05rem;
}

.review p {
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.55;
  text-wrap: pretty;
  margin: 0;
}

.review__person {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-top: auto;
}

.review__avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy-900);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  letter-spacing: .05em;
  font-size: .92rem;
}

.review__person strong {
  display: block;
  font-weight: 700;
}

.review__person span {
  display: block;
  font-size: .82rem;
  color: var(--muted);
}

/* ---------- Contact ---------- */
.section--contact {
  background: var(--paper);
}

.contact__list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: .85rem;
}

.contact__list li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact__list li i {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #eef1f8;
  color: var(--navy-700);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact__list li:nth-child(2) i {
  background: var(--red-50);
  color: var(--red);
}

.contact__list span {
  display: block;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: .15rem;
}

.contact__list strong,
.contact__list a {
  font-weight: 700;
  color: var(--ink);
}

.contact__list a:hover {
  color: var(--navy-700);
}

.contact__social {
  display: flex;
  gap: .5rem;
}

.contact__social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy-900);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease;
}

.contact__social a:hover {
  background: var(--navy-700);
  color: #fff;
}

.contact__form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--rad-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.contact__form h3 {
  font-family: var(--body);
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0 0 1.25rem;
}

.contact__form .form-label {
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .04em;
  color: var(--ink-2);
  margin-bottom: .35rem;
}

.contact__form .form-control,
.contact__form .form-select {
  border-radius: 10px;
  border: 1px solid var(--line);
  padding: .75rem .9rem;
  font-size: .95rem;
  background: var(--paper);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.contact__form .form-control:focus,
.contact__form .form-select:focus {
  border-color: var(--navy-700);
  box-shadow: 0 0 0 4px rgba(28, 48, 112, .14);
  background: #fff;
}

.contact__success {
  margin-top: 1rem;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
  padding: 1rem 1.1rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: .85rem;
}

.contact__success i {
  font-size: 1.5rem;
}

.contact__success a {
  color: #065f46;
  text-decoration: underline;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--navy-950);
  color: rgba(255, 255, 255, .7);
  padding: 4rem 0 2rem;
}

.footer h6 {
  color: #fff;
  font-family: var(--body);
  font-weight: 800;
  font-size: .85rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.footer ul a {
  color: rgba(255, 255, 255, .65);
}

.footer ul a:hover {
  color: #fff;
}

.footer p {
  color: rgba(255, 255, 255, .7);
  font-size: .93rem;
}

.footer__strap {
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  margin-top: 1rem;
}

.site-brand--footer img {
  height: 56px;
  margin-bottom: 1rem;
}

.footer__call {
  display: block;
  font-family: var(--display);
  color: #fff;
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: .02em;
  margin: .25rem 0 .5rem;
}

.footer__call:hover {
  color: #ffd9d6;
}

.footer__meta {
  font-size: .85rem;
  color: rgba(255, 255, 255, .55);
}

.footer__bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
  font-size: .78rem;
  color: rgba(255, 255, 255, .5);
}

.footer__bottom a {
  color: rgba(255, 255, 255, .7);
}

.footer__bottom a:hover {
  color: #fff;
}

/* ---------- Floating buttons ---------- */
.floating {
  position: fixed;
  right: 18px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  z-index: 1040;
}

.floating__btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  box-shadow: var(--shadow);
  transition: transform .15s ease, box-shadow .2s ease;
}

.floating__btn:hover {
  transform: translateY(-2px);
  color: #fff;
}

.floating__btn--call {
  background: var(--red);
}

.floating__btn--wa {
  background: #25d366;
}

/* ---------- Reveal-on-scroll ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive nudges ---------- */
@media (max-width: 991.98px) {
  .site-nav {
    background: rgba(255, 255, 255, .97);
  }

  .site-nav .navbar-collapse {
    padding-top: .8rem;
  }

  .site-nav .nav-link {
    padding: .65rem .25rem !important;
  }

  .hero__sideLabel {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .topbar {
    font-size: .74rem;
  }

  .topbar__pulse {
    font-size: .66rem;
  }

  .hero__cta .btn {
    width: 100%;
    justify-content: center;
  }
}




/* ─── VAN ROAD ANIMATION ─── */
.van-road-wrapper {
  position: relative;
  width: 100%;
  height: 90px;
  background-color: #f6f7fb;
}

/* road */
.van-road {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 36px;
  background: #0d1829;
  border-top: 2px solid rgba(91, 141, 217, 0.35);
}

/* dashed centre line */
.van-road::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 3px;
  background: repeating-linear-gradient(90deg,
      rgba(200, 212, 232, 0.25) 0px,
      rgba(200, 212, 232, 0.25) 30px,
      transparent 30px,
      transparent 60px);
  transform: translateY(-50%);
  animation: roadScroll 1.2s linear infinite;
}

@keyframes roadScroll {
  from {
    background-position: 0 0;
  }

  to {
    background-position: -60px 0;
  }
}

/* van SVG container */
.van-anim {
  position: absolute;
  z-index: 999;
  bottom: 20px;
  left: 110%;
  width: 160px;
  animation: vanDrive 12s linear infinite;
}

@keyframes vanDrive {
  0% {
    left: 110%;
  }

  100% {
    left: -20%;
  }
}

/* exhaust puffs */
.exhaust-puff {
  position: absolute;
  bottom: 52px;
  border-radius: 50%;
  background: rgba(200, 212, 232, 0.15);
  animation: puffFade 1.6s ease-out infinite;
}

.exhaust-puff:nth-child(1) {
  width: 14px;
  height: 14px;
  animation-delay: 0s;
}

.exhaust-puff:nth-child(2) {
  width: 10px;
  height: 10px;
  animation-delay: 0.55s;
}

.exhaust-puff:nth-child(3) {
  width: 7px;
  height: 7px;
  animation-delay: 1.1s;
}

@keyframes puffFade {
  0% {
    opacity: 0.8;
    transform: translateX(0) translateY(0) scale(1);
  }

  100% {
    opacity: 0;
    transform: translateX(-30px) translateY(-20px) scale(2.5);
  }
}

/* road edge glow */
.van-road-wrapper::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(91, 141, 217, 0.4), transparent);
}