/* =====================================================================
   DESTINO ENGINEERING & CONTRACTING — GLOBAL STYLESHEET
   ===================================================================== */

/* === ROOT VARIABLES === */
:root {
  /* Colors */
  --cta-bg: linear-gradient(135deg, rgb(10, 31, 68) 0%, rgb(27, 79, 156) 100%);
  --color-navy: #0d1b2e;
  --color-navy-light: #162236;
  --color-orange: #f5841f;
  --color-orange-dark: #e07318;
  --color-white: #ffffff;
  --color-gray-light: #f5f6f7;
  --color-gray-mid: #e0e0e0;
  --color-text-dark: #1a1a2e;
  --color-text-muted: #6b7280;
  --color-navy-scroll: rgb(
    10,
    31,
    68
  ); /* solid navbar bg after scroll (home) */

  /* Typography */
  --nav-h: 78px; /* navbar height — used for transparent-header overlap */
  --font-heading: "Montserrat", sans-serif;
  --font-body: "Open Sans", sans-serif;

  /* Spacing */
  --section-pad: 80px;
  --container-max: 1480px;
  --container-pad: 24px;

  /* Effects */
  --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --card-shadow-hover: 0 12px 32px rgba(0, 0, 0, 0.16);
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text-dark);
  background: var(--color-white);
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

ul {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-text-dark);
}

h1 {
  font-size: 64px;
}
h2 {
  font-size: 42px;
}
h3 {
  font-size: 24px;
}
h4 {
  font-size: 18px;
}

p {
  color: var(--color-text-muted);
}

section {
  position: relative;
}

/* === LAYOUT HELPERS === */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.section {
  padding: var(--section-pad) 0;
}

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-orange);
  margin-bottom: 14px;
}

.section-head {
  margin-bottom: 50px;
}

.bg-navy {
  background: var(--color-navy);
}
.bg-navy .section-head h2,
.bg-navy h2,
.bg-navy h3,
.bg-navy h4 {
  color: var(--color-white);
}
.bg-navy p {
  color: rgba(255, 255, 255, 0.7);
}

.bg-gray {
  background: var(--color-gray-light);
}

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

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--color-orange);
  color: var(--color-white);
  border-radius: 4px;
  padding: 12px 28px;
}
.btn-primary:hover {
  background: var(--color-orange-dark);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--color-white);
  color: var(--color-white);
  border-radius: 4px;
  padding: 10px 26px;
}
.btn-outline:hover {
  background: var(--color-white);
  color: var(--color-navy);
}

.btn-outline-dark {
  background: transparent;
  border: 2px solid var(--color-navy);
  color: var(--color-navy);
  border-radius: 4px;
  padding: 10px 26px;
}
.btn-outline-dark:hover {
  background: var(--color-navy);
  color: var(--color-white);
}

.btn-dark {
  background: var(--color-navy);
  color: var(--color-white);
  border-radius: 4px;
  padding: 12px 28px;
}
.btn-dark:hover {
  background: var(--color-orange);
}

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

/* === CARDS === */
.card {
  background: var(--color-white);
  border-radius: 10px;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
}

/* === FILTER PILLS === */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 44px;
}

.filter-pill {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  padding: 9px 22px;
  border-radius: 25px;
  background: var(--color-white);
  border: 1.5px solid var(--color-gray-mid);
  color: var(--color-text-dark);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.filter-pill:hover {
  background: #fff8f2;
}
.filter-pill.active {
  background: var(--color-orange);
  border-color: var(--color-orange);
  color: var(--color-white);
}

/* === FORM INPUTS === */
.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.7px;
  color: #555;
  font-weight: 600;
  margin-bottom: 7px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  border: 1.5px solid var(--color-gray-mid);
  border-radius: 6px;
  padding: 13px 16px;
  font-size: 14px;
  font-family: var(--font-body);
  background: #fafafa;
  color: var(--color-text-dark);
  transition: var(--transition);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-orange);
  box-shadow: 0 0 0 3px rgba(245, 132, 31, 0.12);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-input.error,
.form-select.error,
.form-textarea.error {
  border-color: #e03131;
}
.field-error {
  color: #e03131;
  font-size: 12px;
  margin-top: 5px;
  display: none;
}
.field-error.show {
  display: block;
}

/* === ORANGE LEFT BORDER CARDS === */
.value-card {
  border-left: 4px solid var(--color-orange);
  padding: 24px 26px;
  background: var(--color-white);
  border-radius: 0 8px 8px 0;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
}
.value-card h4 {
  margin-bottom: 8px;
}
.value-card p {
  font-size: 14px;
}

/* SVG icon helper */
.icon {
  width: 24px;
  height: 24px;
  stroke: var(--color-orange);
  fill: none;
  stroke-width: 2;
}

/* =====================================================================
   === TOPBAR ===
   ===================================================================== */
.topbar {
  background: var(--color-navy);
  color: var(--color-white);
  font-size: 12px;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
}
.topbar-right span {
  margin-left: 18px;
}

/* =====================================================================
   === NAVBAR ===
   ===================================================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-navy-scroll);
  transition: var(--transition);
}
.navbar.scrolled {
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
}

/* --- Transparent header (HOME PAGE only) ---
   At the top the navbar is transparent and overlays the dark hero with white
   text; on scroll it animates to a solid navy bar (still white text). The
   negative margin pulls the hero up behind the transparent bar; the matching
   padding keeps the hero content clear of it. */
body.page-home .hero-home {
  margin-top: calc(-1 * var(--nav-h));
  padding-top: var(--nav-h);
}
body.page-home .navbar {
  background: transparent;
  box-shadow: none;
}
body.page-home .navbar.scrolled {
  background: var(--color-navy-scroll);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
}
/* White chrome over the dark hero / dark scrolled bar */
body.page-home .navbar .logo-text .name {
  color: var(--color-white);
}
body.page-home .navbar .logo-text .sub {
  color: rgba(255, 255, 255, 0.6);
}
body.page-home .navbar .nav-menu > li > a {
  color: var(--color-white);
}
body.page-home .navbar .nav-menu > li > a:hover,
body.page-home .navbar .nav-menu > li > a.active {
  color: var(--color-orange);
}
body.page-home .navbar .hamburger span {
  background: var(--color-white);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
  width: 42px;
  height: 42px;
  background: var(--color-orange);
  color: var(--color-white);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 22px;
  flex-shrink: 0;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-text .name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 19px;
  color: var(--color-navy);
  letter-spacing: 0.5px;
}
.logo-text .sub {
  font-size: 9px;
  letter-spacing: 0.8px;
  color: var(--color-text-muted);
  text-transform: uppercase;
}
/* White logo text on the dark navbar (all pages) */
.navbar .logo-text .name {
  color: var(--color-white);
}
.navbar .logo-text .sub {
  color: rgba(255, 255, 255, 0.6);
}

/* Nav links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav-menu > li > a {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: var(--color-white);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-menu > li > a:hover,
.nav-menu > li > a.active {
  color: var(--color-orange);
}

/* Dropdown */
.has-dropdown {
  position: relative;
}
.dropdown-toggle {
  cursor: pointer;
}
.dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 48px;
  row-gap: 4px;
  width: min(720px, 86vw);
  background: var(--color-navy-scroll);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.45);
  padding: 28px 36px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(10px);
  transition: var(--transition);
  z-index: 1100;
}
.has-dropdown:hover .dropdown,
.has-dropdown.open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown li a {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 8px;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  transition: var(--transition);
}
.dropdown li a::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-orange);
  flex-shrink: 0;
}
.dropdown li a:hover {
  color: var(--color-orange);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1200;
}
.hamburger span {
  display: block;
  height: 2.5px;
  width: 100%;
  background: var(--color-white);
  border-radius: 2px;
  transition: var(--transition);
}
body.nav-open .hamburger span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}
body.nav-open .hamburger span:nth-child(2) {
  opacity: 0;
}
body.nav-open .hamburger span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

/* =====================================================================
   === HERO (shared) ===
   ===================================================================== */
.hero {
  position: relative;
  background: var(--color-navy);
  color: var(--color-white);
  overflow: hidden;
}
.hero-home {
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: var(--color-navy);
}
/* --- Hero carousel (home) --- */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.is-active {
  opacity: 1;
}
/* Dark navy overlay above the slides, below the hero text */
.hero-slides::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(10, 31, 68, 0.92) 0%,
    rgba(10, 31, 68, 0.7) 60%,
    rgba(27, 79, 156, 0.4) 100%
  );
}
.hero-dots {
  position: absolute;
  bottom: 104px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 4;
}
.hero-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.hero-dot:hover {
  background: var(--color-orange);
  width: 30px;
  border-radius: 25px;
}
.hero-dot.is-active {
  background: var(--color-orange);
  border-radius: 25px;
  width: 30px;
  transform: scale(1.15);
}
@media (max-width: 767px) {
  /* client strip is in normal flow on mobile; hide dots to avoid overlap */
  .hero-dots {
    display: none;
  }
}
.hero-page {
  padding: 110px 0 90px;
  background: linear-gradient(
    135deg,
    rgb(10, 31, 68) 0%,
    rgb(27, 79, 156) 100%
  );
}
/* Per-page hero banner images (dark navy overlay keeps white text readable) */
body.page-about .hero-page {
  background:
    linear-gradient(
      110deg,
      rgba(10, 31, 68, 0.92) 0%,
      rgba(10, 31, 68, 0.78) 100%
    ),
    url("../images/about-banner.jpeg") center/cover no-repeat;
}
body.page-careers .hero-page {
  background:
    linear-gradient(
      110deg,
      rgba(10, 31, 68, 0.92) 0%,
      rgba(10, 31, 68, 0.78) 100%
    ),
    url("../images/career-banner.jpeg") center/cover no-repeat;
}
body.page-equipment .hero-page {
  background:
    linear-gradient(
      110deg,
      rgba(10, 31, 68, 0.92) 0%,
      rgba(10, 31, 68, 0.78) 100%
    ),
    url("../images/equipment-banner.jpeg") center/cover no-repeat;
}
.hero-page::before,
.hero-home::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}
.hero .section-label {
  color: var(--color-orange);
}
.hero h1 {
  color: var(--color-white);
  margin-bottom: 20px;
}
.hero h1 .accent {
  color: var(--color-orange);
  display: block;
}
.hero-sub {
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  max-width: 640px;
  margin-bottom: 32px;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero client strip */
.client-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #0a1f44;
  backdrop-filter: blur(4px);
  z-index: 2;
}
.client-strip .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 18px;
  padding-bottom: 18px;
}
.client-strip span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.7);
}

/* Hero stats row (equipment page) */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 30px;
}
.hero-stats .stat {
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: 0 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}
.hero-stats .stat:last-child {
  border-right: none;
}
.hero-stats .stat .value {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 38px;
  color: var(--color-orange);
}
.hero-stats .stat .label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.7);
}

/* =====================================================================
   === CTA BANNER ===
   ===================================================================== */
.cta-banner {
  background: var(--cta-bg);
  padding: 60px 0;
}
.cta-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-banner h3 {
  color: var(--color-white);
  margin-bottom: 8px;
}
.cta-banner p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  max-width: 480px;
}
.cta-banner-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* =====================================================================
   === FOOTER ===
   ===================================================================== */
.footer {
  background: var(--color-navy);
  color: rgba(255, 255, 255, 0.7);
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
}
.footer .logo-text .name {
  color: var(--color-white);
}
.footer .logo-text .sub {
  color: rgba(255, 255, 255, 0.5);
}
.footer-desc {
  font-size: 13px;
  max-width: 240px;
  margin: 18px 0;
  color: rgba(255, 255, 255, 0.6);
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--color-orange);
}
.footer-social svg {
  width: 16px;
  height: 16px;
  fill: var(--color-white);
}

.footer h4 {
  color: var(--color-white);
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.65);
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--color-orange);
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}
.footer-contact svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-orange);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-profile-btn {
  display: inline-block;
  margin-top: 8px;
  background: var(--color-orange-dark);
  color: var(--color-white);
  padding: 12px 18px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 13px;
  transition: var(--transition);
}
.footer-profile-btn:hover {
  background: var(--color-orange);
}
.footer-profile-btn small {
  display: block;
  font-weight: 400;
  opacity: 0.85;
  font-size: 11px;
}

.footer-bottom {
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}
.footer-bottom a:hover {
  color: var(--color-orange);
}

/* =====================================================================
   === HOMEPAGE ===
   ===================================================================== */
/* About 2-col */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-grid p {
  margin-bottom: 16px;
}
.about-grid .btn {
  margin-top: 10px;
}
.about-image-wrap {
  position: relative;
}
.about-image-wrap img {
  border-radius: 12px;
  width: 100%;
}
.about-badge {
  position: absolute;
  padding: 16px 22px;
  border-radius: 10px;
  color: var(--color-white);
  font-family: var(--font-heading);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.about-badge .num {
  font-size: 28px;
  font-weight: 800;
  display: block;
}
.about-badge .txt {
  font-size: 12px;
}
.about-badge.top {
  background: var(--color-orange);
  top: 24px;
  right: -16px;
}
.about-badge.bottom {
  background: var(--color-navy);
  bottom: 24px;
  left: -16px;
}

/* Service cards grid (divisions) */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--color-white);
  border-radius: 10px;
  padding: 32px 28px;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
}
.service-card .card-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: #fff8f2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.service-card .card-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--color-orange);
  fill: none;
  stroke-width: 2;
}
.service-card h4 {
  margin-bottom: 10px;
}
.service-card p {
  font-size: 14px;
  margin-bottom: 14px;
}
.learn-more {
  color: var(--color-orange);
  font-weight: 700;
  font-size: 13px;
  font-family: var(--font-heading);
  display: inline-flex;
  gap: 4px;
  transition: var(--transition);
}
.learn-more:hover {
  gap: 9px;
}

/* Why choose (strengths) */
.strength-card {
  background: var(--color-navy-light);
  border-radius: 10px;
  padding: 32px 28px;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.strength-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-orange);
}
.strength-card .card-icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: rgba(245, 132, 31, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.strength-card .card-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--color-orange);
  fill: none;
  stroke-width: 2;
}
.strength-card h4 {
  color: var(--color-white);
  margin-bottom: 10px;
}
.strength-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
}

/* Section head with link */
.section-head-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
  flex-wrap: wrap;
  gap: 16px;
}

/* Project card */
.project-card {
  background: var(--color-white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
}
.project-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
}
.project-media {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.project-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.project-card:hover .project-media img {
  transform: scale(1.06);
}
.cat-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--color-orange);
  color: var(--color-white);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 5px 12px;
  border-radius: 25px;
}
.project-body {
  padding: 22px 24px;
}
.project-body h4 {
  margin-bottom: 8px;
}
.project-body .desc {
  font-size: 13.5px;
  margin-bottom: 14px;
}
.project-divider {
  height: 1px;
  background: var(--color-gray-mid);
  margin: 14px 0;
}
.project-meta li {
  display: flex;
  gap: 8px;
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 6px;
  align-items: center;
}
.project-meta svg {
  width: 15px;
  height: 15px;
  stroke: var(--color-orange);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

/* Equipment fleet horizontal scroll */
.fleet-scroll {
  display: flex;
  gap: 24px;
  padding-bottom: 18px;
}

.fleet-card {
  background: var(--color-white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  width: calc(16.66% - 20px);
  position: relative;
}
.fleet-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: var(--transition);
}
.fleet-card:hover img {
  transform: scale(1.05);
}

.fleet-card-info {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 10px;
  background: linear-gradient(
    to top,
    rgba(10, 31, 68, 0.85) 0%,
    transparent 60%
  );
}
.fleet-card .fleet-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  color: #fff;
}

.fleet-desc {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 10px;
  color: #f58220;
}

/* Workforce stats */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 44px;
}
.stat-big {
  text-align: center;
}
.stat-big .num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 52px;
  color: var(--color-orange);
  line-height: 1;
}
.stat-big .label {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  margin-top: 8px;
}
.capability-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.capability-tags span {
  background: var(--color-navy-light);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
  padding: 9px 20px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 600;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* =====================================================================
   === ABOUT PAGE ===
   ===================================================================== */
.checks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 24px;
}
.check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
}
.check-item svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  stroke: var(--color-orange);
  fill: none;
  stroke-width: 2.5;
}
.about-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-feature-grid img {
  border-radius: 12px;
  width: 100%;
}

/* Vision & Mission */
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.vm-card {
  padding: 44px 40px;
  border-radius: 12px;
}
.vm-card.vision {
  background: var(--color-navy);
}
.vm-card.mission {
  background: var(--color-orange);
}
.vm-card .card-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.vm-card .card-icon svg {
  width: 30px;
  height: 30px;
  stroke: var(--color-white);
  fill: none;
  stroke-width: 2;
}
.vm-card h3 {
  color: var(--color-white);
  margin-bottom: 14px;
}
.vm-card p {
  color: rgba(255, 255, 255, 0.85);
}

/* CEO Quote */
.ceo-card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--color-navy);
  border-radius: 14px;
  padding: 50px 44px;
  text-align: center;
}
.ceo-quote-mark {
  font-family: var(--font-heading);
  font-size: 80px;
  color: var(--color-orange);
  line-height: 0.6;
  height: 40px;
}
.ceo-card blockquote {
  color: var(--color-white);
  font-size: 18px;
  line-height: 1.7;
  margin: 20px 0 30px;
  font-style: italic;
}
.ceo-person {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.ceo-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--color-orange);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 18px;
}
.ceo-person .name {
  color: var(--color-white);
  font-weight: 700;
  font-family: var(--font-heading);
}
.ceo-person .title {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(-50%);
}
.timeline-item {
  position: relative;
  width: 50%;
  padding: 0 40px 40px;
  opacity: 0;
  transition: all 0.6s ease;
}
.timeline-item.left {
  left: 0;
  text-align: right;
  transform: translateX(-60px);
}
.timeline-item.right {
  left: 50%;
  transform: translateX(60px);
}
.timeline-item.in-view {
  opacity: 1;
  transform: translateX(0);
}
.timeline-item::after {
  content: "";
  position: absolute;
  top: 6px;
  width: 16px;
  height: 16px;
  background: var(--color-orange);
  border-radius: 50%;
  border: 3px solid var(--color-navy);
}
.timeline-item.left::after {
  right: -8px;
}
.timeline-item.right::after {
  left: -8px;
}
.year-pill {
  display: inline-block;
  background: var(--color-orange);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 14px;
  padding: 5px 16px;
  border-radius: 25px;
  margin-bottom: 12px;
}
.timeline-item h4 {
  color: var(--color-white);
  margin-bottom: 6px;
}
.timeline-item p {
  font-size: 14px;
}

/* Safety badge */
.safety-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.safety-badge-card {
  background: var(--color-navy);
  border-radius: 16px;
  padding: 60px 40px;
  text-align: center;
  color: var(--color-white);
}
.safety-badge-card .shield {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(245, 132, 31, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.safety-badge-card .shield svg {
  width: 56px;
  height: 56px;
  stroke: var(--color-orange);
  fill: none;
  stroke-width: 1.8;
}
.safety-badge-card h3 {
  color: var(--color-white);
  margin-bottom: 10px;
}
.safety-badge-card p {
  color: rgba(255, 255, 255, 0.7);
}

/* =====================================================================
   === SERVICES PAGE ===
   ===================================================================== */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid var(--color-gray-mid);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s ease;
}
.service-block.in-view {
  opacity: 1;
  transform: translateY(0);
}
.service-block.even .service-text {
  order: 2;
}
.service-block.even .service-img {
  order: 1;
}
.service-img img {
  border-radius: 12px;
  width: 100%;
}
.service-block .block-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: #fff8f2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 18px;
}
.service-text h3 {
  margin-bottom: 12px;
}
.service-text > p {
  margin-bottom: 20px;
}
.scope-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--color-text-muted);
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}
.scope-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
  margin-bottom: 24px;
}
.scope-grid li {
  display: flex;
  gap: 8px;
  font-size: 13.5px;
  align-items: flex-start;
}
.scope-grid li::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--color-orange);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}

/* =====================================================================
   === EQUIPMENT RENTAL PAGE ===
   ===================================================================== */
.equip-card {
  background: var(--color-white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
}
.equip-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
}
.equip-media {
  position: relative;
  height: 200px;
}
.equip-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.avail-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.75);
  color: var(--color-white);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 6px;
}
.equip-body {
  padding: 22px 24px;
}
.equip-body h4 {
  margin-bottom: 3px;
}
.equip-model {
  color: var(--color-text-muted);
  font-size: 13px;
  margin-bottom: 14px;
}
.cap-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-orange);
}
.cap-value {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 18px;
  color: var(--color-orange);
  margin-bottom: 14px;
}
.cap-value.na {
  color: var(--color-text-muted);
}
.spec-list {
  margin-bottom: 18px;
}
.spec-list li {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 5px;
  display: flex;
  gap: 6px;
}
.spec-list li::before {
  content: "•";
  color: var(--color-orange);
}

/* =====================================================================
   === CAREERS PAGE ===
   ===================================================================== */
.culture-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.culture-grid p {
  margin-bottom: 16px;
}
.culture-grid img {
  border-radius: 12px;
  width: 100%;
}

.benefit-card {
  background: var(--color-white);
  border-radius: 10px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
}
.benefit-card .b-icon {
  font-size: 34px;
  margin-bottom: 14px;
}
.benefit-card h4 {
  margin-bottom: 8px;
}
.benefit-card p {
  font-size: 13.5px;
}

/* Accordion */
.accordion {
  max-width: 800px;
  margin: 0 auto;
}
.acc-item {
  background: var(--color-white);
  border: 1px solid var(--color-gray-mid);
  border-radius: 10px;
  margin-bottom: 14px;
  overflow: hidden;
  transition: var(--transition);
}
.acc-item.open {
  box-shadow: var(--card-shadow);
  border-color: var(--color-orange);
}
.acc-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
}
.acc-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-orange);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.acc-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--color-white);
  fill: none;
  stroke-width: 2;
}
.acc-titles {
  flex: 1;
}
.acc-titles h4 {
  margin-bottom: 3px;
}
.acc-titles .meta {
  font-size: 13px;
  color: var(--color-text-muted);
}
.acc-tags {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.job-pill {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 11px;
  border-radius: 25px;
  background: var(--color-gray-light);
  color: var(--color-text-dark);
}
.job-pill.ft {
  background: #fff8f2;
  color: var(--color-orange-dark);
}
.acc-chevron {
  width: 22px;
  height: 22px;
  stroke: var(--color-text-muted);
  fill: none;
  stroke-width: 2.5;
  transition: var(--transition);
  flex-shrink: 0;
}
.acc-item.open .acc-chevron {
  transform: rotate(180deg);
}
.acc-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.acc-item.open .acc-content {
  max-height: 600px;
}
.acc-body {
  padding: 0 24px 24px 84px;
}
.acc-body p {
  margin-bottom: 14px;
  font-size: 14px;
}
.acc-body ul {
  margin-bottom: 18px;
}
.acc-body li {
  font-size: 13.5px;
  margin-bottom: 7px;
  display: flex;
  gap: 8px;
}
.acc-body li::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--color-orange);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}
.apply-link {
  color: var(--color-orange);
  font-weight: 700;
  font-family: var(--font-heading);
  font-size: 14px;
  cursor: pointer;
  background: none;
  border: none;
  display: inline-flex;
  gap: 6px;
}
.apply-link:hover {
  gap: 10px;
}

/* Dark form (careers) */
.dark-form {
  max-width: 720px;
  margin: 0 auto;
}
.dark-form .form-group label {
  color: rgba(255, 255, 255, 0.7);
}
.dark-form .form-input,
.dark-form .form-select,
.dark-form .form-textarea {
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  color: var(--color-white);
}
.dark-form .form-input::placeholder,
.dark-form .form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.dark-form .form-select option {
  color: var(--color-text-dark);
}
.dark-form .form-input:focus,
.dark-form .form-select:focus,
.dark-form .form-textarea:focus {
  border-color: var(--color-orange);
  box-shadow: 0 0 0 3px rgba(245, 132, 31, 0.2);
}

/* Form success state */
.form-success {
  display: none;
  text-align: center;
  padding: 44px 30px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  border: 1px solid rgba(245, 132, 31, 0.4);
}
.form-success.show {
  display: block;
  animation: fadeIn 0.5s ease;
}
.form-success.light {
  background: #fff8f2;
  border: 1px solid var(--color-orange);
}
.form-success .check-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.form-success .check-circle svg {
  width: 34px;
  height: 34px;
  stroke: var(--color-white);
  fill: none;
  stroke-width: 3;
}
.form-success h3 {
  margin-bottom: 10px;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =====================================================================
   === CONTACT PAGE ===
   ===================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 35fr 60fr;
  gap: 36px;
  align-items: start;
}
.contact-info-card {
  background: var(--color-navy);
  border-radius: 12px;
  padding: 36px 32px;
  margin-bottom: 20px;
}
.contact-info-card .ci-row {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-info-card .ci-row:last-child {
  margin-bottom: 0;
}
.ci-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(245, 132, 31, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ci-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-orange);
  fill: none;
  stroke-width: 2;
}
.ci-text .ci-label {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-orange);
  font-weight: 700;
  margin-bottom: 4px;
}
.ci-text p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
}

.contact-emergency {
  background: var(--color-orange);
  border-radius: 12px;
  padding: 28px 32px;
  color: var(--color-white);
  margin-bottom: 20px;
}
.contact-emergency .em-head {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}
.contact-emergency svg {
  width: 26px;
  height: 26px;
  stroke: var(--color-white);
  fill: none;
  stroke-width: 2;
}
.contact-emergency h4 {
  color: var(--color-white);
}
.contact-emergency p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  margin-bottom: 10px;
}
.contact-emergency .em-phone {
  font-size: 20px;
  font-weight: 800;
  font-family: var(--font-heading);
}

.contact-whatsapp {
  background: #25d366;
  border-radius: 12px;
  padding: 24px 32px;
  color: var(--color-white);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
}
.contact-whatsapp:hover {
  filter: brightness(1.05);
}
.contact-whatsapp svg {
  width: 34px;
  height: 34px;
  fill: var(--color-white);
  flex-shrink: 0;
}
.contact-whatsapp .wa-text {
  flex: 1;
}
.contact-whatsapp h4 {
  color: var(--color-white);
  margin-bottom: 2px;
}
.contact-whatsapp p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
}
.contact-whatsapp .wa-arrow {
  font-size: 24px;
}

.proposal-card {
  background: var(--color-white);
  border-radius: 12px;
  padding: 40px;
  box-shadow: var(--card-shadow);
}
.proposal-card h3 {
  margin-bottom: 8px;
}
.proposal-card > p {
  margin-bottom: 26px;
  font-size: 14px;
}
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

/* Map section */
.map-wrap {
  border-radius: 16px;
  overflow: hidden;
}
.map-wrap iframe {
  width: 100%;
  height: 300px;
  border: 0;
  display: block;
}
.map-caption {
  text-align: center;
  color: var(--color-white);
  margin: 24px 0 20px;
}

/* Mid page CTA */
.mid-cta {
  text-align: center;
}
.mid-cta h2 {
  margin-bottom: 14px;
}
.mid-cta p {
  max-width: 560px;
  margin: 0 auto 26px;
}
.mid-cta-2col {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.mid-cta-2col .text {
  max-width: 480px;
}
.mid-cta-2col h2 {
  margin-bottom: 10px;
}
.mid-cta-2col .buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Filter animation states */
.filter-hidden {
  opacity: 0;
  transform: scale(0.95);
  pointer-events: none;
  display: none;
}
.filter-visible {
  opacity: 1;
  transform: scale(1);
  transition: all 0.3s ease;
}

/* =====================================================================
   === UTILITIES ===
   ===================================================================== */
.mt-0 {
  margin-top: 0;
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================================
   === RESPONSIVE ===
   ===================================================================== */
@media (max-width: 1069.98px) {
  h1 {
    font-size: 40px;
  }
  h2 {
    font-size: 32px;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .hero-stats {
    flex-wrap: wrap;
  }
  .hero-stats .stat {
    flex: 1 1 45%;
    border-right: none;
    margin-bottom: 20px;
  }

  /* Navbar → hamburger */
  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(360px, 85vw);
    background: var(--color-navy);
    flex-direction: column;
    align-items: flex-start;
    padding: 90px 32px 32px;
    gap: 6px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    overflow-y: auto;
    z-index: 1150;
  }
  body.nav-open .nav-menu {
    transform: translateX(0);
  }
  .nav-menu > li {
    width: 100%;
  }
  .nav-menu > li > a {
    color: var(--color-white);
    padding: 12px 0;
    font-size: 16px;
  }
  .nav-menu > li > a:hover,
  .nav-menu > li > a.active {
    color: var(--color-orange);
  }
  .dropdown {
    position: static;
    display: block;
    width: auto;
    grid-template-columns: 1fr;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: none;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.05);
    min-width: 0;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transition: max-height 0.3s ease;
    border-radius: 6px;
  }
  .has-dropdown.open .dropdown {
    max-height: 700px;
    padding: 6px 0;
    transform: translate(0);
  }
  .dropdown li a {
    font-size: 15px;
    padding: 11px 16px;
    color: rgba(255, 255, 255, 0.8);
  }
  .dropdown li a:hover {
    color: var(--color-orange);
  }
  .hamburger {
    display: flex;
  }
  .nav-cta .btn-primary {
    display: none;
  }

  /* Stacks */
  .about-grid,
  .about-feature-grid,
  .vm-grid,
  .safety-grid,
  .culture-grid,
  .service-block,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .service-block.even .service-text,
  .service-block.even .service-img {
    order: 0;
  }

  /* Timeline → single column */
  .timeline::before {
    left: 20px;
  }
  .timeline-item {
    width: 100%;
    left: 0 !important;
    text-align: left !important;
    padding-left: 50px;
    padding-right: 0;
    transform: translateX(40px);
  }

  .timeline-item::after {
    left: 12px !important;
    right: auto !important;
  }

  .about-badge.top {
    right: 10px;
  }
  .about-badge.bottom {
    left: 10px;
  }
  .fleet-scroll {
    flex-wrap: wrap;
    justify-content: center;
  }
  .fleet-card {
    width: calc(33.33% - 16px);
  }
}

@media (max-width: 1069.98px) and (min-width: 768px) {
  .section {
    padding: 60px 0;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  :root {
    --section-pad: 40px;
    --container-pad: 24px;
  }

  h1 {
    font-size: 32px;
  }
  h2 {
    font-size: 26px;
  }
  h3 {
    font-size: 20px;
  }

  .topbar {
    display: none;
  }

  .grid-4,
  .grid-3,
  .grid-2,
  .stats-row,
  .footer-grid,
  .form-row-2,
  .checks-grid,
  .scope-grid {
    grid-template-columns: 1fr;
  }

  .stats-row {
    gap: 30px;
  }
  .hero-stats .stat {
    flex: 1 1 100%;
    border-right: none;
  }

  .hero-buttons .btn,
  .cta-banner-buttons .btn,
  .mid-cta-2col .buttons .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-buttons {
    width: 100%;
  }

  /* Filter tabs horizontal scroll */
  .filter-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    white-space: nowrap;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
  }

  .section-pad {
    padding: 40px 0;
  }
  .vm-card,
  .proposal-card,
  .ceo-card {
    padding: 30px 24px;
  }
  .cta-banner .container,
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .cta-banner-buttons {
    width: 100%;
  }

  .about-badge.top {
    right: 8px;
    top: 8px;
    padding: 12px 16px;
  }
  .about-badge.bottom {
    left: 8px;
    bottom: 8px;
    padding: 12px 16px;
  }
  .about-badge .num {
    font-size: 22px;
  }

  .client-strip {
    position: static;
    background: #0a1f44;
  }
  .client-strip .container {
    justify-content: center;
    gap: 24px;
  }
  .client-strip span {
    font-size: 15px;
  }
  .hero-home {
    min-height: auto;
    padding: 70px 0 0;
    flex-direction: column;
  }
  .hero-home .hero-content {
    padding-bottom: 40px;
  }
  .fleet-card {
    width: calc(50% - 12px);
  }
  .fleet-card img {
    height: 140px;
  }
}

/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal,
  .timeline-item,
  .service-block {
    opacity: 1 !important;
    transform: none !important;
  }
}
