:root {
  --bg-dark: #020617;
  --bg-surface: #020817;
  --bg-card: #020f1f;
  --accent: #0ea5e9;            /* cyan */
  --accent-soft: rgba(14, 165, 233, 0.18);
  --accent-strong: #22c55e;     /* green */
  --accent-warm: #f97316;       /* orange */
  --text-main: #e5e7eb;
  --text-muted: #9ca3af;
  --border-subtle: rgba(148, 163, 184, 0.28);
  --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.9);
  --radius-xl: 18px;
  --transition-fast: 180ms ease-out;
}

/* RESET / GLOBAL */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  background: radial-gradient(circle at top, #020617 0, #020617 40%, #020617 100%);
  color: var(--text-main);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

/* PAGE WRAPPER */

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* NAVBAR */

.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(2, 6, 23, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.9);
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.7rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0%, #22c55e 0, #0ea5e9 38%, #020617 80%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 0 1px rgba(148, 163, 184, 0.6),
    0 10px 26px rgba(15, 23, 42, 0.9);
}

.logo-mark span {
  font-size: 0.82rem;
  font-weight: 700;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text-main {
  font-weight: 600;
  letter-spacing: 0.05em;
  font-size: 0.95rem;
  text-transform: uppercase;
}

.logo-text-sub {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.16em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  font-size: 0.88rem;
}

.nav-links a {
  position: relative;
  padding-bottom: 0.1rem;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  border-radius: 999px;
  background: linear-gradient(to right, var(--accent), var(--accent-strong));
  transition: width var(--transition-fast);
}

.nav-links a:hover {
  color: var(--text-main);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 0.55rem 1.25rem;
  border-radius: 999px;
  border: 1px solid rgba(56, 189, 248, 0.7);
  background: linear-gradient(
    to right,
    rgba(14, 165, 233, 0.18),
    rgba(34, 197, 94, 0.35)
  );
  box-shadow: 0 0 24px rgba(56, 189, 248, 0.5);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    background var(--transition-fast);
}

.nav-cta:hover {
  transform: translateY(-1px);
  background: linear-gradient(
    to right,
    rgba(34, 197, 94, 0.35),
    rgba(249, 115, 22, 0.4)
  );
  box-shadow: 0 0 34px rgba(56, 189, 248, 0.9);
}

/* HERO – BACKGROUND CAROUSEL */

.hero {
  position: relative;
  padding: 4.8rem 1.4rem 3.5rem;
  overflow: hidden;
  color: var(--text-main);
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: heroFade 18s infinite;
}

.hero-slide:nth-child(1) {
  background-image: url("./images/truck1.jpg");
  animation-delay: 0s;
}

.hero-slide:nth-child(2) {
  background-image: url("./images/truck3.jpg");
  animation-delay: 6s;
}

.hero-slide:nth-child(3) {
  background-image: url("./images/Truck4.jpg");
  animation-delay: 12s;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(34, 197, 94, 0.3), transparent 55%),
    radial-gradient(circle at bottom right, rgba(249, 115, 22, 0.35), transparent 55%),
    linear-gradient(to bottom, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.94) 40%, rgba(15, 23, 42, 0.97));
  z-index: 1;
}

@keyframes heroFade {
  0% { opacity: 0; }
  6% { opacity: 1; }
  28% { opacity: 1; }
  34% { opacity: 0; }
  100% { opacity: 0; }
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2.4rem;
  align-items: center;
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.28rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.55);
  margin-bottom: 1rem;
}

.hero-eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.9);
}

.hero-title {
  font-size: clamp(2.3rem, 4.3vw, 3.1rem);
  line-height: 1.06;
  margin-bottom: 0.7rem;
}

.hero-title span.highlight {
  background: linear-gradient(to right, var(--accent), var(--accent-strong), var(--accent-warm));
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 0.98rem;
  color: var(--text-muted);
  max-width: 32rem;
  margin-bottom: 1.4rem;
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  margin-bottom: 1.6rem;
}

.metric {
  display: flex;
  flex-direction: column;
}

.metric-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  margin-bottom: 0.15rem;
}

.metric-value {
  font-size: 1.1rem;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

/* BUTTONS */

.btn-primary {
  padding: 0.78rem 1.5rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(to right, #0ea5e9, #22c55e, #f97316);
  color: white;
  box-shadow: 0 20px 40px rgba(8, 145, 178, 0.55);
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    filter var(--transition-fast);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 30px 60px rgba(8, 145, 178, 0.8);
  filter: brightness(1.06);
}

.btn-ghost {
  padding: 0.74rem 1.3rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.85);
  color: var(--text-main);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  transition:
    background var(--transition-fast),
    border-color var(--transition-fast),
    transform var(--transition-fast);
}

.btn-ghost span.icon {
  font-size: 1.05rem;
}

.btn-ghost:hover {
  background: rgba(15, 23, 42, 1);
  border-color: rgba(56, 189, 248, 0.9);
  transform: translateY(-1px);
}

/* HERO RIGHT CARD (LANES) */

.hero-card {
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.96));
  border-radius: 26px;
  padding: 1.2rem;
  border: 1px solid rgba(148, 163, 184, 0.55);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 0 0, rgba(14, 165, 233, 0.2), transparent 55%),
    radial-gradient(circle at 100% 0, rgba(22, 163, 74, 0.2), transparent 55%);
  opacity: 0.8;
  z-index: -1;
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.9rem;
}

.hero-card-title {
  font-size: 0.96rem;
  font-weight: 600;
}

.card-tagline {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  margin-top: 0.1rem;
}

.badge {
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(22, 163, 74, 0.2);
  color: #bbf7d0;
  font-size: 0.7rem;
  border: 1px solid rgba(34, 197, 94, 0.6);
}

.lane {
  background: rgba(15, 23, 42, 0.88);
  border-radius: 16px;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  margin-bottom: 0.5rem;
}

.lane strong {
  font-weight: 600;
}

.lane span.tag {
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(14, 165, 233, 0.18);
  border: 1px solid rgba(56, 189, 248, 0.7);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-card-footer {
  margin-top: 0.6rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.pill {
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px dashed rgba(148, 163, 184, 0.7);
  font-size: 0.7rem;
}

/* GENERIC SECTION STYLES */

main {
  flex: 1;
}

section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 3rem 1.4rem;
}

.section-header {
  margin-bottom: 1.6rem;
}

.section-eyebrow {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}

.section-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.section-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 32rem;
}

/* SERVICES GRID */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.3rem;
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.card {
  background: radial-gradient(circle at top, #020617, #020617 70%);
  border-radius: var(--radius-xl);
  padding: 1.1rem;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.75);
  position: relative;
  overflow: hidden;
  transition:
    transform 160ms ease-out,
    box-shadow 160ms ease-out,
    border-color 160ms ease-out,
    background 160ms ease-out;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(14, 165, 233, 0.2), transparent 55%);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(15, 23, 42, 0.95);
  border-color: rgba(56, 189, 248, 0.9);
}

.card:hover::before {
  opacity: 1;
}

.card-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.38rem;
}

.card-body {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.9rem;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.chip {
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid rgba(14, 165, 233, 0.9);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* JOBS */

.job-section {
  border-top: 1px solid rgba(15, 23, 42, 0.95);
  border-bottom: 1px solid rgba(15, 23, 42, 0.95);
  background: radial-gradient(circle at top, #020b2b, #020617 65%);
}

.job-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
  margin-top: 1.4rem;
}

@media (max-width: 900px) {
  .job-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .job-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.job-card {
  background: #020617;
  border-radius: 18px;
  padding: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.55);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.85);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  transition:
    transform 160ms ease-out,
    box-shadow 160ms ease-out,
    border-color 160ms ease-out;
  cursor: pointer;
}

.job-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 52px rgba(34, 197, 94, 0.9);
  border-color: rgba(34, 197, 94, 0.95);
}

.job-badge {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}

.job-title {
  font-size: 1rem;
  font-weight: 600;
}

.job-pay {
  font-size: 0.9rem;
  color: #bbf7d0;
  font-weight: 500;
}

.job-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  font-size: 0.7rem;
}

.job-tag {
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 1);
  border: 1px solid rgba(148, 163, 184, 0.75);
}

.job-footer {
  margin-top: 0.2rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.job-cta {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #a5f3fc;
}

/* CONTACT */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 1.6rem;
}

@media (max-width: 800px) {
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.contact-card {
  background: #020617;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.48);
  padding: 1.2rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.9);
}

.contact-card h3 {
  font-size: 1rem;
  margin-bottom: 0.6rem;
}

.contact-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}

.contact-row {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 0.7rem;
  font-size: 0.9rem;
}

.contact-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}

.contact-value {
  font-weight: 500;
}

.contact-form {
  display: grid;
  gap: 0.7rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.85rem;
}

.field label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}

.field input,
.field textarea,
.field select {
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.48);
  background: rgba(15, 23, 42, 0.98);
  padding: 0.55rem 0.7rem;
  color: var(--text-main);
  font-size: 0.85rem;
  outline: none;
  transition:
    border-color 140ms ease-out,
    box-shadow 140ms ease-out,
    background 140ms ease-out;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: rgba(14, 165, 233, 0.95);
  box-shadow: 0 0 0 1px rgba(14, 165, 233, 0.9);
  background: rgba(15, 23, 42, 1);
}

.field textarea {
  resize: vertical;
  min-height: 100px;
}

/* FOOTER */

footer {
  border-top: 1px solid rgba(15, 23, 42, 0.95);
  padding: 1.4rem 1.4rem 1.7rem;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.8rem;
}
