/* ============ ProTeam Logistics — styles (v2, light theme) ============ */
:root {
  --navy-900: #0a1633;
  --navy-800: #101d3f;
  --navy-700: #14264f;
  --navy-600: #1e3163;
  --steel-400: #8fa3bf;
  --steel-200: #c9d4e3;
  --steel-100: #e7edf5;
  --amber: #e8930c;
  --amber-dark: #c67c06;
  --bg: #ffffff;
  --bg-alt: #f6f8fb;
  --text: #1d2433;
  --text-muted: #5a6478;
  --radius: 12px;
  --shadow: 0 10px 30px rgba(10, 22, 51, 0.08);
  --container: 1140px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 { line-height: 1.15; }

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--navy-800);
}

a { color: inherit; }

/* ============ Brand ============ */
.brand, .footer-brand {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1;
}

.brand-mark {
  font-family: "Anton", sans-serif;
  font-size: 1.9rem;
  letter-spacing: 0.02em;
  color: var(--navy-800);
  text-shadow: 2px 2px 0 rgba(143, 163, 191, 0.4);
}

.brand-llc {
  font-size: 0.95rem;
  margin-left: 4px;
  vertical-align: super;
  letter-spacing: 0.12em;
}

.brand-sub {
  font-family: "Anton", sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.34em;
  color: var(--steel-400);
  margin-top: 5px;
}

/* ============ Navbar (light) ============ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--steel-100);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a:not(.btn) {
  color: var(--text);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.2s;
}

.nav-links a:not(.btn):hover { color: var(--amber-dark); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--navy-800);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ Buttons ============ */
.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, border-color 0.2s, color 0.2s;
  font-family: inherit;
}

.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--amber);
  color: var(--navy-900);
}

.btn-primary:hover { background: var(--amber-dark); color: #fff; }

.btn-ghost {
  color: var(--navy-700);
  border-color: var(--steel-200);
  background: transparent;
}

.btn-ghost:hover { border-color: var(--navy-700); }

.btn-lg { padding: 15px 34px; font-size: 1.05rem; }
.btn-block { width: 100%; text-align: center; }

/* ============ Hero (light, split) ============ */
.hero {
  background:
    radial-gradient(1200px 500px at 85% -10%, var(--steel-100) 0%, transparent 60%),
    linear-gradient(180deg, #fff 0%, var(--bg-alt) 100%);
  border-bottom: 1px solid var(--steel-100);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding-top: clamp(56px, 8vw, 100px);
  padding-bottom: clamp(56px, 8vw, 100px);
}

.hero-kicker {
  font-weight: 800;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  color: var(--amber-dark);
  margin-bottom: 18px;
}

.hero-title {
  font-size: clamp(2.3rem, 5.2vw, 3.9rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--navy-900);
}

.hero-title .accent {
  color: transparent;
  background: linear-gradient(90deg, var(--amber-dark), var(--amber));
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-lead {
  margin-top: 22px;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--text-muted);
  max-width: 520px;
}

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

.hero-panel {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.hero-truck { width: 100%; height: auto; }

.hero-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.chip {
  background: #fff;
  border: 1px solid var(--steel-200);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy-700);
  box-shadow: var(--shadow);
}

/* ============ Stats band ============ */
.stats-band {
  background: var(--navy-800);
  color: #fff;
  padding: clamp(36px, 5vw, 56px) 0;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat { display: flex; flex-direction: column; gap: 4px; }

.stat-num {
  font-family: "Anton", sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--amber);
}

.stat-label {
  font-size: 0.88rem;
  color: var(--steel-400);
  font-weight: 500;
}

/* ============ Sections ============ */
.section { padding: clamp(64px, 8vw, 110px) 0; }
.section-alt { background: var(--bg-alt); }

.eyebrow {
  color: var(--amber-dark);
  font-weight: 800;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  margin-bottom: 12px;
}

.eyebrow-light { color: var(--amber); }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(40px, 5vw, 64px);
}

.section-sub {
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ============ About + compliance card ============ */
.about-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.about-copy h2 { margin-bottom: 20px; }
.about-copy p { color: var(--text-muted); margin-bottom: 16px; }

.compliance-card {
  background: #fff;
  border: 1px solid var(--steel-100);
  border-top: 5px solid var(--amber);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px 28px;
}

.compliance-card h3 {
  color: var(--navy-800);
  font-size: 1.1rem;
  margin-bottom: 18px;
}

.compliance-card ul { list-style: none; margin-bottom: 22px; }

.compliance-card li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--steel-200);
  font-size: 0.92rem;
}

.compliance-card li span { color: var(--text-muted); }
.compliance-card li strong { color: var(--navy-800); text-align: right; }

/* ============ Services (numbered tiles) ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service {
  background: #fff;
  border: 1px solid var(--steel-100);
  border-radius: var(--radius);
  padding: 30px 26px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
}

.service:hover {
  border-color: var(--amber);
  transform: translateY(-4px);
}

.service-num {
  font-family: "Anton", sans-serif;
  font-size: 2.6rem;
  color: var(--steel-100);
  display: block;
  margin-bottom: 8px;
  line-height: 1;
}

.service:hover .service-num { color: var(--amber); transition: color 0.25s; }

.service h3 {
  font-size: 1.15rem;
  color: var(--navy-800);
  margin-bottom: 8px;
}

.service p { color: var(--text-muted); font-size: 0.93rem; }

/* ============ Why us (split list) ============ */
.whyus-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}

.whyus-intro { position: sticky; top: 110px; }
.whyus-intro h2 { margin-bottom: 16px; }
.whyus-intro .section-sub { margin-bottom: 28px; }

.whyus-list { list-style: none; }

.whyus-list li {
  padding: 22px 0 22px 34px;
  border-bottom: 1px solid var(--steel-100);
  position: relative;
}

.whyus-list li:first-child { padding-top: 0; }

.whyus-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 32px;
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: var(--amber);
}

.whyus-list li:first-child::before { top: 10px; }

.whyus-list h3 { font-size: 1.05rem; color: var(--navy-800); margin-bottom: 5px; }
.whyus-list p { color: var(--text-muted); font-size: 0.93rem; }

/* ============ Industries (dark band) ============ */
.industries {
  background: linear-gradient(160deg, var(--navy-900), var(--navy-700));
  padding: clamp(64px, 8vw, 100px) 0;
}

.industries h2 { color: #fff; }
.industries .section-sub { color: var(--steel-400); }

.industries-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.industry {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  padding: 12px 26px;
  font-weight: 600;
  color: #fff;
  font-size: 0.95rem;
}

/* ============ Apply (split info + form) ============ */
.apply-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(36px, 5vw, 70px);
  align-items: start;
}

.apply-info h2 { margin-bottom: 16px; }
.apply-info > p { color: var(--text-muted); margin-bottom: 22px; }

.apply-perks { list-style: none; margin-bottom: 28px; }

.apply-perks li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-weight: 600;
  color: var(--navy-700);
  font-size: 0.95rem;
}

.apply-perks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--amber-dark);
  font-weight: 800;
}

.apply-contact {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 20px 22px;
  font-size: 0.95rem;
}

.apply-contact a { color: var(--navy-700); font-weight: 600; text-decoration: none; }
.apply-contact a:hover { color: var(--amber-dark); }

.apply-form {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--steel-100);
}

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

.form-field { margin-bottom: 18px; display: flex; flex-direction: column; }

.form-field label {
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 7px;
  color: var(--navy-800);
}

.form-field input,
.form-field select,
.form-field textarea {
  font-family: inherit;
  font-size: 0.95rem;
  padding: 12px 14px;
  border: 1.5px solid var(--steel-200);
  border-radius: 8px;
  background: #fbfcfe;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(232, 147, 12, 0.18);
}

.form-note {
  margin-top: 14px;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
}

.form-success {
  margin-top: 16px;
  padding: 14px;
  border-radius: 8px;
  background: #e9f7ef;
  color: #1d6f42;
  font-weight: 600;
  font-size: 0.92rem;
  text-align: center;
}

/* ============ CTA ============ */
.cta {
  background: var(--navy-900);
  color: #fff;
  padding: clamp(70px, 9vw, 120px) 0;
  text-align: center;
  border-top: 5px solid var(--amber);
}

.cta h2 { color: #fff; }

.cta p {
  margin: 18px auto 0;
  max-width: 540px;
  color: var(--steel-400);
}

.cta-actions {
  margin-top: 36px;
  display: flex;
  gap: 22px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.cta-phone {
  font-family: "Anton", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  color: var(--amber);
  text-decoration: none;
}

.cta-address {
  margin-top: 28px;
  font-size: 0.9rem;
  color: var(--steel-400) !important;
}

/* ============ Footer ============ */
.footer {
  background: var(--navy-900);
  color: var(--steel-400);
  padding: 48px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer .brand-mark { color: #fff; text-shadow: 2px 2px 0 rgba(143, 163, 191, 0.25); }

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}

.footer-info p { font-size: 0.9rem; }
.footer-info a { color: var(--steel-200); text-decoration: none; }
.footer-copy { font-size: 0.8rem; opacity: 0.7; }

/* ============ Reveal animation ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============ Responsive ============ */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-panel { max-width: 480px; margin: 0 auto; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .about-grid, .whyus-grid, .apply-grid { grid-template-columns: 1fr; }
  .whyus-intro { position: static; }
  .stats-row { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 640px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px 26px;
    gap: 18px;
    display: none;
    border-bottom: 1px solid var(--steel-100);
    box-shadow: var(--shadow);
  }

  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-cta { margin-top: 4px; }

  .services-grid, .form-row { grid-template-columns: 1fr; }
}
