:root {
  --bg: #f7f3eb;
  --bg-soft: #efe6d8;
  --text: #1f252b;
  --muted: #65717c;
  --navy: #13293d;
  --navy-2: #0d1d2c;
  --gold: #c79336;
  --gold-dark: #9f6d20;
  --white: #ffffff;
  --border: rgba(19, 41, 61, 0.14);
  --shadow: 0 20px 50px rgba(19, 41, 61, 0.16);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.container {
  width: min(1140px, calc(100% - 36px));
  margin: 0 auto;
}


/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(19, 41, 61, 0.96);
  color: var(--white);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: -1px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-text strong {
  font-size: 1.02rem;
}

.brand-text small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  margin-top: 3px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.94rem;
}

.main-nav a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.84);
}

.main-nav a:hover {
  color: var(--white);
}

.header-phone {
  background: var(--gold);
  color: var(--navy-2);
  text-decoration: none;
  font-weight: 800;
  padding: 10px 16px;
  border-radius: 999px;
  white-space: nowrap;
}

.header-phone:hover {
  background: #dda647;
}


/* Hero */

.hero {
  position: relative;
  min-height: 690px;
  display: flex;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(8, 19, 30, 0.92), rgba(19, 41, 61, 0.72), rgba(19, 41, 61, 0.34)),
    url("images/truck-hero.jpg");
  background-size: cover;
  background-position: center;
}

/*
  If you do not have a truck image yet, the gradient still works.
  Create a folder named /images and add truck-hero.jpg when ready.
*/

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(199, 147, 54, 0.18), transparent 28%),
    linear-gradient(to bottom, transparent, rgba(8, 19, 30, 0.44));
  pointer-events: none;
}

.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 44px;
  align-items: center;
  padding: 80px 0;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  margin: 0 0 12px;
}

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  line-height: 0.98;
  margin: 0 0 24px;
  letter-spacing: -0.055em;
}

.hero-lead {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.18rem;
  margin: 0 0 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  font-weight: 800;
  font-size: 0.98rem;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy-2);
}

.btn-primary:hover {
  background: #dda647;
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.16);
}

.btn-dark {
  background: var(--navy);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--navy-2);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-strip span {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.hero-card {
  background: rgba(255, 255, 255, 0.94);
  color: var(--text);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.hero-card h2 {
  margin: 0 0 10px;
  font-size: 1.65rem;
  color: var(--navy);
  letter-spacing: -0.03em;
}

.hero-card p {
  color: var(--muted);
  margin: 0 0 18px;
}

.hero-card ul {
  padding: 0;
  margin: 0 0 22px;
  list-style: none;
}

.hero-card li {
  padding: 9px 0 9px 28px;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.hero-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold-dark);
  font-weight: 900;
}


/* Sections */

.section {
  padding: 86px 0;
}

.section-muted {
  background: var(--bg-soft);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading h2,
.split h2,
.quote-copy h2 {
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
  margin: 0 0 18px;
}

.section-heading p,
.split p,
.quote-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 12px 30px rgba(19, 41, 61, 0.08);
}

.service-card .icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--bg-soft);
  font-size: 1.35rem;
  margin-bottom: 18px;
}

.service-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 1.16rem;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.97rem;
}


/* Split sections */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}

.reverse {
  grid-template-columns: 0.9fr 1.1fr;
}

.state-panel {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
}

.state-panel h3 {
  margin: 0 0 22px;
  font-size: 1.55rem;
}

.state-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.state-list span {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  padding: 12px 14px;
  font-weight: 700;
}

.location-box {
  background: rgba(199, 147, 54, 0.14);
  border: 1px solid rgba(199, 147, 54, 0.35);
  border-radius: 14px;
  padding: 18px;
}

.location-box p {
  margin: 3px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.image-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 14px;
  box-shadow: var(--shadow);
}

.placeholder-photo {
  min-height: 360px;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(19, 41, 61, 0.92), rgba(19, 41, 61, 0.45)),
    repeating-linear-gradient(
      -45deg,
      #d9c7aa,
      #d9c7aa 14px,
      #c9b38e 14px,
      #c9b38e 28px
    );
  display: grid;
  place-items: center;
  color: var(--white);
  text-align: center;
  padding: 24px;
}

.placeholder-photo span {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.proof-list {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.proof-list div {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 5px solid var(--gold);
  border-radius: 14px;
  padding: 18px;
}

.proof-list strong {
  display: block;
  color: var(--navy);
  margin-bottom: 4px;
}

.proof-list p {
  margin: 0;
  font-size: 0.98rem;
}


/* Quote section */

.quote-section {
  background:
    linear-gradient(135deg, rgba(19, 41, 61, 0.96), rgba(13, 29, 44, 0.96)),
    var(--navy);
  color: var(--white);
}

.quote-wrap {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 44px;
  align-items: start;
}

.quote-copy h2 {
  color: var(--white);
}

.quote-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.callout {
  margin-top: 26px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 22px;
}

.callout span {
  display: block;
  color: rgba(255, 255, 255, 0.7);
}

.callout a {
  color: var(--gold);
  font-size: 2rem;
  font-weight: 900;
  text-decoration: none;
  letter-spacing: -0.04em;
}

.quote-form {
  background: var(--white);
  color: var(--text);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label {
  display: block;
  font-weight: 800;
  color: var(--navy);
  font-size: 0.92rem;
  margin-bottom: 16px;
}

input,
textarea {
  width: 100%;
  margin-top: 7px;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 13px 14px;
  font: inherit;
  color: var(--text);
  background: #fbfaf7;
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(199, 147, 54, 0.25);
  border-color: var(--gold);
}

textarea {
  resize: vertical;
}

.form-button {
  width: 100%;
  margin-top: 4px;
}

.form-note {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 14px 0 0;
  text-align: center;
}


/* Footer */

.site-footer {
  background: var(--navy-2);
  color: var(--white);
  padding: 34px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.site-footer p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 16px;
  color: rgba(255, 255, 255, 0.78);
}

.footer-contact a {
  color: var(--gold);
  font-weight: 900;
  text-decoration: none;
}


/* Mobile call button */

.mobile-call {
  display: none;
}


/* Responsive */

@media (max-width: 980px) {
  .main-nav {
    display: none;
  }

  .hero-content,
  .split,
  .quote-wrap {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 64px 0;
  }

  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reverse {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1140px);
  }

  .header-inner {
    min-height: 68px;
  }

  .brand-text strong {
    font-size: 0.94rem;
  }

  .header-phone {
    display: none;
  }

  .hero h1 {
    font-size: 2.55rem;
  }

  .hero-lead {
    font-size: 1.04rem;
  }

  .hero-card,
  .quote-form,
  .state-panel {
    padding: 22px;
  }

  .section {
    padding: 62px 0;
  }

  .card-grid,
  .form-row,
  .state-list {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-contact {
    justify-content: flex-start;
  }

  .mobile-call {
    display: flex;
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 30;
    justify-content: center;
    align-items: center;
    min-height: 52px;
    border-radius: 999px;
    background: var(--gold);
    color: var(--navy-2);
    text-decoration: none;
    font-weight: 900;
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.25);
  }

  body {
    padding-bottom: 76px;
  }
}