:root {
  --teal: #008f95;
  --teal-dark: #00797d;
  --ink: #101519;
  --soft-ink: #1d2327;
  --muted: #5d686d;
  --line: #dce4e5;
  --paper: #ffffff;
  --light: #f6f8f8;
  --display: Impact, "Arial Narrow", sans-serif;
  --label: "Arial Narrow", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: #e9eeee;
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.page-shell {
  width: min(100%, 1366px);
  margin: 0 auto;
  background: var(--paper);
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
}

.top-bar {
  display: grid;
  grid-template-columns: 1fr 270px;
  min-height: 47px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-transform: none;
}

.contact-strip {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 25px;
  background: var(--teal);
}

.contact-strip span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.contact-strip svg {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  color: #fff;
  stroke-width: 2.2;
}

.emergency-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-left: 24px;
  background: var(--ink);
  font-family: var(--label);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.emergency-top svg {
  width: 15px;
  height: 15px;
  color: #fff;
  stroke-width: 2.2;
}

.emergency-top::before {
  content: "";
  position: absolute;
  left: -24px;
  top: 0;
  border-top: 47px solid var(--ink);
  border-left: 24px solid transparent;
}

.main-nav {
  display: grid;
  grid-template-columns: 245px 1fr;
  align-items: start;
  min-height: 139px;
  padding: 0 25px;
  background: #fff;
}

.brand {
  display: block;
  width: 205px;
  padding-top: 12px;
}

.brand img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 27px;
  padding-top: 52px;
  font-family: var(--label);
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.nav-links a {
  position: relative;
  white-space: nowrap;
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  padding-bottom: 18px;
  margin-bottom: -18px;
}

.dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.dropdown-trigger::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: -18px;
  z-index: 20;
  display: grid;
  min-width: 235px;
  padding: 10px 0;
  color: var(--ink);
  background: #fff;
  border-top: 3px solid var(--teal);
  box-shadow: 0 14px 28px rgba(16, 21, 25, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown-menu a,
.dropdown-menu span {
  padding: 11px 18px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: none;
}

.dropdown-menu a:hover {
  color: #fff;
  background: var(--teal);
}

.dropdown-menu span {
  color: #6a7478;
  cursor: default;
}

.nav-links a.active {
  color: var(--teal);
}

.nav-links > a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -17px;
  height: 3px;
  background: var(--teal);
}

.quote-link {
  margin-left: 4px;
  padding: 15px 25px;
  color: #fff;
  background: var(--teal);
  border-radius: 2px;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  margin-top: -18px;
  min-height: 430px;
  overflow: hidden;
  background: #050708;
}

.hero::before {
  content: "";
  position: absolute;
  top: -18%;
  bottom: -18%;
  left: 40%;
  width: 360px;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(ellipse at left center, #050708 0%, #050708 42%, rgba(5, 7, 8, 0.94) 55%, rgba(5, 7, 8, 0.52) 72%, rgba(5, 7, 8, 0) 100%);
  transform: skewX(-6deg);
}

.hero::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 58%;
  height: 58px;
  z-index: 4;
  pointer-events: none;
  background: #fff;
  border-bottom-right-radius: 100% 58px;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.hero-photo {
  position: absolute;
  inset: 0 0 0 43%;
  z-index: 0;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.02)), url("assets/hero-tech.jpg");
  background-size: cover;
  background-position: center;
}

.hero-panel {
  position: relative;
  z-index: 3;
  width: 51%;
  min-height: 430px;
  padding: 76px 48px 24px 64px;
  color: #fff;
  background: #050708;
  clip-path: none;
}

.hero-panel::after {
  content: "";
  position: absolute;
  top: -16%;
  right: -235px;
  bottom: -16%;
  width: 360px;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at left center, #050708 0%, #050708 45%, rgba(5, 7, 8, 0.9) 60%, rgba(5, 7, 8, 0.28) 78%, rgba(5, 7, 8, 0) 100%);
  transform: skewX(-6deg);
}

.hero-angle {
  position: absolute;
  top: 18px;
  right: 84px;
  width: 75px;
  height: 315px;
  background: rgba(0, 143, 149, 0.42);
  clip-path: polygon(55% 0, 100% 7%, 45% 50%, 100% 93%, 56% 100%, 0 50%);
  opacity: 0.55;
}

.hero h1,
.section-heading h2 {
  margin: 0;
  font-family: var(--display);
  letter-spacing: 0;
  text-transform: uppercase;
}

.why-panel h2 {
  margin: 0;
  font-family: var(--label);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.callout-panel h2,
.cta-panel h2 {
  margin: 0;
  font-family: var(--label);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  position: relative;
  z-index: 1;
  font-size: clamp(52px, 5.7vw, 76px);
  line-height: 0.94;
}

.hero h1 span,
.section-heading span,
.why-panel span {
  color: var(--teal);
}

.hero p {
  position: relative;
  z-index: 1;
  margin: 17px 0 23px;
  font-size: 18px;
  line-height: 1.45;
}

.hero-services {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  width: min(100%, 560px);
  margin-bottom: 29px;
}

.hero-services div {
  display: grid;
  justify-items: center;
  gap: 9px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
}

.hero-services svg {
  width: 38px;
  height: 38px;
}

.hero-actions {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-width: 225px;
  min-height: 48px;
  padding: 0 20px;
  border: 2px solid #fff;
  font-family: var(--label);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.btn svg {
  width: 24px;
  height: 24px;
}

.btn.primary {
  border-color: var(--teal);
  background: var(--teal);
}

.services,
.projects {
  padding: 24px 58px 26px;
}

.section-heading h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
  font-size: 34px;
  line-height: 1;
}

.section-heading h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 60px;
  height: 3px;
  background: var(--teal);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  margin-top: 8px;
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 274px;
  padding: 20px 19px 18px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(16, 21, 25, 0.03);
}

.service-card svg {
  width: 58px;
  height: 58px;
  margin: 0 auto 15px;
  color: var(--teal);
  stroke-width: 1.45;
}

.service-card h3 {
  margin: 0 0 13px;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.14;
}

.service-card p {
  margin: 0 auto 18px;
  color: #263238;
  font-size: 14px;
  line-height: 1.45;
}

.service-card a {
  align-self: center;
  margin-top: auto;
  width: fit-content;
}

.service-card a,
.view-all {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--teal);
  font-family: var(--label);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.service-card a span,
.view-all span {
  font-size: 19px;
}

.why-strip {
  display: grid;
  grid-template-columns: 33% 34% 33%;
  min-height: 245px;
  color: #fff;
}

.why-panel {
  position: relative;
  padding: 31px 45px 30px 64px;
  background: #0d1215;
  clip-path: polygon(0 0, 94% 0, 100% 100%, 0 100%);
  z-index: 1;
}

.why-panel h2 {
  margin-bottom: 16px;
  font-size: 26px;
  line-height: 1.1;
}

.why-panel ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
}

.why-panel li::before {
  content: "✓";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 9px;
  color: var(--teal);
  border: 1.5px solid var(--teal);
  border-radius: 50%;
  font-size: 9px;
  font-weight: 700;
  line-height: 9px;
  text-align: center;
  vertical-align: 1px;
}

.fleet-photo {
  margin-left: -24px;
  background: url("assets/fleet.jpg") center / cover no-repeat;
}

.callout-panel {
  display: grid;
  grid-template-columns: 75px 1fr;
  align-content: center;
  column-gap: 20px;
  padding: 28px 60px 28px 42px;
  background: var(--teal);
}

.phone-mark {
  grid-row: span 2;
  align-self: start;
  position: relative;
  display: grid;
  place-items: center;
  width: 80px;
  height: 72px;
  color: #fff;
}

.phone-symbol {
  width: 64px;
  height: 64px;
  stroke-width: 5;
}

.phone-mark span {
  position: absolute;
  right: 4px;
  top: 3px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: #fff;
  border: 3px solid #fff;
  border-radius: 50%;
  font-family: var(--label);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  background: var(--teal);
}

.callout-panel h2 {
  font-size: 30px;
  line-height: 1.04;
}

.callout-panel p {
  grid-column: 2;
  margin: 12px 0 18px;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.35;
}

.callout-panel a {
  grid-column: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 55px;
  width: 260px;
  color: #fff;
  background: #0d1215;
  font-size: 29px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.project-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 12px;
}

.view-all {
  padding: 9px 18px;
  border: 1px solid var(--teal);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.project-card {
  position: relative;
  min-height: 170px;
  overflow: hidden;
  background: var(--teal);
}

.project-card img {
  width: 100%;
  height: 134px;
  object-fit: cover;
}

.project-card h3 {
  display: flex;
  align-items: center;
  min-height: 50px;
  margin: 0;
  padding: 9px 13px;
  color: #fff;
  background: var(--teal);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.1;
}

.cta-strip {
  display: grid;
  grid-template-columns: 34% 33% 33%;
  min-height: 150px;
}

.cta-panel {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  align-items: center;
  padding: 25px 52px;
}

.cta-panel svg {
  width: 60px;
  height: 60px;
  stroke-width: 1.2;
}

.cta-panel h2 {
  font-size: 25px;
  line-height: 1;
}

.cta-panel p {
  margin: 9px 0 13px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
}

.cta-panel a {
  display: inline-flex;
  justify-content: center;
  min-width: 190px;
  padding: 10px 24px;
  background: #fff;
  color: var(--teal);
  font-family: var(--label);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.quote-cta {
  color: #fff;
  background: var(--teal);
}

.whatsapp-cta {
  color: #fff;
  background: #151b1f;
}

.trust-cta {
  color: var(--ink);
  background: #fff;
  border-top: 1px solid var(--line);
}

.trust-cta svg {
  color: var(--teal);
}

.service-detail-hero {
  position: relative;
  min-height: 320px;
  padding: 70px 58px 58px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(5, 7, 8, 0.96) 0%, rgba(5, 7, 8, 0.9) 48%, rgba(5, 7, 8, 0.42) 100%),
    url("assets/project-panel.jpg") center / cover no-repeat;
}

.service-detail-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 6px;
  background: var(--teal);
}

.service-detail-hero > div {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
}

.breadcrumb {
  margin: 0 0 14px;
  color: var(--teal);
  font-family: var(--label);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}

.service-detail-hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(54px, 6vw, 82px);
  line-height: 0.95;
  text-transform: uppercase;
}

.service-detail-hero h1 span {
  color: var(--teal);
}

.service-detail-hero p:not(.breadcrumb) {
  max-width: 620px;
  margin: 18px 0 26px;
  font-size: 19px;
  line-height: 1.45;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.detail-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 44px;
  padding: 45px 58px;
}

.detail-main > p {
  max-width: 820px;
  color: #263238;
  font-size: 17px;
  line-height: 1.65;
}

.detail-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.detail-feature-grid article,
.process-grid article {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(16, 21, 25, 0.03);
}

.detail-feature-grid svg {
  width: 48px;
  height: 48px;
  margin-bottom: 15px;
  color: var(--teal);
}

.detail-feature-grid h3,
.process-grid h3,
.detail-side h2 {
  margin: 0 0 10px;
  font-family: var(--label);
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
}

.detail-feature-grid p,
.process-grid p {
  margin: 0;
  color: #263238;
  font-size: 15px;
  line-height: 1.5;
}

.detail-side {
  align-self: start;
  padding: 30px;
  color: #fff;
  background: #0d1215;
  border-left: 6px solid var(--teal);
}

.detail-side ul {
  display: grid;
  gap: 12px;
  margin: 18px 0 24px;
  padding: 0;
  list-style: none;
}

.detail-side li::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 14px;
  height: 14px;
  margin-right: 10px;
  color: var(--teal);
  border: 1.5px solid var(--teal);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 800;
}

.detail-side a {
  display: inline-flex;
  justify-content: center;
  width: 100%;
  padding: 14px 18px;
  background: var(--teal);
  font-family: var(--label);
  font-weight: 800;
  text-transform: uppercase;
}

.detail-process {
  padding: 12px 58px 45px;
  background: var(--light);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 10px;
}

.process-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--teal);
  font-family: var(--display);
  font-size: 38px;
  line-height: 1;
}

.site-footer {
  border-top: 1px solid var(--line);
}

.footer-main {
  display: grid;
  grid-template-columns: 220px 1fr 1.35fr 1.2fr 1.65fr 1fr;
  gap: 30px;
  padding: 23px 58px 18px;
}

.footer-logo img {
  width: 170px;
}

.footer-main h3 {
  margin: 0 0 9px;
  font-family: var(--label);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-main a,
.footer-main p {
  display: block;
  margin: 0 0 5px;
  color: #222;
  font-size: 13px;
  line-height: 1.2;
}

.socials div {
  display: flex;
  gap: 14px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: #fff;
  background: #111;
  border-radius: 50%;
  font-family: var(--label);
  font-weight: 800;
  text-transform: uppercase;
}

.socials svg {
  width: 17px;
  height: 17px;
  stroke-width: 2;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 34px;
  padding: 0 58px;
  color: #fff;
  background: #101519;
  font-size: 12px;
}

@media (max-width: 1120px) {
  .contact-strip {
    gap: 15px;
    font-size: 12px;
  }

  .main-nav {
    grid-template-columns: 190px 1fr;
  }

  .brand {
    width: 175px;
  }

  .nav-links {
    gap: 17px;
    font-size: 13px;
  }

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

@media (max-width: 920px) {
  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 820px) {
  .top-bar {
    grid-template-columns: 1fr;
  }

  .contact-strip {
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px 16px;
  }

  .emergency-top::before {
    display: none;
  }

  .main-nav {
    grid-template-columns: 1fr auto;
    min-height: auto;
    padding: 10px 18px;
    align-items: center;
  }

  .brand {
    width: 160px;
    padding: 0;
  }

  .nav-toggle {
    display: grid;
    gap: 5px;
    width: 42px;
    padding: 8px;
    border: 0;
    background: transparent;
  }

  .nav-toggle span {
    height: 3px;
    background: var(--ink);
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: auto;
    background: #050708;
  }

  .hero::before,
  .hero::after {
    display: none;
  }

  .hero-photo {
    inset: 0;
    opacity: 0.42;
  }

  .hero-panel {
    width: 100%;
    min-height: auto;
    padding: 55px 26px 42px;
    clip-path: none;
  }

  .hero-panel::after {
    display: none;
  }

  .hero h1 {
    font-size: 56px;
  }

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

  .hero-actions,
  .project-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .services,
  .projects {
    padding: 24px 22px;
  }

  .service-grid,
  .detail-content,
  .why-strip,
  .project-grid,
  .detail-feature-grid,
  .process-grid,
  .cta-strip {
    grid-template-columns: 1fr;
  }

  .service-detail-hero,
  .detail-content,
  .detail-process {
    padding-left: 26px;
    padding-right: 26px;
  }

  .why-panel {
    clip-path: none;
    padding: 28px 26px;
  }

  .fleet-photo {
    min-height: 215px;
    margin-left: 0;
  }

  .callout-panel,
  .cta-panel {
    padding: 28px 26px;
  }

  .project-card img {
    height: 190px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    padding: 24px 26px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 26px;
  }
}

@media (max-width: 520px) {
  .contact-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero p {
    font-size: 17px;
  }

  .hero-services {
    gap: 16px 10px;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .service-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .callout-panel,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .callout-panel p,
  .callout-panel a {
    grid-column: 1;
  }

  .callout-panel a {
    width: 100%;
    font-size: 25px;
  }
}
