/* ═══════════════════════════════════════════════════
   Whitestone Transportation — Global Stylesheet
   West Computers | March 2026
═══════════════════════════════════════════════════ */

/* ─── CSS Variables ─── */
:root {
  --navy:       #0D1F3C;
  --navy-dark:  #091628;
  --navy-mid:   #112649;
  --gray:       #5A5A5A;
  --white:      #FFFFFF;
  --gold:       #C8A84B;
  --gold-dark:  #b3933e;
  --light-gray: #F4F5F7;
  --charcoal:   #333333;
  --border:     #CCCCCC;
  --cool-blue:  #EDF3FB;
}

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Arial', 'Helvetica Neue', Helvetica, sans-serif;
  font-size: 16px;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
}
a { color: var(--navy); text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Buttons ─── */
.btn {
  display: inline-block;
  font-family: 'Arial', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  min-height: 48px;
  text-decoration: none;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover {
  background: var(--gold-dark);
  box-shadow: 0 4px 16px rgba(200,168,75,0.35);
  transform: translateY(-1px);
}
.btn-secondary { background: var(--navy); color: var(--white); }
.btn-secondary:hover {
  background: var(--navy-dark);
  box-shadow: 0 4px 16px rgba(13,31,60,0.3);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-1px);
}
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline-navy:hover {
  background: rgba(13,31,60,0.06);
  transform: translateY(-1px);
}

/* ─── Navigation ─── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--navy);
  height: 68px;
  display: flex;
  align-items: center;
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 2px 12px rgba(0,0,0,0.35); }
.navbar .container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo {
  height: 34px;
  width: auto;
  mix-blend-mode: screen;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  color: var(--white);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  border: none !important;
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 12px !important;
  letter-spacing: 0.08em;
  border-bottom: none !important;
}
.nav-cta:hover {
  background: var(--gold-dark) !important;
  color: var(--navy) !important;
  border-bottom-color: transparent !important;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: var(--navy-dark);
  z-index: 999;
  padding: 20px 24px 32px;
  flex-direction: column;
  gap: 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-decoration: none;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .btn { margin-top: 20px; text-align: center; }

/* ─── Inner Page Hero ─── */
.page-hero {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  padding-top: 68px;
  overflow: hidden;
  background: var(--navy);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-color: var(--navy);
  background-size: cover;
  background-position: center 35%;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(9,22,40,0.96) 0%, rgba(13,31,60,0.80) 60%, rgba(13,31,60,0.90) 100%);
}
.page-hero-road {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 20%, var(--gold) 80%, transparent 100%);
  opacity: 0.6;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 56px 0 48px;
}
.page-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.page-hero-eyebrow span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.page-hero-eyebrow-line {
  width: 32px; height: 1px;
  background: var(--gold);
}
.page-hero h1 {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-bottom: 14px;
}
.page-hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.80);
  max-width: 560px;
  line-height: 1.65;
}

/* ─── Section Shared ─── */
section { padding: 88px 0; }
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: '';
  display: block;
  width: 32px; height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}
h2.section-title {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.15;
}
.section-intro {
  font-size: 17px;
  color: var(--gray);
  max-width: 620px;
  line-height: 1.7;
}
.section-head { margin-bottom: 52px; }

/* ─── Gold Rule ─── */
.gold-rule {
  display: block;
  width: 56px; height: 3px;
  background: var(--gold);
  margin: 20px 0 0;
}

/* ─── CTA Band ─── */
.cta-band {
  background: var(--gold);
  padding: 64px 0;
  text-align: center;
}
.cta-band h2 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.cta-band p {
  font-size: 17px;
  color: rgba(13,31,60,0.75);
  margin-bottom: 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.cta-band-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cta-band .btn-secondary { background: var(--navy); color: var(--white); }
.cta-band .btn-outline-navy {
  border-color: var(--navy);
  color: var(--navy);
}
.cta-band .btn-outline-navy:hover { background: rgba(13,31,60,0.08); }

/* ─── Feature Cards ─── */
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px 28px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  transition: transform 0.22s, box-shadow 0.22s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(13,31,60,0.13);
}
.feature-card-icon {
  width: 48px; height: 48px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-card-icon svg { width: 24px; height: 24px; fill: var(--gold); }
.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.65;
}
.feature-card-accent {
  border-top: 3px solid var(--gold);
}

/* ─── Stat Boxes ─── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--navy);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(13,31,60,0.15);
}
.stat-box {
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-box:last-child { border-right: none; }
.stat-box-num {
  font-size: 42px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-box-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6);
}
.stat-box-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-top: 2px;
}

/* ─── Scroll Fade Animation ─── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Footer ─── */
footer {
  background: var(--navy);
  color: var(--white);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 40px;
}
.footer-brand { display: flex; flex-direction: column; gap: 0; }
.footer-logo-text {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.1;
}
.footer-logo-llc {
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 16px;
}
.footer-tagline {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 20px;
}
.footer-smartway-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,168,75,0.1);
  border: 1px solid rgba(200,168,75,0.25);
  border-radius: 6px;
  padding: 8px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
}
.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-contact-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}
.footer-contact-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2px;
}
.footer-contact-value {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}
.footer-contact-value a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact-value a:hover { color: var(--gold); }
.footer-bottom {
  margin-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom-left {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}
.footer-bottom-right { display: flex; gap: 20px; }
.footer-bottom-right a {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-bottom-right a:hover { color: var(--gold); }

/* ─── Responsive ─── */
@media (max-width: 960px) {
  .stats-row { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  section { padding: 64px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; border-radius: 8px; }
  .stat-box { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat-box:last-child { border-bottom: none; }
}
@media (max-width: 480px) {
  .cta-band-btns { flex-direction: column; align-items: center; }
  .stats-row { grid-template-columns: 1fr; }
}
