/* ============================================================
   LTLShipping.com — Shared Stylesheet
   ============================================================ */
:root {
  --black: #0a0c0f;
  --dark: #111417;
  --dark2: #1a1e24;
  --panel: #1f242c;
  --border: #2a3040;
  --accent: #f5a623;
  --accent2: #e8940d;
  --accent-glow: rgba(245,166,35,0.15);
  --text: #e8ecf0;
  --text-muted: #7a8694;
  --text-dim: #4a5568;
  --white: #ffffff;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow-accent: 0 0 40px rgba(245,166,35,0.2);
  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --max-w: 1160px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black); color: var(--text);
  font-family: var(--font-body); font-size: 16px;
  line-height: 1.6; -webkit-font-smoothing: antialiased;
}
a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent2); }
img { max-width: 100%; display: block; border-radius: var(--radius-lg); }

/* LAYOUT */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  letter-spacing: 0.03em; text-transform: uppercase;
  padding: 12px 28px; border-radius: var(--radius);
  border: none; cursor: pointer; transition: all 0.2s ease; white-space: nowrap;
}
.btn-primary {
  background: var(--accent); color: var(--black);
  box-shadow: 0 4px 20px rgba(245,166,35,0.35);
}
.btn-primary:hover {
  background: var(--accent2); color: var(--black);
  transform: translateY(-2px); box-shadow: 0 8px 30px rgba(245,166,35,0.5);
}
.btn-outline {
  background: transparent; color: var(--accent);
  border: 2px solid var(--accent);
}
.btn-outline:hover { background: var(--accent); color: var(--black); }
.btn-xl { font-size: 1.15rem; padding: 18px 40px; letter-spacing: 0.05em; }

/* HEADER */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10,12,15,0.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border); height: 64px;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between; height: 64px; gap: 24px;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-svg { width: 38px; height: 38px; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-wordmark {
  font-family: var(--font-head); font-weight: 800; font-size: 1.05rem;
  color: var(--white); letter-spacing: 0.04em; text-transform: uppercase;
}
.logo-domain {
  font-family: var(--font-head); font-weight: 500; font-size: 0.65rem;
  color: var(--text-muted); letter-spacing: 0.12em; text-transform: uppercase;
}

/* NAV */
.nav { display: flex; align-items: center; gap: 4px; flex: 1; justify-content: center; }
.nav a {
  font-family: var(--font-head); font-weight: 600; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted);
  padding: 6px 12px; border-radius: var(--radius); transition: all 0.2s;
}
.nav a:hover, .nav a.active { color: var(--accent); background: var(--accent-glow); }

/* DROPDOWN */
.nav-item { position: relative; }
.nav-item:hover .dropdown { display: block; }
.dropdown {
  display: none; position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%); min-width: 200px;
  background: var(--dark2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 8px; z-index: 200;
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}
.dropdown a {
  display: block; padding: 8px 14px; border-radius: var(--radius);
  font-size: 0.85rem; color: var(--text-muted); white-space: nowrap;
}
.dropdown a:hover { color: var(--accent); background: var(--accent-glow); }

/* SECTION TITLES */
.section-title {
  font-family: var(--font-head); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; text-transform: uppercase; letter-spacing: -0.01em;
  color: var(--white); text-align: center; margin-bottom: 12px;
}
.section-title.left { text-align: left; }
.section-sub {
  text-align: center; color: var(--text-muted); font-size: 1.05rem;
  margin-bottom: 48px; max-width: 520px; margin-left: auto; margin-right: auto;
}
.section-sub.left { text-align: left; margin-left: 0; }

/* CARDS */
.card {
  background: var(--dark2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 24px;
  transition: border-color 0.25s, transform 0.25s;
}
.card:hover { border-color: rgba(245,166,35,0.4); transform: translateY(-3px); }

/* ICON ROW */
.icon-lg { font-size: 2rem; margin-bottom: 16px; }
.card h3 {
  font-family: var(--font-head); font-size: 1.15rem; font-weight: 700;
  text-transform: uppercase; color: var(--white); margin-bottom: 10px; letter-spacing: 0.01em;
}
.card p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.65; }

/* CTA BOX */
.cta-box {
  background: linear-gradient(135deg, var(--dark2) 0%, var(--panel) 100%);
  border: 1px solid rgba(245,166,35,0.25); border-radius: var(--radius-lg);
  padding: 64px 48px; text-align: center; position: relative; overflow: hidden;
  box-shadow: var(--shadow-accent);
}
.cta-box::before {
  content: ''; position: absolute; top: -60px; left: 50%; transform: translateX(-50%);
  width: 400px; height: 200px;
  background: radial-gradient(ellipse, rgba(245,166,35,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-box h2 {
  font-family: var(--font-head); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; text-transform: uppercase; color: var(--white);
  margin-bottom: 16px; letter-spacing: -0.01em;
}
.cta-box p {
  color: var(--text-muted); font-size: 1.05rem;
  max-width: 500px; margin: 0 auto 36px; line-height: 1.7;
}
.cta-note { margin-top: 12px; font-size: 0.85rem; color: var(--text-dim); }
.cta-note-light { margin-top: 16px; font-size: 0.85rem; color: rgba(255,255,255,0.4); }

/* BREADCRUMB */
.breadcrumb {
  padding: 80px 0 0;
  font-size: 0.82rem; color: var(--text-dim);
  display: flex; align-items: center; gap: 6px;
}
.breadcrumb a { color: var(--text-dim); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--text-muted); }

/* FOOTER */
.footer { background: var(--dark2); border-top: 1px solid var(--border); }
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; padding: 56px 24px 48px;
}
.footer-col p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; margin-top: 12px; max-width: 260px; }
.footer-col h4 {
  font-family: var(--font-head); font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-dim); margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li, .footer-col ul li a { font-size: 0.9rem; color: var(--text-muted); }
.footer-col ul li a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid var(--border); padding: 20px 0; }
.footer-bottom .container {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { color: var(--text-dim); font-size: 0.8rem; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: var(--text-dim); font-size: 0.8rem; }
.footer-links a:hover { color: var(--text-muted); }

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .nav { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-inner .footer-col:first-child { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .cta-box { padding: 40px 24px; }
  .btn-xl { font-size: 1rem; padding: 16px 28px; width: 100%; }
}
