/* =========================================================================
   LRC Transport LLC - lrctransportllc.com
   Dark industrial theme. Mobile-first. Shared by EN and /es/ pages.
   ========================================================================= */

:root {
  --bg: #141417;
  --bg-2: #1b1b20;
  --panel: #202027;
  --line: #2e2e37;
  --text: #ececee;
  --muted: #a2a2ac;
  --accent: #ff7a00;
  --accent-dark: #d96400;
  --radius: 10px;
  --wrap: 1100px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, .logo {
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

h1 { font-size: clamp(2.4rem, 7vw, 4.2rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 4.5vw, 2.5rem); font-weight: 700; margin-bottom: 0.75rem; }
h3 { font-size: 1.35rem; font-weight: 700; margin-bottom: 0.4rem; }

p { margin-bottom: 1rem; }
.muted { color: var(--muted); }

a { color: var(--accent); text-decoration: none; }
a:hover { color: #ffa04d; }

.accent { color: var(--accent); }

/* ---- Header / nav ------------------------------------------------------ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(20, 20, 23, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(6px);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 16px;
}

.logo {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.logo-mark { height: 34px; width: auto; }
.logo span { color: var(--accent); }
.logo:hover { color: var(--text); }

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

.site-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
  padding: 10px 20px 18px;
}
.site-nav.open { display: block; }
.site-nav a {
  display: block;
  padding: 10px 4px;
  color: var(--text);
  font-weight: 600;
  border-bottom: 1px solid var(--line);
}
.site-nav a:last-child { border-bottom: none; }
.site-nav a.active { color: var(--accent); }
.site-nav a.lang { color: var(--muted); font-weight: 500; }
.site-nav a:hover { color: var(--accent); }

@media (min-width: 820px) {
  .nav-toggle { display: none; }
  .site-nav {
    display: flex;
    position: static;
    background: none;
    border: none;
    padding: 0;
    align-items: center;
    gap: 26px;
  }
  .site-nav a { padding: 0; border: none; }
}

/* ---- Buttons ----------------------------------------------------------- */

.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid var(--accent);
  cursor: pointer;
  text-align: center;
  transition: background 0.15s, color 0.15s;
}
.btn-solid { background: var(--accent); color: #141417; }
.btn-solid:hover { background: var(--accent-dark); border-color: var(--accent-dark); color: #141417; }
.btn-ghost { background: transparent; color: var(--text); }
.btn-ghost:hover { background: var(--accent); color: #141417; }

/* ---- Hazard stripe accent ---------------------------------------------- */

.stripe {
  height: 8px;
  background: repeating-linear-gradient(
    -45deg,
    var(--accent) 0 14px,
    #141417 14px 28px
  );
}

/* ---- Hero -------------------------------------------------------------- */

.hero {
  position: relative;
  padding: 72px 0 80px;
  background:
    radial-gradient(ellipse at 75% 20%, rgba(255, 122, 0, 0.14), transparent 55%),
    linear-gradient(180deg, #17171b 0%, #141417 100%);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -40px;
  right: -60px;
  width: 420px;
  height: 420px;
  background: repeating-linear-gradient(-45deg, rgba(255,122,0,0.05) 0 16px, transparent 16px 32px);
  transform: rotate(8deg);
  pointer-events: none;
}
.hero .kicker {
  display: inline-block;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 14px;
}
.hero p.lead {
  max-width: 560px;
  font-size: 1.15rem;
  color: var(--muted);
  margin: 18px 0 30px;
}
.hero .cta-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---- Trust bar ---------------------------------------------------------- */

.trustbar { background: var(--bg-2); border-bottom: 1px solid var(--line); }
.trustbar .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 32px;
  padding-top: 14px;
  padding-bottom: 14px;
  justify-content: center;
}
.trustbar span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
  white-space: nowrap;
}
.trustbar b { color: var(--accent); }

/* ---- Sections & cards --------------------------------------------------- */

.section { padding: 64px 0; }
.section.alt { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { max-width: 640px; margin-bottom: 36px; }
.section-head p { color: var(--muted); }

.grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 680px) { .grid.cols-2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .grid.cols-3 { grid-template-columns: 1fr 1fr 1fr; } }

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
}
.card .icon {
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  color: var(--accent);
}
.card p { color: var(--muted); margin-bottom: 0; }
.card ul { color: var(--muted); padding-left: 20px; margin-top: 8px; }
.card li { margin-bottom: 6px; }

/* ---- Steps (drivers page) ----------------------------------------------- */

.step { display: flex; gap: 18px; align-items: flex-start; }
.step .num {
  flex: 0 0 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #141417;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step p { color: var(--muted); margin-bottom: 0; }

/* ---- CTA band ------------------------------------------------------------ */

.cta-band {
  background: linear-gradient(90deg, var(--accent-dark), var(--accent));
  color: #141417;
}
.cta-band .wrap {
  padding-top: 44px;
  padding-bottom: 44px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.cta-band h2 { margin-bottom: 4px; }
.cta-band p { margin: 0; font-weight: 600; }
.cta-band .btn { border-color: #141417; background: #141417; color: #fff; }
.cta-band .btn:hover { background: #26262c; }

/* ---- Forms ---------------------------------------------------------------- */

.form-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 24px;
  max-width: 760px;
}
.form-grid { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 680px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .form-grid .full { grid-column: 1 / -1; }
}
label {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 6px;
}
label .req { color: var(--accent); }
input, select, textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  font: inherit;
}
input:focus, select:focus, textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 0;
  border-color: var(--accent);
}
textarea { min-height: 120px; resize: vertical; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ---- Contact info block ---------------------------------------------------- */

.info-list { list-style: none; }
.info-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}
.info-list li:last-child { border-bottom: none; }
.info-list b { color: var(--text); }
.info-list svg { flex: 0 0 22px; margin-top: 3px; color: var(--accent); }

/* ---- Footer ----------------------------------------------------------------- */

.site-footer {
  background: #101013;
  border-top: 1px solid var(--line);
  padding: 44px 0 30px;
  color: var(--muted);
  font-size: 0.95rem;
}
.footer-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
  margin-bottom: 28px;
}
@media (min-width: 680px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.site-footer h3 { color: var(--text); font-size: 1.1rem; margin-bottom: 10px; }
.site-footer a { color: var(--muted); display: inline-block; padding: 3px 0; }
.site-footer a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  font-size: 0.85rem;
}

/* ---- Utility ------------------------------------------------------------------ */

.mt-1 { margin-top: 12px; }
.mt-2 { margin-top: 24px; }
.center { text-align: center; }
.placeholder-note {
  display: inline-block;
  background: rgba(255, 122, 0, 0.12);
  border: 1px dashed var(--accent-dark);
  color: #ffb877;
  border-radius: 6px;
  padding: 2px 8px;
  font-size: 0.8rem;
}
