/* ============================================
   WIJES LOGISTICS — style.css
   Industrial · Authoritative · Pacific Northwest
   ============================================ */

:root {
  --navy: #0B1929;
  --navy-mid: #112236;
  --navy-light: #1A3450;
  --amber: #F1592A;
  --amber-dark: #C8401A;
  --white: #FFFFFF;
  --off-white: #F5F3EE;
  --gray-100: #E8E6E1;
  --gray-400: #9B9690;
  --gray-600: #5C5A55;
  --text-body: #2A2825;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --radius: 4px;
  --container: 1200px;
  --transition: 0.25s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9rem 2rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-primary {
  background: var(--amber);
  color: var(--navy);
  border-color: var(--amber);
}
.btn-primary:hover {
  background: var(--amber-dark);
  border-color: var(--amber-dark);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

/* ---- SECTION LABELS ---- */
.section-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
}
.section-label.light { color: var(--amber); }

.section-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin-bottom: 2rem;
}
.section-title.light { color: var(--white); }

/* ==============================
   HEADER / NAV
   ============================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
  border-bottom-color: rgba(255,255,255,0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo-img {
  height: 42px;
  width: auto;
  display: block;
}
.logo-img.footer-logo {
  height: 46px;
  /* Invert dark text to white for footer readability */
  filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(340deg);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.main-nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255,255,255,0.8);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}
.main-nav a:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.main-nav .nav-track {
  background: var(--amber);
  color: var(--navy);
  padding: 0.5rem 1.25rem;
  margin-left: 0.5rem;
}
.main-nav .nav-track:hover { background: var(--amber-dark); color: var(--navy); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ==============================
   HERO
   ============================== */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('hero-bg.jpg');
  background-size: cover;
  background-position: center 60%;
  background-repeat: no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(11,25,41,0.78) 0%,
    rgba(11,25,41,0.65) 40%,
    rgba(11,25,41,0.82) 80%,
    rgba(11,25,41,0.97) 100%
  );
}
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(244,163,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244,163,0,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
.hero-content {
  position: relative;
  z-index: 3;
  padding-top: 120px;
  padding-bottom: 160px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.5rem;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--amber);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}
.hero-headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero-headline .accent { color: var(--amber); }
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.hero-sub em { color: rgba(255,255,255,0.9); font-style: normal; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Trust Bar */
.trust-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(244,163,0,0.12);
  border-top: 1px solid rgba(244,163,0,0.25);
  backdrop-filter: blur(8px);
  z-index: 3;
}
.trust-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 1rem 0.5rem;
  flex: 1;
  justify-content: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.trust-item:last-child { border-right: none; }
.ti-icon { color: var(--amber); font-weight: 900; }

/* ==============================
   SERVICES
   ============================== */
.services {
  padding: 6rem 0;
  background: var(--off-white);
}
.services .section-title { margin-bottom: 3rem; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--gray-100);
  border: 1.5px solid var(--gray-100);
}
.service-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  position: relative;
  transition: background var(--transition);
}
.service-card:hover { background: var(--navy); }
.service-card:hover h3,
.service-card:hover p,
.service-card:hover li { color: var(--white); }
.service-card:hover .svc-number { color: var(--amber); }
.svc-number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 3rem;
  line-height: 1;
  color: var(--gray-100);
  margin-bottom: 1rem;
  transition: color var(--transition);
}
.service-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.03em;
  color: var(--navy);
  margin-bottom: 0.75rem;
  transition: color var(--transition);
}
.service-card p {
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 1rem;
  transition: color var(--transition);
}
.service-card ul { list-style: none; }
.service-card li {
  font-size: 0.85rem;
  color: var(--gray-600);
  padding: 0.2rem 0;
  transition: color var(--transition);
}
.service-card li::before { content: "— "; color: var(--amber); }

/* ==============================
   ABOUT
   ============================== */
.about {
  padding: 6rem 0;
  background: var(--white);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-left p {
  color: var(--gray-600);
  margin-bottom: 1.25rem;
  line-height: 1.75;
}
.about-left .btn { margin-top: 1rem; }
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--gray-100);
  border: 1px solid var(--gray-100);
  margin-bottom: 1.5rem;
}
.stat-block {
  background: var(--navy);
  padding: 2rem 1.5rem;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.8rem;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.stat-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.credentials-box {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.cred-item {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius);
}

/* ==============================
   QUOTE SECTION
   ============================== */
.quote-section {
  padding: 6rem 0;
  background: var(--navy-mid);
  background-image: linear-gradient(135deg, #0B1929 0%, #112236 100%);
}
.quote-section .section-title { margin-bottom: 0.5rem; }
.quote-intro {
  color: rgba(255,255,255,0.55);
  font-size: 1rem;
  margin-bottom: 3rem;
}
.quote-form {
  max-width: 760px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 2.5rem;
}
.form-row { margin-bottom: 1.25rem; }
.form-row.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 0;
}
.form-row.two-col { margin-bottom: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.45rem; }
.form-group label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  transition: border-color var(--transition), background var(--transition);
  outline: none;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-group select option { background: var(--navy); color: var(--white); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--amber);
  background: rgba(255,255,255,0.09);
}
.btn-submit {
  margin-top: 0.5rem;
  font-size: 1.05rem;
  padding: 1rem 2.5rem;
}

/* ==============================
   DRIVERS
   ============================== */
.drivers {
  padding: 6rem 0;
  background: var(--off-white);
}
.drivers-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.drivers-left p { color: var(--gray-600); margin-bottom: 2rem; line-height: 1.75; }
.driver-perks { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem; }
.perk { display: flex; gap: 1rem; align-items: flex-start; }
.perk-icon {
  width: 42px; height: 42px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.perk strong { display: block; font-size: 0.95rem; color: var(--navy); margin-bottom: 0.2rem; }
.perk p { font-size: 0.88rem; color: var(--gray-600); margin: 0; line-height: 1.55; }
.req-box {
  background: var(--navy);
  border-radius: 8px;
  padding: 2rem;
}
.req-box h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.25rem;
}
.req-box ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.5rem; }
.req-box li { font-size: 0.9rem; color: rgba(255,255,255,0.75); padding-left: 1.2rem; position: relative; }
.req-box li::before { content: "✓"; position: absolute; left: 0; color: var(--amber); font-weight: 700; }
.vehicle-types { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.vt {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(244,163,0,0.15);
  color: var(--amber);
  border: 1px solid rgba(244,163,0,0.3);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius);
}

/* ==============================
   CONTACT
   ============================== */
.contact {
  padding: 6rem 0;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contact-details { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 1.5rem; }
.cd-item { display: flex; flex-direction: column; gap: 0.25rem; }
.cd-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
}
.cd-item a, .cd-item span { font-size: 0.95rem; color: var(--gray-600); text-decoration: none; line-height: 1.55; }
.cd-item a:hover { color: var(--navy); }

.contact-form {
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: 8px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-form .form-group label { color: var(--navy); opacity: 0.7; }
.contact-form input,
.contact-form textarea {
  background: var(--white);
  border: 1px solid var(--gray-100);
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  width: 100%;
  outline: none;
  transition: border-color var(--transition);
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--amber); }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--gray-400); }

/* ==============================
   FOOTER
   ============================== */
.site-footer {
  background: var(--navy);
  padding: 2.5rem 0;
  border-top: 2px solid var(--amber);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
.footer-brand { display: flex; align-items: center; }
.footer-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-meta span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.footer-copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
}
.footer-copy a { color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-copy a:hover { color: var(--amber); }

/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 1.5rem;
    gap: 0.25rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  }
  .main-nav.open { display: flex; }
  .main-nav a { width: 100%; padding: 0.75rem 1rem; }
  .main-nav .nav-track { text-align: center; }
  .hamburger { display: flex; }

  .trust-inner { justify-content: flex-start; gap: 0; }
  .trust-item { flex: none; min-width: 50%; border-bottom: 1px solid rgba(255,255,255,0.08); }

  .services-grid { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .drivers-inner { grid-template-columns: 1fr; gap: 3rem; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }

  .form-row.two-col { grid-template-columns: 1fr; }
  .quote-form { padding: 1.5rem; }

  .hero-headline { font-size: clamp(2.8rem, 10vw, 5rem); }
}
@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .trust-item { min-width: 100%; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { text-align: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
