:root {
  --ink: #141414;
  --muted: #62666d;
  --paper: #fbfaf7;
  --surface: #ffffff;
  --line: #dedbd3;
  --navy: #10223a;
  --green: #0f6b57;
  --gold: #c8902e;
  --rose: #b44c4c;
  --shadow: 0 22px 70px rgba(16, 34, 58, 0.12);

  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
}

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

.top-announcement {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(135deg, var(--navy), #0f6b57);
  color: white;
  padding: 10px 16px;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.top-announcement a {
  color: #f7d58d;
  text-decoration: underline;
  font-weight: 800;
}

.top-announcement .tag-badge {
  background: var(--gold);
  color: var(--navy);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(15, 107, 87, 0.12);
  border: 1px solid rgba(15, 107, 87, 0.3);
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.site-shell {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 16px 0 56px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
  background: rgba(251, 250, 247, 0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.brand,
.site-header nav,
.hero-actions,
.eyebrow,
.benefit-list div,
.route-card {
  display: flex;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  height: 54px;
  max-width: 280px;
  object-fit: contain;
}

.site-header nav {
  gap: 8px;
}

.site-header nav a {
  padding: 10px 12px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 650;
  text-decoration: none;
  border-radius: 8px;
}

.site-header nav a:hover {
  color: var(--ink);
  background: rgba(16, 34, 58, 0.07);
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(340px, 1.06fr);
  gap: 48px;
  align-items: center;
  min-height: calc(100vh - 120px);
  padding: 56px 0 36px;
}

.hero-copy {
  max-width: 680px;
}

.eyebrow {
  gap: 8px;
  width: fit-content;
  margin-bottom: 18px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  max-width: 780px;
  color: var(--navy);
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

h2 {
  color: var(--navy);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  line-height: 1.15;
  letter-spacing: 0;
}

h3 {
  color: var(--navy);
  font-size: 1.12rem;
}

.hero-copy p,
.section-heading p,
.service-card p,
.location-card p,
.positions span {
  color: var(--muted);
  line-height: 1.7;
}

.hero-copy p {
  max-width: 610px;
  margin-top: 24px;
  font-size: 1.16rem;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

.primary-action {
  color: white;
  background: var(--green);
  box-shadow: 0 14px 30px rgba(15, 107, 87, 0.22);
}

.secondary-action {
  color: var(--navy);
  border: 1px solid var(--line);
  background: var(--surface);
}

.hero-visual {
  position: relative;
  min-height: 540px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(16, 34, 58, 0.65), transparent 58%),
    linear-gradient(0deg, rgba(16, 34, 58, 0.55), transparent 50%);
}

.hero-photo,
.hero-slide {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.route-card {
  position: absolute;
  z-index: 2;
  gap: 10px;
  padding: 12px 14px;
  color: white;
  font-size: 0.9rem;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.route-card-top {
  top: 58px;
  right: 42px;
}

.route-card-bottom {
  left: 42px;
  bottom: 58px;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  margin: 28px 0 86px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.stats-band div {
  padding: 24px;
  background: var(--surface);
}

.stats-band strong {
  display: block;
  color: var(--navy);
  font-size: 2rem;
}

.stats-band span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-weight: 650;
}

.section-grid,
.benefits-section,
.locations-section,
.careers-strip,
.split-section,
.coverage-section {
  padding: 76px 0;
  border-top: 1px solid var(--line);
}

.section-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 34px;
}

.section-heading {
  max-width: 620px;
}

.section-heading p {
  margin-top: 18px;
}

.service-image-stack {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 12px;
  align-items: end;
  margin-top: 28px;
}

.service-image-stack img {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(16, 34, 58, 0.12);
}

.service-image-stack img:first-child {
  aspect-ratio: 4 / 5;
}

.service-image-stack img:last-child {
  aspect-ratio: 4 / 4.7;
  margin-bottom: 34px;
}

.card-grid,
.locations-grid,
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.service-card,
.location-card,
.positions article,
.coverage-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.service-card {
  min-height: 180px;
}

.service-card p,
.location-card p {
  margin-top: 12px;
}

.coverage-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: start;
}

.coverage-card {
  display: grid;
  gap: 10px;
  min-height: 138px;
  background:
    linear-gradient(180deg, rgba(15, 107, 87, 0.07), rgba(255, 255, 255, 0)),
    var(--surface);
}

.coverage-card strong {
  color: var(--navy);
  font-size: 1.05rem;
}

.coverage-card span {
  color: var(--muted);
  line-height: 1.55;
}

.split-section,
.careers-strip {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: start;
}

.industry-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.industry-list span {
  padding: 11px 14px;
  border: 1px solid rgba(15, 107, 87, 0.22);
  border-radius: 8px;
  color: var(--green);
  font-weight: 800;
  background: rgba(15, 107, 87, 0.08);
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.benefit-list div {
  gap: 10px;
  min-height: 86px;
  padding: 18px;
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 34px rgba(16, 34, 58, 0.06);
}

.benefit-list svg {
  flex: 0 0 auto;
  color: var(--green);
}

.location-card a {
  display: inline-block;
  margin-top: 14px;
  color: var(--rose);
  font-weight: 750;
  text-decoration: none;
}

.positions {
  display: grid;
  gap: 12px;
}

.positions strong,
.positions span {
  display: block;
}

.positions span {
  margin-top: 6px;
}

@media (max-width: 900px) {
  .site-shell {
    width: min(100% - 24px, 680px);
    padding-top: 12px;
  }

  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .site-header nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero-section,
  .section-grid,
  .split-section,
  .careers-strip,
  .coverage-section {
    grid-template-columns: 1fr;
  }

  .hero-section {
    min-height: auto;
    padding-top: 32px;
  }

  .hero-visual {
    min-height: 360px;
  }

  .hero-photo {
    min-height: 360px;
  }

  .stats-band,
  .benefit-list,
  .card-grid,
  .locations-grid,
  .coverage-grid {
    grid-template-columns: 1fr;
  }

  .stats-band {
    margin-bottom: 42px;
  }

  .section-grid,
  .benefits-section,
  .locations-section,
  .careers-strip,
  .split-section,
  .coverage-section {
    padding: 48px 0;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: 2.65rem;
  }

  .brand-logo {
    height: 42px;
    max-width: 220px;
  }

  .site-header nav a {
    white-space: nowrap;
  }

  .hero-actions a {
    width: 100%;
    justify-content: center;
  }

  .route-card {
    position: static;
    margin-top: 10px;
  }

  .hero-visual {
    align-content: center;
    gap: 10px;
    padding: 0;
  }

  .hero-visual::before {
    background: linear-gradient(0deg, rgba(16, 34, 58, 0.78), transparent 68%);
  }

  .hero-photo {
    grid-area: 1 / 1;
  }

  .route-card {
    grid-area: 1 / 1;
    align-self: end;
    justify-self: center;
  }

  .route-card-top {
    margin-bottom: 72px;
  }

  .route-card-bottom {
    margin-bottom: 18px;
  }

  .service-image-stack {
    grid-template-columns: 1fr 1fr;
  }
}

/* Page Hero Header */
.page-hero {
  padding: 20px 0 16px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
}

.page-hero h1 {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  margin-top: 6px;
  line-height: 1.2;
}

.page-hero p {
  color: var(--muted);
  font-size: 0.98rem;
  max-width: 680px;
  margin-top: 8px;
  line-height: 1.5;
}

/* Fleet Categories & Spec Cards */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.fleet-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(16, 34, 58, 0.04);
  display: flex;
  flex-direction: column;
}

.fleet-card h3 {
  font-size: 1.4rem;
  color: var(--navy);
}

.fleet-card .fleet-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.fleet-card p {
  color: var(--muted);
  font-size: 0.96rem;
  margin-top: 10px;
  line-height: 1.6;
}

.fleet-card .vehicle-models {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
}

/* Form Styles */
.quote-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 900px) {
  .quote-container {
    grid-template-columns: 1fr;
  }
}

.quote-form {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  font-size: 0.96rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(15, 107, 87, 0.15);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 560px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.submit-btn {
  width: 100%;
  padding: 14px 20px;
  border: none;
  border-radius: 8px;
  background: var(--green);
  color: white;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(15, 107, 87, 0.22);
  transition: background 0.2s, transform 0.1s;
}

.submit-btn:hover {
  background: #0b5545;
}

.hq-detail-card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(16, 34, 58, 0.03), rgba(255, 255, 255, 0)), var(--surface);
}

.hq-detail-card h3 {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.hq-info-list {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

.hq-info-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.hq-info-item svg {
  color: var(--green);
  flex-shrink: 0;
  margin-top: 2px;
}

.hq-info-item strong {
  display: block;
  font-size: 0.92rem;
  color: var(--navy);
}

.hq-info-item span {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

/* Site Footer */
.site-footer {
  margin-top: 76px;
  padding: 48px 0 24px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 32px;
}

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

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

.footer-brand p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 14px;
  line-height: 1.6;
  max-width: 320px;
}

.footer-col h4 {
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 800;
  margin: 0 0 16px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer-col a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--navy);
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--muted);
}

