/* ============================================
   NorthStar Freight Lines — Main Stylesheet
   Aesthetic: Industrial / Editorial / Bold
   ============================================ */

:root {
    --navy: #0d2818;
    --navy-deep: #061509;
    --steel: #1a3528;
    --steel-light: #2d4a3a;
    --concrete: #f0f4ee;
    --paper: #f7faf5;
    --white: #ffffff;
    --orange: #2eb872;
    --orange-bright: #4ad295;
    --amber: #c5e063;
    --rust: #1a8e54;
    --asphalt: #1a2b22;
    --line: rgba(13, 40, 24, 0.12);
    --line-dark: rgba(255, 255, 255, 0.12);

    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Archivo', system-ui, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    --container: 1280px;
    --radius: 4px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--navy);
    background: var(--paper);
    line-height: 1.55;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 0.95;
    text-transform: uppercase;
}

h1 { font-size: clamp(3rem, 8vw, 7rem); }
h2 { font-size: clamp(2.2rem, 5vw, 4.5rem); }
h3 { font-size: clamp(1.6rem, 3vw, 2.5rem); }
h4 { font-size: 1.3rem; letter-spacing: 0.08em; }

.eyebrow {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--orange);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.eyebrow::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--orange);
}

/* ===== UTILITY BAR ===== */
.utility-bar {
    background: var(--navy-deep);
    color: rgba(255,255,255,0.85);
    font-size: 0.78rem;
    font-family: var(--font-mono);
    padding: 8px 0;
    border-bottom: 1px solid var(--line-dark);
}
.utility-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.utility-left { display: flex; gap: 24px; align-items: center; }
.util-item { display: inline-flex; align-items: center; gap: 8px; }
.dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #4ade80;
    display: inline-block;
}
.pulse { animation: pulse 2s infinite; }
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(74,222,128,0.7); }
    50% { box-shadow: 0 0 0 6px rgba(74,222,128,0); }
}
.util-phone { color: var(--amber); font-weight: 600; transition: color 0.2s; }
.util-phone:hover { color: var(--white); }

/* ===== HEADER ===== */
.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.96);
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    gap: 24px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--navy);
}
.logo-mark {
    color: var(--orange);
    display: flex;
}
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-main {
    font-family: var(--font-display);
    font-size: 1.4rem;
    letter-spacing: 0.05em;
}
.logo-x {
    color: var(--orange);
    font-style: italic;
}
.logo-sub {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    color: var(--orange);
    margin-top: 4px;
}
.logo-light { color: var(--white); }
.logo-light .logo-x { color: var(--amber); }
.logo-light .logo-sub { color: var(--amber); }

.main-nav .nav-list {
    display: flex;
    gap: 8px;
    align-items: center;
}
.nav-list a {
    padding: 10px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    position: relative;
    transition: color 0.2s;
}
.nav-list a:not(.cta-link)::after {
    content: '';
    position: absolute;
    left: 16px; right: 16px;
    bottom: 4px;
    height: 2px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}
.nav-list a:not(.cta-link):hover::after,
.nav-list a.active::after {
    transform: scaleX(1);
    transform-origin: left;
}
.nav-list a.active { color: var(--orange); }

.cta-link {
    background: var(--navy);
    color: var(--white) !important;
    border-radius: var(--radius);
    margin-left: 12px;
    transition: background 0.2s;
}
.cta-link:hover { background: var(--orange); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}
.nav-toggle span {
    width: 24px; height: 2px;
    background: var(--navy);
    transition: transform 0.3s;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: var(--radius);
    transition: all 0.25s ease;
    border: 2px solid transparent;
}
.btn-primary {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}
.btn-primary:hover {
    background: var(--rust);
    border-color: var(--rust);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255,87,34,0.3);
}
.btn-outline {
    border-color: var(--navy);
    color: var(--navy);
}
.btn-outline:hover {
    background: var(--navy);
    color: var(--white);
}
.btn-light {
    border-color: var(--white);
    color: var(--white);
}
.btn-light:hover {
    background: var(--white);
    color: var(--navy);
}
.btn-lg { padding: 18px 36px; font-size: 1rem; }

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 88vh;
    background: var(--navy);
    color: var(--white);
    overflow: hidden;
    display: flex;
    align-items: center;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?w=2000&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    filter: grayscale(0.3);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,22,40,0.7) 0%, rgba(10,22,40,0.85) 60%, rgba(5,13,26,1) 100%);
}
.hero-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--navy) 0%, transparent 50%);
}
.hero-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
}
.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 80px 0;
}
.hero-eyebrow {
    color: var(--amber);
    margin-bottom: 28px;
    animation: fadeInUp 0.7s 0.1s both;
}
.hero-eyebrow::before { background: var(--amber); }

.hero-title {
    font-size: clamp(3.5rem, 11vw, 9rem);
    line-height: 0.88;
    letter-spacing: -0.01em;
    margin-bottom: 32px;
    animation: fadeInUp 0.8s 0.2s both;
}
.hero-title span {
    display: block;
}
.hero-title .accent {
    color: var(--orange);
    font-style: italic;
    position: relative;
}
.hero-subtitle {
    font-size: 1.2rem;
    max-width: 560px;
    color: rgba(255,255,255,0.78);
    margin-bottom: 40px;
    line-height: 1.6;
    animation: fadeInUp 0.8s 0.35s both;
}
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s 0.5s both;
}

.hero-stats {
    position: absolute;
    bottom: 0;
    left: 0; right: 0;
    border-top: 1px solid var(--line-dark);
    background: rgba(5,13,26,0.6);
    backdrop-filter: blur(8px);
    z-index: 2;
}
.hero-stats-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line-dark);
}
.stat {
    background: var(--navy-deep);
    padding: 28px 24px;
}
.stat-number {
    font-family: var(--font-display);
    font-size: 2.8rem;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 4px;
}
.stat-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== SECTIONS ===== */
section { padding: 100px 0; position: relative; }
.section-header {
    max-width: 800px;
    margin-bottom: 64px;
}
.section-header .eyebrow { margin-bottom: 20px; }
.section-header h2 { margin-bottom: 20px; }
.section-header p {
    font-size: 1.1rem;
    color: var(--steel-light);
    max-width: 640px;
}

/* Service split section (Long vs Short Haul) */
.split-services {
    background: var(--paper);
}
.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.split-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/5;
    color: var(--white);
    background: var(--navy);
    transition: transform 0.4s ease;
}
.split-card:hover { transform: translateY(-6px); }
.split-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}
.split-card:hover .split-card-bg { transform: scale(1.05); }
.split-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(10,22,40,0.95) 100%);
}
.split-card-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.split-card-tag {
    align-self: flex-start;
    padding: 6px 14px;
    background: var(--orange);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 2px;
    font-weight: 600;
}
.split-card-tag.amber { background: var(--amber); color: var(--navy); }
.split-card h3 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 16px;
}
.split-card p {
    color: rgba(255,255,255,0.85);
    margin-bottom: 24px;
    max-width: 380px;
}
.split-card-link {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--amber);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}
.split-card-link:hover { gap: 14px; }

/* ===== SERVICES GRID ===== */
.services-section { background: var(--white); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}
.service-item {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 40px 32px;
    transition: background 0.3s;
    position: relative;
}
.service-item:hover { background: var(--paper); }
.service-num {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--orange);
    letter-spacing: 0.15em;
    margin-bottom: 24px;
    display: block;
}
.service-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 24px;
    color: var(--orange);
}
.service-item h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    letter-spacing: 0.04em;
}
.service-item p {
    color: var(--steel-light);
    font-size: 0.95rem;
}

/* ===== STATS / METRICS ===== */
.metrics-section {
    background: var(--navy);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.metrics-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 80px, rgba(255,87,34,0.04) 80px, rgba(255,87,34,0.04) 81px);
    pointer-events: none;
}
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
}
.metric {
    border-left: 2px solid var(--orange);
    padding-left: 24px;
}
.metric-num {
    font-family: var(--font-display);
    font-size: 4.5rem;
    line-height: 1;
    color: var(--white);
    margin-bottom: 8px;
}
.metric-label {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-bottom: 12px;
}
.metric-desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
}

/* ===== ROUTES / MAP-STYLE ===== */
.routes-section {
    background: var(--concrete);
    position: relative;
    overflow: hidden;
}
.routes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.routes-visual {
    position: relative;
    aspect-ratio: 1/1;
    background: var(--navy);
    border-radius: var(--radius);
    overflow: hidden;
    background-image:
        radial-gradient(circle at 30% 40%, rgba(255,87,34,0.25), transparent 40%),
        radial-gradient(circle at 70% 60%, rgba(245,184,0,0.15), transparent 40%),
        url('https://images.unsplash.com/photo-1524661135-423995f22d0b?w=1200&q=80');
    background-size: cover;
    background-position: center;
}
.routes-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,22,40,0.6), rgba(10,22,40,0.3));
}
.route-pin {
    position: absolute;
    color: var(--orange);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    z-index: 2;
    background: var(--white);
    color: var(--navy);
    padding: 6px 12px;
    border-radius: 2px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.route-pin::before {
    content: '';
    position: absolute;
    top: -4px; left: 50%;
    transform: translateX(-50%);
    width: 10px; height: 10px;
    background: var(--orange);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(255,87,34,0.3);
}
.pin-1 { top: 25%; left: 18%; }
.pin-2 { top: 55%; left: 35%; }
.pin-3 { top: 40%; right: 20%; }
.pin-4 { bottom: 25%; right: 15%; }

.region-list {
    display: grid;
    gap: 32px;
}
.region-item {
    border-bottom: 1px solid var(--line);
    padding-bottom: 24px;
}
.region-item h4 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: var(--navy);
}
.region-states {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.region-states span {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    padding: 4px 10px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 2px;
    color: var(--steel-light);
}

/* ===== TESTIMONIAL / QUOTE ===== */
.testimonial-section {
    background: var(--navy-deep);
    color: var(--white);
    text-align: center;
}
.testimonial {
    max-width: 900px;
    margin: 0 auto;
}
.testimonial-quote {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1.15;
    margin-bottom: 32px;
    letter-spacing: 0.01em;
}
.testimonial-quote::before { content: '"'; color: var(--orange); }
.testimonial-quote::after { content: '"'; color: var(--orange); }
.testimonial-author {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
}
.testimonial-author strong { color: var(--orange); }

/* ===== PAGE HERO (sub-pages) ===== */
.page-hero {
    background: var(--navy);
    color: var(--white);
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
}
.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.35;
}
.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,22,40,0.7), rgba(10,22,40,0.95));
}
.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}
.page-hero h1 {
    font-size: clamp(3rem, 8vw, 6.5rem);
    margin-bottom: 24px;
}
.page-hero p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.85);
    max-width: 640px;
}
.breadcrumb {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 24px;
}
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--white); }

/* ===== TWO-COL CONTENT ===== */
.content-section { background: var(--paper); }
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.two-col-image {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/5;
    background-size: cover;
    background-position: center;
    position: relative;
}
.two-col-image::before {
    content: '';
    position: absolute;
    inset: -1px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: var(--radius);
    pointer-events: none;
}
.two-col h2 { margin-bottom: 28px; }
.two-col p { margin-bottom: 20px; color: var(--steel-light); font-size: 1.05rem; line-height: 1.7; }
.two-col .eyebrow { margin-bottom: 20px; }

.feature-list {
    margin-top: 32px;
    display: grid;
    gap: 16px;
}
.feature-list li {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
}
.feature-list strong {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--orange);
    min-width: 60px;
    line-height: 1;
}

/* ===== FLEET CARDS ===== */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.fleet-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}
.fleet-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(10,22,40,0.1);
}
.fleet-card-img {
    aspect-ratio: 16/10;
    background-size: cover;
    background-position: center;
    background-color: var(--steel);
}
.fleet-card-body { padding: 28px; }
.fleet-card-tag {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--orange);
    letter-spacing: 0.15em;
    margin-bottom: 12px;
}
.fleet-card h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
}
.fleet-card p {
    color: var(--steel-light);
    margin-bottom: 16px;
    font-size: 0.95rem;
}
.fleet-specs {
    display: flex;
    gap: 16px;
    border-top: 1px solid var(--line);
    padding-top: 16px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
}
.fleet-specs span {
    color: var(--steel-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.fleet-specs strong { color: var(--navy); }

/* ===== CONTACT / FORM ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}
.contact-info h2 { margin-bottom: 24px; }
.contact-info p { color: var(--steel-light); margin-bottom: 32px; font-size: 1.05rem; }
.contact-block {
    margin-bottom: 24px;
    padding: 20px 0;
    border-top: 1px solid var(--line);
}
.contact-block:first-of-type { border-top: 2px solid var(--navy); }
.contact-block h4 {
    font-size: 0.8rem;
    font-family: var(--font-mono);
    letter-spacing: 0.15em;
    margin-bottom: 8px;
    color: var(--orange);
}
.contact-block p, .contact-block a {
    font-size: 1.1rem;
    color: var(--navy);
    font-weight: 500;
}
.contact-block a:hover { color: var(--orange); }

.quote-form {
    background: var(--white);
    padding: 40px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 12px 40px rgba(10,22,40,0.06);
}
.quote-form h3 { font-size: 2rem; margin-bottom: 8px; }
.quote-form > p { color: var(--steel-light); margin-bottom: 28px; font-size: 0.95rem; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: var(--steel-light);
    font-weight: 600;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--navy);
    background: var(--paper);
    transition: border-color 0.2s, background 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange);
    background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success, .form-error {
    padding: 16px 20px;
    border-radius: var(--radius);
    margin-bottom: 24px;
    font-size: 0.95rem;
}
.form-success {
    background: rgba(74,222,128,0.12);
    border-left: 3px solid #22c55e;
    color: #166534;
}
.form-error {
    background: rgba(255,87,34,0.1);
    border-left: 3px solid var(--orange);
    color: var(--rust);
}

/* ===== FOOTER ===== */
.footer-cta {
    background: var(--orange);
    color: var(--white);
    padding: 60px 0;
}
.footer-cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}
.footer-cta-eyebrow {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 8px;
    opacity: 0.9;
}
.footer-cta-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--white);
}
.footer-cta .btn-primary {
    background: var(--navy);
    border-color: var(--navy);
}
.footer-cta .btn-primary:hover {
    background: var(--navy-deep);
    border-color: var(--navy-deep);
}

.site-footer {
    background: var(--navy-deep);
    color: rgba(255,255,255,0.75);
    padding-top: 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding: 80px 24px 48px;
}
.footer-brand .logo { margin-bottom: 20px; }
.footer-tag {
    margin-bottom: 24px;
    line-height: 1.6;
    max-width: 380px;
}
.footer-creds {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: rgba(255,255,255,0.5);
}
.footer-creds span {
    padding: 4px 10px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 2px;
    letter-spacing: 0.1em;
}
.footer-col h4 {
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    color: var(--orange);
    margin-bottom: 20px;
    font-family: var(--font-mono);
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col a { transition: color 0.2s; font-size: 0.95rem; }
.footer-col a:hover { color: var(--orange); }
.footer-col address { font-style: normal; line-height: 1.8; font-size: 0.95rem; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}
.footer-legal a { transition: color 0.2s; }
.footer-legal a:hover { color: var(--orange); }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
    .nav-toggle { display: flex; }
    .nav-list {
        position: fixed;
        top: 0; right: -100%;
        width: 80%; max-width: 360px;
        height: 100vh;
        background: var(--navy);
        flex-direction: column;
        padding: 80px 32px 32px;
        gap: 4px;
        transition: right 0.4s ease;
    }
    .nav-list.open { right: 0; }
    .nav-list a {
        color: var(--white);
        padding: 14px 0;
        font-size: 1.1rem;
        width: 100%;
    }
    .nav-list a:not(.cta-link)::after { display: none; }
    .cta-link {
        margin-top: 16px;
        text-align: center;
        justify-content: center;
        margin-left: 0;
    }

    .split-grid,
    .two-col,
    .contact-grid,
    .routes-grid { grid-template-columns: 1fr; gap: 32px; }

    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .fleet-grid { grid-template-columns: 1fr; }
    .metrics-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .hero-stats-inner { grid-template-columns: repeat(2, 1fr); }

    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; padding: 60px 24px 32px; }
    section { padding: 70px 0; }
    .util-hide-mobile { display: none; }
    .utility-left { gap: 12px; }
    .footer-cta-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
    .services-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .quote-form { padding: 28px 20px; }
}
