/* ============================================================
   Core Transit Logistics — theme-aware stylesheet
   Light is the default; [data-theme="dark"] overrides tokens.
   First-visit theme follows the device (set by an inline script
   in the layout); manual toggle is remembered in localStorage.
   ============================================================ */

:root {
  /* surfaces & text (LIGHT) */
  --bg: #f4f7fc;
  --surface: #ffffff;
  --surface-2: #eaf1f9;
  --text: #16273d;
  --text-strong: #0b1828;
  --muted: #5a6b82;
  --border: rgba(15, 32, 51, 0.10);
  --border-strong: rgba(15, 32, 51, 0.18);

  /* brand */
  --accent: #0891b2;
  --accent-2: #0e7490;
  --accent-grad: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
  --accent-ink: #ffffff;
  --accent-soft: rgba(8, 145, 178, 0.10);
  --accent-border: rgba(8, 145, 178, 0.35);

  /* positive / live */
  --teal: #0d9488;
  --teal-soft: rgba(13, 148, 136, 0.12);
  --teal-border: rgba(13, 148, 136, 0.30);

  /* misc */
  --shadow: 0 18px 45px rgba(15, 32, 51, 0.10);
  --header-bg: rgba(255, 255, 255, 0.82);
  --hero-grad: linear-gradient(180deg, #f4f7fc 0%, #eaf1fb 100%);
  --hero-glow-1: rgba(8, 145, 178, 0.14);
  --hero-glow-2: rgba(13, 148, 136, 0.12);
  --grid-line: rgba(15, 32, 51, 0.05);
  --btn-contrast-bg: #0f2033;
  --btn-contrast-ink: #ffffff;

  --radius: 18px;
  --maxw: 1200px;
  --font: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
}

[data-theme="dark"] {
  --bg: #0a1628;
  --surface: #0f2138;
  --surface-2: #0c1d33;
  --text: #eaf1fb;
  --text-strong: #ffffff;
  --muted: #8aa0bd;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);

  --accent: #22d3ee;
  --accent-2: #67e8f9;
  --accent-grad: linear-gradient(135deg, #22d3ee 0%, #0ea5e9 100%);
  --accent-ink: #04212a;
  --accent-soft: rgba(34, 211, 238, 0.12);
  --accent-border: rgba(34, 211, 238, 0.40);

  --teal: #34d399;
  --teal-soft: rgba(52, 211, 153, 0.12);
  --teal-border: rgba(52, 211, 153, 0.28);

  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --header-bg: rgba(10, 22, 40, 0.85);
  --hero-grad: linear-gradient(180deg, #0a1628 0%, #0f2138 100%);
  --hero-glow-1: rgba(34, 211, 238, 0.18);
  --hero-glow-2: rgba(52, 211, 153, 0.14);
  --grid-line: rgba(255, 255, 255, 0.03);
  --btn-contrast-bg: #0a1628;
  --btn-contrast-ink: #eaf1fb;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color 0.35s ease, color 0.35s ease;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.accent-text {
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 30px; border-radius: 50px;
  font-weight: 600; font-size: 0.95rem; cursor: pointer; border: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
  letter-spacing: 0.2px;
}
.btn-primary { background: var(--accent-grad); color: var(--accent-ink); box-shadow: 0 10px 26px rgba(8, 145, 178, 0.28); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(8, 145, 178, 0.4); }
.btn-ghost { background: transparent; color: var(--text); border: 1.5px solid var(--border-strong); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-2); transform: translateY(-3px); }

/* ---------- Header ---------- */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 18px 0;
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}
header.scrolled {
  background: var(--header-bg); backdrop-filter: blur(14px); padding: 12px 0;
  box-shadow: 0 8px 30px rgba(15, 32, 51, 0.08); border-bottom: 1px solid var(--border);
}
.nav { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 12px; font-weight: 800; font-size: 1.25rem; letter-spacing: -0.5px; color: var(--text-strong); }
.logo-mark {
  width: 42px; height: 42px; border-radius: 12px; background: var(--accent-grad);
  display: grid; place-items: center; color: var(--accent-ink); box-shadow: 0 6px 18px rgba(8, 145, 178, 0.35);
}
.logo-mark svg { width: 24px; height: 24px; }
.logo span small { display: block; font-size: 0.62rem; font-weight: 500; color: var(--muted); letter-spacing: 2px; }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-weight: 500; font-size: 0.95rem; color: var(--text); position: relative; transition: color 0.2s; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--accent-grad); transition: width 0.3s ease; }
.nav-links a:hover, .nav-links a.active { color: var(--accent-2); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.btn-primary::after { display: none; }
.nav-links a.btn-primary { color: var(--accent-ink); }

/* Theme toggle */
.theme-toggle {
  width: 42px; height: 42px; border-radius: 12px; border: 1.5px solid var(--border-strong);
  background: var(--surface); color: var(--text); display: grid; place-items: center; cursor: pointer;
  transition: border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.theme-toggle:hover { border-color: var(--accent); color: var(--accent-2); transform: translateY(-2px); }
.theme-toggle svg { width: 20px; height: 20px; }
.theme-toggle .icon-sun { display: none; }
[data-theme="dark"] .theme-toggle .icon-sun { display: block; }
[data-theme="dark"] .theme-toggle .icon-moon { display: none; }

.menu-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; }
.menu-toggle span { width: 26px; height: 2.5px; background: var(--text); border-radius: 2px; transition: 0.3s; }
.menu-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding: 140px 0 80px; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 600px at 80% 10%, var(--hero-glow-1), transparent 60%),
    radial-gradient(700px 500px at 10% 90%, var(--hero-glow-2), transparent 60%),
    var(--hero-grad);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(var(--grid-line) 1px, transparent 1px), linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(circle at 50% 40%, black, transparent 75%);
  -webkit-mask-image: radial-gradient(circle at 50% 40%, black, transparent 75%);
}
.hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border-radius: 50px;
  background: var(--accent-soft); border: 1px solid var(--accent-border); font-size: 0.82rem; color: var(--accent-2); font-weight: 600; margin-bottom: 24px;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 12px var(--teal); animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero h1 { font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1.08; font-weight: 800; letter-spacing: -1.5px; margin-bottom: 22px; color: var(--text-strong); }
.hero p.lead { font-size: 1.15rem; color: var(--muted); max-width: 540px; margin-bottom: 36px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.hero-stats .stat .num { font-size: 2rem; font-weight: 800; color: var(--text-strong); }
.hero-stats .stat .label { font-size: 0.85rem; color: var(--muted); }

.hero-visual { position: relative; }
.truck-card {
  background: linear-gradient(160deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border); border-radius: 24px; padding: 30px; box-shadow: var(--shadow);
  position: relative; overflow: hidden;
}
.truck-card::before { content: ""; position: absolute; top: -40%; right: -20%; width: 280px; height: 280px; border-radius: 50%; background: var(--accent-grad); opacity: 0.14; filter: blur(20px); }
.route-line { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; }
.route-line .city { font-weight: 700; font-size: 0.95rem; color: var(--text-strong); }
.route-line .track { flex: 1; height: 3px; background: var(--border-strong); border-radius: 3px; position: relative; }
.route-line .track::after { content: ""; position: absolute; left: 0; top: 0; height: 100%; width: 60%; background: var(--accent-grad); border-radius: 3px; animation: grow 2.6s ease-in-out infinite; }
@keyframes grow { 0% { width: 5%; } 50% { width: 90%; } 100% { width: 5%; } }
.route-line .truck-emoji { position: absolute; top: 50%; transform: translate(-50%, -50%); font-size: 1.3rem; animation: move 2.6s ease-in-out infinite; }
@keyframes move { 0% { left: 5%; } 50% { left: 90%; } 100% { left: 5%; } }

.truck-card .meta { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.truck-card .meta .item { background: var(--accent-soft); border: 1px solid var(--border); border-radius: 14px; padding: 14px; }
.truck-card .meta .item .k { font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }
.truck-card .meta .item .v { font-size: 1.05rem; font-weight: 700; margin-top: 4px; color: var(--text-strong); }
.truck-card .status { margin-top: 18px; display: flex; align-items: center; gap: 10px; padding: 12px 16px; background: var(--teal-soft); border: 1px solid var(--teal-border); border-radius: 12px; font-size: 0.88rem; color: var(--teal); font-weight: 600; }

.float-chip {
  position: absolute; background: var(--header-bg); backdrop-filter: blur(10px); border: 1px solid var(--border);
  border-radius: 14px; padding: 12px 16px; display: flex; align-items: center; gap: 10px; font-size: 0.85rem; font-weight: 600; color: var(--text-strong); box-shadow: var(--shadow);
}
.float-chip .ic { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; background: var(--accent-grad); color: var(--accent-ink); }
.chip-1 { top: -22px; left: -26px; animation: floaty 4s ease-in-out infinite; }
.chip-2 { bottom: -20px; right: -18px; animation: floaty 4s ease-in-out infinite 1.5s; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ---------- Sections ---------- */
section { position: relative; }
.section-pad { padding: 100px 0; }
.section-head { max-width: 640px; margin: 0 auto 60px; text-align: center; }
.section-head .eyebrow { color: var(--accent-2); font-weight: 700; letter-spacing: 3px; text-transform: uppercase; font-size: 0.78rem; }
.section-head h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 800; letter-spacing: -1px; margin: 12px 0 16px; color: var(--text-strong); }
.section-head p { color: var(--muted); font-size: 1.05rem; }
.bg-alt { background: var(--surface-2); }

/* Services grid */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.service-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 34px 28px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease; position: relative; overflow: hidden;
}
.service-card::after { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: var(--accent-grad); transform: scaleX(0); transform-origin: left; transition: transform 0.35s ease; }
.service-card:hover { transform: translateY(-8px); border-color: var(--accent-border); box-shadow: var(--shadow); }
.service-card:hover::after { transform: scaleX(1); }
.service-card .icon { width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center; background: var(--accent-soft); color: var(--accent); margin-bottom: 20px; }
.service-card .icon svg { width: 28px; height: 28px; }
.service-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 10px; color: var(--text-strong); }
.service-card p { color: var(--muted); font-size: 0.95rem; }

/* Coverage */
.coverage { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.coverage .states { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.state-card { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 22px; display: flex; align-items: center; gap: 16px; transition: 0.3s; }
.state-card:hover { border-color: var(--accent); transform: translateX(6px); box-shadow: var(--shadow); }
.state-card .badge { width: 50px; height: 50px; border-radius: 12px; background: var(--accent-grad); display: grid; place-items: center; font-weight: 800; color: var(--accent-ink); }
.state-card .info strong { display: block; font-size: 1.05rem; color: var(--text-strong); }
.state-card .info span { font-size: 0.82rem; color: var(--muted); }
.coverage-copy h2 { font-size: clamp(1.9rem, 3.5vw, 2.6rem); font-weight: 800; letter-spacing: -1px; margin-bottom: 18px; color: var(--text-strong); }
.coverage-copy p { color: var(--muted); margin-bottom: 24px; }
.coverage-copy ul.checks li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; }
.coverage-copy ul.checks li .tick { color: var(--teal); flex-shrink: 0; margin-top: 2px; }

/* Same-day */
.sameday { background: linear-gradient(135deg, var(--surface), var(--surface-2)); border: 1px solid var(--border); border-radius: 26px; padding: 56px; position: relative; overflow: hidden; box-shadow: var(--shadow); }
.sameday::before { content: ""; position: absolute; top: -60px; right: -60px; width: 320px; height: 320px; border-radius: 50%; background: var(--accent-grad); opacity: 0.12; filter: blur(30px); }
.sameday .inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.sameday .vic-tag { display: inline-block; padding: 6px 14px; border-radius: 50px; background: var(--accent-soft); color: var(--accent-2); font-weight: 700; font-size: 0.8rem; letter-spacing: 1px; margin-bottom: 16px; }
.sameday h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; letter-spacing: -1px; margin-bottom: 14px; color: var(--text-strong); }
.sameday p { color: var(--muted); }
.delivery-cards { display: grid; gap: 16px; }
.delivery-card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 22px; display: flex; align-items: center; gap: 18px; }
.delivery-card .time { font-size: 2rem; font-weight: 800; }
.delivery-card .desc strong { display: block; color: var(--text-strong); }
.delivery-card .desc span { font-size: 0.85rem; color: var(--muted); }

/* CTA band */
.cta-band { background: var(--accent-grad); border-radius: 28px; padding: 60px; text-align: center; color: var(--accent-ink); position: relative; overflow: hidden; }
.cta-band h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; letter-spacing: -1px; margin-bottom: 14px; }
.cta-band p { font-size: 1.1rem; margin-bottom: 30px; opacity: 0.9; }
.cta-band .btn-dark { background: var(--btn-contrast-bg); color: var(--btn-contrast-ink); box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18); }
.cta-band .btn-dark:hover { transform: translateY(-3px); }

/* ---------- Page hero (About / Contact) ---------- */
.page-hero { padding: 160px 0 70px; position: relative; overflow: hidden; }
.page-hero .hero-bg { position: absolute; inset: 0; }
.page-hero .container { position: relative; z-index: 2; text-align: center; }
.page-hero .eyebrow { color: var(--accent-2); font-weight: 700; letter-spacing: 3px; text-transform: uppercase; font-size: 0.78rem; }
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 800; letter-spacing: -1.5px; margin: 14px 0; color: var(--text-strong); }
.page-hero p { color: var(--muted); max-width: 620px; margin: 0 auto; font-size: 1.1rem; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; font-size: 0.85rem; color: var(--muted); margin-top: 20px; }
.breadcrumb a:hover { color: var(--accent-2); }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-copy h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; letter-spacing: -1px; margin-bottom: 18px; color: var(--text-strong); }
.about-copy p { color: var(--muted); margin-bottom: 18px; }
.about-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.about-visual .av-card { background: var(--surface); border: 1px solid var(--border); border-radius: 18px; padding: 28px; box-shadow: var(--shadow); }
.about-visual .av-card.tall { grid-row: span 2; display: flex; flex-direction: column; justify-content: center; background: linear-gradient(160deg, var(--surface), var(--surface-2)); }
.about-visual .av-card .big { font-size: 2.4rem; font-weight: 800; color: var(--text-strong); }
.about-visual .av-card .label { color: var(--muted); font-size: 0.9rem; }
.about-visual .av-card .icon { width: 50px; height: 50px; border-radius: 12px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; margin-bottom: 16px; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.value-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; transition: 0.3s; }
.value-card:hover { transform: translateY(-6px); border-color: var(--accent-border); box-shadow: var(--shadow); }
.value-card .num { font-size: 2.2rem; font-weight: 800; background: var(--accent-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 10px; }
.value-card h3 { font-size: 1.2rem; margin-bottom: 8px; color: var(--text-strong); }
.value-card p { color: var(--muted); font-size: 0.95rem; }

/* ---------- Contact ---------- */
.contact-wrap { display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; align-items: start; }
.contact-info { display: grid; gap: 18px; }
.info-card { background: var(--surface); border: 1px solid var(--border); border-radius: 18px; padding: 26px; display: flex; gap: 18px; align-items: flex-start; transition: 0.3s; }
.info-card:hover { border-color: var(--accent-border); transform: translateY(-4px); box-shadow: var(--shadow); }
.info-card .ic { width: 50px; height: 50px; flex-shrink: 0; border-radius: 12px; background: var(--accent-grad); color: var(--accent-ink); display: grid; place-items: center; }
.info-card .k { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); }
.info-card .v { font-size: 1.1rem; font-weight: 700; margin-top: 2px; color: var(--text-strong); }
.info-card .v a:hover { color: var(--accent-2); }

.contact-form { background: linear-gradient(160deg, var(--surface), var(--surface-2)); border: 1px solid var(--border); border-radius: 22px; padding: 40px; box-shadow: var(--shadow); }
.contact-form h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 6px; color: var(--text-strong); }
.contact-form p.sub { color: var(--muted); margin-bottom: 26px; font-size: 0.95rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 8px; color: var(--text-strong); }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border-radius: 12px; background: var(--bg); border: 1.5px solid var(--border-strong);
  color: var(--text); font-family: inherit; font-size: 0.95rem; transition: 0.25s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted); opacity: 0.8; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); background: var(--accent-soft); }
.field textarea { resize: vertical; min-height: 120px; }
.field .err { color: #e11d48; font-size: 0.8rem; margin-top: 6px; display: none; }
.field.invalid input, .field.invalid textarea, .field.invalid select { border-color: #e11d48; }
.field.invalid .err { display: block; }
.form-note { font-size: 0.82rem; color: var(--muted); margin-top: 14px; text-align: center; }
.form-success { display: none; background: var(--teal-soft); border: 1px solid var(--teal-border); color: var(--teal); padding: 16px; border-radius: 12px; margin-bottom: 20px; font-weight: 600; }
.form-success.show { display: block; animation: fadeIn 0.4s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }

/* ASP.NET unobtrusive validation */
.field .text-danger, .field span.field-validation-error { color: #e11d48; font-size: 0.8rem; margin-top: 6px; display: block; }
.field span.field-validation-valid { display: none; }
input.input-validation-error, select.input-validation-error, textarea.input-validation-error { border-color: #e11d48; }

/* Dropdown option list */
.field select option { background-color: var(--surface); color: var(--text); }

/* ---------- Footer ---------- */
footer { background: var(--surface-2); border-top: 1px solid var(--border); padding: 70px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 50px; }
.footer-grid .logo { margin-bottom: 18px; }
.footer-grid p.about { color: var(--muted); font-size: 0.92rem; max-width: 280px; }
.footer-col h4 { font-size: 0.95rem; margin-bottom: 18px; font-weight: 700; color: var(--text-strong); }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { color: var(--muted); font-size: 0.92rem; transition: 0.2s; }
.footer-col ul li a:hover { color: var(--accent-2); }
.footer-contact li { display: flex; gap: 10px; color: var(--muted); font-size: 0.92rem; margin-bottom: 12px; }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 26px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; color: var(--muted); font-size: 0.85rem; }
.socials { display: flex; gap: 12px; }
.socials a { width: 38px; height: 38px; border-radius: 10px; background: var(--surface); border: 1px solid var(--border); display: grid; place-items: center; transition: 0.25s; color: var(--text); }
.socials a:hover { background: var(--accent-grad); color: var(--accent-ink); transform: translateY(-3px); border-color: transparent; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Offset in-page anchor targets for the fixed header */
#services, #coverage { scroll-margin-top: 90px; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { max-width: 460px; }
  .services-grid, .values-grid { grid-template-columns: 1fr 1fr; }
  .coverage, .sameday .inner, .about-grid, .contact-wrap { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav-links {
    position: fixed; top: 70px; right: 0; height: calc(100vh - 70px); width: 78%;
    background: var(--surface); flex-direction: column; align-items: flex-start;
    padding: 40px 30px; gap: 26px; transform: translateX(100%); transition: transform 0.35s ease; border-left: 1px solid var(--border);
  }
  .nav-links.open { transform: translateX(0); }
  .menu-toggle { display: flex; }
  .services-grid, .values-grid, .footer-grid, .coverage .states, .form-row { grid-template-columns: 1fr; }
  .section-pad { padding: 70px 0; }
  .sameday, .cta-band, .contact-form { padding: 36px 26px; }
  .hero-stats { gap: 26px; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .route-line .track::after, .route-line .truck-emoji, .float-chip, .hero-badge .dot { animation: none; }
}
