:root {
  --navy: #0b2447;
  --navy-deep: #071c38;
  --navy-footer: #071a34;
  --red: #c51f2e;
  --red-dark: #a91523;
  --white: #ffffff;
  --light: #f4f7fb;
  --text: #1e293b;
  --muted: #64748b;
  --border: #e5eaf1;
  --shadow: 0 16px 40px rgba(11, 36, 71, 0.12);
}

@view-transition {
  navigation: auto;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1200px, 92%);
  margin: auto;
}

section {
  padding: 76px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 24px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn-red {
  background: var(--red);
  color: var(--white);
}

.btn-red:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

.btn-outline {
  border: 1px solid rgba(255,255,255,0.5);
  color: var(--white);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
}

/* Header */

.top-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  font-size: 12px;
  color: #172033;
}

.top-strip-inner {
  min-height: 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 20px;
}

.top-strip-inner > :nth-child(2) {
  justify-self: center;
}

.top-linkedin {
  justify-self: end;
  color: #0a66c2;
}

.top-linkedin svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.main-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
}

.header-inner {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 13.5px;
  font-weight: 700;
  color: #111827;
}

.nav-menu a {
  position: relative;
  padding: 24px 0;
  transition: color 0.2s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--red);
}

.nav-menu a.active::after,
.nav-menu a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 17px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}

.header-cta {
  background: var(--red);
  color: var(--white);
  padding: 11px 18px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 800;
}

.header-cta:hover {
  background: var(--red-dark);
}

.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 6px;
  cursor: pointer;
}

.menu-btn span,
.menu-btn span::before,
.menu-btn span::after {
  width: 20px;
  height: 2px;
  background: var(--navy);
  display: block;
  position: relative;
  margin: auto;
  content: "";
}

.menu-btn span::before {
  position: absolute;
  top: -7px;
}

.menu-btn span::after {
  position: absolute;
  top: 7px;
}

.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--navy-deep);
  z-index: 300;
  display: none;
  flex-direction: column;
  padding: 24px;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.mobile-nav-top strong {
  color: var(--white);
  font-size: 20px;
}

.mobile-close {
  background: transparent;
  color: var(--white);
  border: 0;
  font-size: 34px;
  cursor: pointer;
}

.mobile-nav a {
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

/* Home hero */

.hero {
  background: var(--navy-deep);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 0;
}

.hero-photo {
  position: absolute;
  inset: 0 0 0 auto;
  width: 58%;
  background: url("../hero-truck.png") center/cover no-repeat;
  clip-path: polygon(26% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(7,28,56,0.9), rgba(7,28,56,0.1));
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 95px 0 80px;
  max-width: 590px;
}

.hero h1 {
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 22px;
}

.hero-sub {
  font-size: 18px;
  color: #cbd5e1;
  max-width: 460px;
  margin-bottom: 34px;
}

.stats-band {
  position: relative;
  z-index: 2;
  background: rgba(7, 28, 56, 0.75);
  border-top: 1px solid rgba(255,255,255,0.12);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-cell {
  text-align: center;
  padding: 30px 16px;
  position: relative;
}

.stat-cell + .stat-cell::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22%;
  bottom: 22%;
  width: 1px;
  background: rgba(255,255,255,0.18);
}

.stat-cell strong {
  display: block;
  font-size: 30px;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 5px;
}

.stat-cell span {
  display: block;
  color: #b9c5d6;
  font-size: 13px;
}

/* Common headings */

.eyebrow {
  display: block;
  text-align: center;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.section-heading {
  text-align: center;
  margin-bottom: 42px;
}

.section-heading h2 {
  color: var(--navy);
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.8px;
  display: inline-block;
  position: relative;
  padding-bottom: 14px;
}

.section-heading h2::after {
  content: "";
  position: absolute;
  width: 54px;
  height: 3px;
  background: var(--red);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* Cards */

.vertical-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.v-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  min-height: 165px;
  padding: 28px 18px;
  text-align: center;
  transition: 0.2s ease;
}

.v-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(197,31,46,0.3);
}

.service-card {
  padding: 0 18px 24px;
  overflow: hidden;
  text-align: left;
}

.service-card .v-card-image {
  display: block;
  width: calc(100% + 36px);
  margin: 0 -18px 20px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.service-card h3::after {
  margin-left: 0;
}

.service-card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.65;
}

.v-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 15px;
  color: var(--navy);
}

.v-card h3 {
  color: var(--navy);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.3;
}

.v-card h3::after {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background: var(--red);
  margin: 10px auto 0;
}

/* Partner */

.partners-section {
  background: var(--light);
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.partner-tile {
  height: 86px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  font-size: 22px;
  color: var(--navy);
  font-weight: 900;
}

.partner-tile img {
  max-height: 52px;
  width: auto;
}

/* CTA */

.cta-band {
  background: var(--navy-deep);
  color: var(--white);
  padding: 0;
  overflow: hidden;
}

.cta-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  min-height: 260px;
}

.cta-text {
  padding: 56px 40px 56px max(calc((100vw - 1200px) / 2), 4%);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-text h2 {
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.15;
  margin-bottom: 10px;
}

.cta-text p {
  color: #cbd5e1;
  max-width: 460px;
  margin-bottom: 26px;
}

.cta-photo {
  background: url("../handshake.png") center/cover no-repeat;
  position: relative;
}

.cta-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,28,56,0.6), transparent);
}

/* Page hero */

.page-hero {
  background: var(--navy-deep);
  color: var(--white);
  position: relative;
  padding: 72px 0;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,28,56,0.95), rgba(7,28,56,0.5));
  z-index: 1;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.1;
  margin-bottom: 12px;
}

.page-hero p {
  color: #cbd5e1;
  max-width: 520px;
}

.about-bg {
  background: url("../about-hero.png") center/cover no-repeat;
}

.business-bg {
  background: url("../hero-truck.png") center/cover no-repeat;
}

.infra-bg {
  background: url("../hero-truck.png") center/cover no-repeat;
}

.career-bg {
  background: url("../about-hero.png") center/cover no-repeat;
}
.career-intro {
  padding: 56px 0;
  background: #f7f9fc;
  border-bottom: 1px solid var(--border);
}

.career-intro-inner {
  max-width: 820px;
  text-align: center;
}

.career-intro h2 {
  color: var(--navy);
  font-size: 34px;
  line-height: 1.15;
  margin-bottom: 18px;
}

.career-intro-copy > p:first-child {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
  max-width: 760px;
  margin-inline: auto;
}

.career-email {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  align-items: baseline;
  justify-content: center;
  margin-top: 24px;
}

.career-email span {
  color: var(--navy);
  font-weight: 700;
}

.career-email a {
  color: var(--red);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.enquiry-bg {
  background: url("../handshake.png") center/cover no-repeat;
}

.contact-bg {
  background: url("../handshake.png") center/cover no-repeat;
}

.breadcrumb {
  font-size: 13px;
  color: #dbe5f2;
  margin-top: 18px;
}

/* Content layouts */

.two-col {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 44px;
  align-items: center;
}

.contact-office-layout {
  align-items: start;
}
.branch-office-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.branch-office-grid .v-card {
  flex: 0 1 calc((100% - 54px) / 4);
}

.content-block h2 {
  color: var(--navy);
  font-size: 34px;
  line-height: 1.15;
  margin-bottom: 18px;
}

.content-block p {
  color: var(--muted);
  margin-bottom: 16px;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.image-grid img,
.feature-img {
  border-radius: 8px;
  min-height: 160px;
  object-fit: cover;
  width: 100%;
}

.value-strip {
  background: var(--white);
  border-top: 1px solid var(--border);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.value-item {
  border: 1px solid var(--border);
  padding: 24px;
  border-radius: 8px;
}

.value-item h3 {
  color: var(--navy);
  margin-bottom: 8px;
}

.value-item p {
  color: var(--muted);
  font-size: 14px;
}

.infra-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.infra-card {
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 10px 24px rgba(11,36,71,0.08);
}

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

.infra-card h3 {
  padding: 18px 18px 8px;
  color: var(--navy);
  font-size: 16px;
}

.infra-card p {
  padding: 0 18px 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}
.gallery-section {
  background: #f7f9fc;
}

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

.gallery-item {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--white);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.035);
}

.gallery-item:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
}
.gallery-pagination {
  display: grid;
  grid-template-columns: minmax(0, 140px) 1fr minmax(0, 140px);
  gap: 18px;
  align-items: center;
  margin-top: 32px;
}

.gallery-page-btn {
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid var(--navy);
  border-radius: 5px;
  background: var(--white);
  color: var(--navy);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.gallery-page-btn:last-child {
  justify-self: end;
}

.gallery-page-btn:hover:not(:disabled),
.gallery-page-btn:focus-visible {
  background: var(--navy);
  color: var(--white);
}

.gallery-page-btn:disabled {
  cursor: not-allowed;
  opacity: 0.4;
}

#galleryStatus {
  justify-self: center;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  gap: 14px;
}
.form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.form-status {
  min-height: 24px;
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.form-status.is-success {
  color: #16794b;
}

.form-status.is-error {
  color: var(--red);
}

.form-grid button:disabled {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

input,
textarea,
select {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--border);
  border-radius: 5px;
  font-family: inherit;
  font-size: 14px;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.map-embed {
  display: block;
  width: 100%;
  min-height: 360px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
}
.map-img {
  border-radius: 8px;
  border: 1px solid var(--border);
  width: 100%;
  min-height: 330px;
  object-fit: cover;
}

/* Footer */

footer {
  background: var(--navy-footer);
  color: #c4cfdd;
  padding-top: 56px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.1fr 1fr 1.5fr;
  gap: 34px;
  padding-bottom: 44px;
}

.footer-brand img {
  height: 42px;
  margin-bottom: 16px;
}

.footer-col p {
  color: #9fb0c5;
  font-size: 13px;
}

.footer-col h4 {
  color: var(--white);
  margin-bottom: 16px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13.5px;
  color: #9fb0c5;
}

.footer-col > p {
  max-width: 270px;
  line-height: 1.75;
}

.contact-list li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
}

.contact-list svg {
  width: 16px;
  height: 16px;
  stroke: var(--red);
  flex-shrink: 0;
  margin-top: 3px;
}

.contact-list a:hover {
  color: var(--white);
}

.social-row {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-row a {
  width: 33px;
  height: 33px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 180ms ease;
}

.social-row a:hover {
  background: var(--red);
}

.social-row svg {
  width: 14px;
  height: 14px;
  fill: var(--white);
}
.footer-links a:hover {
  color: var(--white);
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-size: 13.5px;
  color: #9fb0c5;
}

.copyright {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: #8fa1b8;
}

/* Floating buttons */

.floating-buttons {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  display: flex;
  flex-direction: column;
}

.floating-buttons a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--white);
  font-weight: 900;
  font-size: 12px;
}


.f-call {
  background: var(--navy);
}

/* Responsive */

@media (max-width: 1024px) {
  .branch-office-grid .v-card {
    flex-basis: calc((100% - 18px) / 2);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .top-strip {
    display: none;
  }

  .nav-menu,
  .header-cta {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .hero-photo {
    position: relative;
    width: 100%;
    height: 300px;
    clip-path: none;
  }

  .hero {
    display: flex;
    flex-direction: column;
  }

  .hero .container {
    order: 1;
  }

  .hero-photo {
    order: 2;
  }

  .stats-band {
    order: 3;
  }

  .hero-content {
    padding: 60px 0 46px;
    max-width: 100%;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-cell:nth-child(3)::before {
    display: none;
  }

  .vertical-grid,
  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partner-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .two-col,

  .career-intro-inner,
  .cta-inner {
    grid-template-columns: 1fr;
  }

  .cta-photo {
    min-height: 220px;
  }

  .infra-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .branch-office-grid .v-card {
    flex-basis: 100%;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .brand img {
    height: 44px;
  }

  section {
    padding: 58px 0;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-photo {
    height: 220px;
  }

  .stats-grid,
  .vertical-grid,
  .value-grid,
  .partner-grid,
  .infra-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stat-cell + .stat-cell::before {
    display: none;
  }

  .partner-tile {
    height: 76px;
  }

  .cta-text {
    padding: 48px 4%;
  }

  .floating-buttons {
    top: auto;
    bottom: 18px;
    left: 18px;
    transform: none;
    flex-direction: row;
    border-radius: 8px;
    overflow: hidden;
  }
}