:root {
  --navy: #0a1f5c;
  --navy-dark: #061338;
  --red: #cc0000;
  --light: #f5f7fa;
  --gray: #555;
  --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  color: #222;
  line-height: 1.6;
}

a { text-decoration: none; }

/* Header */
header {
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 30px;
}
.logo {
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
  display: flex;
  align-items: center;
}
.logo span { color: var(--red); }
.logo img { height: 130px; width: auto; display: block; }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a {
  color: var(--navy);
  font-weight: 600;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--red); }
.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 5px;
}
.nav-cta:hover { background: #a30000; }

/* Hero */
.hero {
  background: linear-gradient(rgba(10,31,92,0.72), rgba(6,19,56,0.80)),
    url('hero.jpg');
  background-size: cover;
  background-position: center;
  color: var(--white);
  text-align: center;
  padding: 130px 30px;
}
.hero h1 { font-size: 52px; margin-bottom: 20px; line-height: 1.15; }
.hero p { font-size: 21px; max-width: 760px; margin: 0 auto 35px; opacity: 0.95; }
.btn {
  display: inline-block;
  padding: 15px 34px;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 700;
  margin: 8px;
  transition: transform 0.15s;
}
.btn:hover { transform: translateY(-2px); }
.btn-red { background: var(--red); color: var(--white); }
.btn-white { background: var(--white); color: var(--navy); }
.btn-navy { background: var(--navy); color: var(--white); }

/* Sections */
section { padding: 70px 30px; }
.container { max-width: 1200px; margin: 0 auto; }
.section-title {
  text-align: center;
  color: var(--navy);
  font-size: 38px;
  margin-bottom: 15px;
}
.section-sub {
  text-align: center;
  color: var(--gray);
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 50px;
}
.bg-light { background: var(--light); }

/* Cards grid */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.card {
  background: var(--white);
  padding: 35px 28px;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.07);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 8px 28px rgba(0,0,0,0.12); }
.card h3 { color: var(--navy); font-size: 22px; margin-bottom: 12px; }
.card .icon { font-size: 40px; margin-bottom: 15px; }
.card.bordered { border-top: 4px solid var(--red); }

/* Stats */
.stats {
  background: var(--navy);
  color: var(--white);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}
.stat h2 { font-size: 44px; color: var(--white); }
.stat p { opacity: 0.85; font-size: 17px; }

/* How it works */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  counter-reset: step;
}
.step { text-align: center; padding: 20px; }
.step .num {
  width: 60px; height: 60px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; font-weight: 800;
  margin: 0 auto 18px;
}
.step h3 { color: var(--navy); margin-bottom: 10px; }

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  color: var(--white);
  text-align: center;
}
.cta-band h2 { font-size: 36px; margin-bottom: 15px; color: var(--white); }
.cta-band p { font-size: 19px; margin-bottom: 30px; opacity: 0.9; }

/* Contact */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 1100px;
  margin: 0 auto;
}
.contact-info h3 { color: var(--navy); font-size: 24px; margin-bottom: 8px; }
.contact-info p { margin-bottom: 22px; color: var(--gray); }
.contact-info .label { font-weight: 700; color: var(--navy); display: block; }
form label { display: block; font-weight: 600; color: var(--navy); margin: 14px 0 6px; }
form input, form select, form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #ccd;
  border-radius: 6px;
  font-size: 15px;
  font-family: inherit;
}
form textarea { min-height: 110px; resize: vertical; }
.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 20px 0;
  font-size: 13px;
  color: var(--gray);
  line-height: 1.5;
}
.checkbox-row input { width: 18px; height: 18px; margin-top: 3px; flex-shrink: 0; }
.checkbox-row a { color: var(--red); text-decoration: underline; }

/* Footer */
footer {
  background: #0a0f1f;
  color: #9aa;
  padding: 50px 30px 30px;
  text-align: center;
}
footer .flinks { margin-bottom: 18px; }
footer .flinks a { color: #cdd; margin: 0 14px; font-weight: 600; }
footer .flinks a:hover { color: var(--white); }
footer .legal a { color: #9aa; margin: 0 10px; font-size: 14px; }
footer p { font-size: 14px; margin: 6px 0; }

/* Photo service cards */
.photo-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,0.10);
  background: var(--white);
  transition: transform 0.2s, box-shadow 0.2s;
}
.photo-card:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(0,0,0,0.16); }
.photo-card .img {
  height: 190px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.photo-card .img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(rgba(10,31,92,0) 40%, rgba(10,31,92,0.55));
}
.photo-card .body { padding: 24px; }
.photo-card h3 { color: var(--navy); font-size: 21px; margin-bottom: 10px; }
.photo-card p { color: var(--gray); }

/* Feature split (image + text) */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  max-width: 1150px;
  margin: 0 auto;
}
.split .photo {
  height: 380px;
  border-radius: 14px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}
.split h2 { color: var(--navy); font-size: 34px; margin-bottom: 18px; }
.split p { color: var(--gray); font-size: 17px; margin-bottom: 14px; }
.split ul { margin: 0 0 20px 20px; color: var(--gray); }
.split li { margin-bottom: 8px; }

/* Trust badges */
.badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  align-items: center;
}
.badge {
  text-align: center;
  font-weight: 700;
  color: var(--navy);
}
.badge .big { font-size: 30px; color: var(--red); display: block; }

/* Commodity tiles */
.haul-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
}
.haul {
  position: relative;
  border-radius: 14px;
  height: 180px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  transition: transform 0.2s, box-shadow 0.2s;
  background-size: cover;
  background-position: center;
}
.haul:hover { transform: translateY(-6px) scale(1.03); box-shadow: 0 12px 30px rgba(0,0,0,0.25); }
.haul::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(rgba(0,0,0,0) 45%, rgba(0,0,0,0.72));
}
.haul span.lbl {
  position: relative;
  z-index: 1;
  padding: 0 10px 16px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
  letter-spacing: .3px;
}
.haul.peppers  { background-image: url('produce/peppers.jpg?v=2'); }
.haul.bananas  { background-image: url('produce/bananas.jpg?v=2'); }
.haul.oranges  { background-image: url('produce/oranges.jpg?v=2'); }
.haul.grapes   { background-image: url('produce/grapes.jpg?v=2'); }
.haul.potatoes { background-image: url('produce/potatoes.jpg?v=2'); }
.haul.corn     { background-image: url('produce/corn.jpg?v=2'); }
.haul.meat     { background-image: url('produce/meat.jpg?v=2'); }
.haul.chicken  { background-image: url('produce/chicken.jpg?v=2'); }
.haul.flatbed    { background-image: url('freight/flatbed.jpg'); }
.haul.tarped     { background-image: url('freight/tarped.jpg?v=2'); }
.haul.palletized { background-image: url('freight/palletized.jpg'); }

@media (max-width: 768px) {
  .hero h1 { font-size: 36px; }
  .contact-wrap { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split .photo { height: 250px; }
  .nav-links { gap: 16px; font-size: 14px; flex-wrap: wrap; justify-content: center; }
}
