/* =========================================
   HAUL CONNECT LOGISTICS LLC — Main Stylesheet
   ========================================= */

:root {
    --navy:        #0a1628;
    --navy2:       #0f2040;
    --orange:      #e8700a;
    --orange2:     #f08030;
    --white:       #ffffff;
    --light:       #f4f6fa;
    --gray:        #6b7280;
    --border:      #e2e8f0;
    --text:        #1e293b;
    --shadow:      0 4px 24px rgba(0,0,0,.10);
    --shadow-lg:   0 12px 40px rgba(0,0,0,.15);
    --radius:      10px;
    --trans:       .25s ease;
    /* Themeable surface tokens */
    --bg:          #ffffff;
    --bg-alt:      #f4f6fa;
    --bg-card:     #ffffff;
    --text-heading:#0a1628;
}

[data-theme="dark"] {
    --bg:          #0d1117;
    --bg-alt:      #161b22;
    --bg-card:     #1c2333;
    --text-heading:#f0f6fc;
    --text:        #c9d1d9;
    --gray:        #8b949e;
    --border:      #30363d;
    --shadow:      0 4px 24px rgba(0,0,0,.4);
    --shadow-lg:   0 12px 40px rgba(0,0,0,.6);
    --light:       #161b22; /* alias so inline var(--light) auto-responds */
    color-scheme:  dark;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    font-size: 16px;
    transition: background-color .3s ease, color .3s ease;
}

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

.container {
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ── SCROLL PROGRESS BAR ─────────────────── */
#scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    width: 0%;
    z-index: 2000;
    background: linear-gradient(90deg, var(--orange), var(--orange2));
    border-radius: 0 3px 3px 0;
    transition: width .1s linear;
    pointer-events: none;
}

/* ── BUTTONS ─────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 30px;
    border-radius: 6px;
    font-weight: 600;
    font-size: .95rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--trans);
    white-space: nowrap;
}
.btn-primary {
    background: var(--orange);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.28), transparent);
    transform: skewX(-20deg);
}
.btn-primary:hover {
    background: var(--orange2);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232,112,10,.35);
}
.btn-primary:hover::after {
    animation: shimmer .7s ease;
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--navy);
}
.btn-dark {
    background: var(--navy);
    color: var(--white);
}
.btn-dark:hover {
    background: var(--navy2);
    transform: translateY(-2px);
}
.btn-nav {
    background: var(--orange);
    color: var(--white) !important;
    padding: 9px 22px;
    border-radius: 6px;
}
.btn-nav:hover {
    background: var(--orange2);
}

/* ── THEME TOGGLE ────────────────────────── */
.theme-toggle {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.15);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--trans), transform var(--trans);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    margin-left: 4px;
}
.theme-toggle:hover {
    background: rgba(255,255,255,.2);
    transform: scale(1.08);
}
.theme-toggle svg {
    position: absolute;
    width: 20px; height: 20px;
    transition: opacity .3s ease, transform .3s ease;
}
.theme-toggle .icon-moon { opacity: 1; transform: rotate(0deg) scale(1); }
.theme-toggle .icon-sun  { opacity: 0; transform: rotate(90deg) scale(.5); }
[data-theme="dark"] .theme-toggle .icon-moon { opacity: 0; transform: rotate(-90deg) scale(.5); }
[data-theme="dark"] .theme-toggle .icon-sun  { opacity: 1; transform: rotate(0deg) scale(1); }
.theme-toggle.spinning { animation: spin-icon .4s ease; }

/* ── HEADER ──────────────────────────────── */
#site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: var(--navy);
    box-shadow: 0 2px 16px rgba(0,0,0,.25);
    transition: var(--trans);
}
#site-header.scrolled {
    background: rgba(10,22,40,.97);
    backdrop-filter: blur(8px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
}
.logo-icon svg { width: 52px; height: 32px; }
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.logo-text strong {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -.3px;
}
.logo-text small {
    font-size: .72rem;
    color: var(--orange);
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
}

#main-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}
#main-nav a {
    color: rgba(255,255,255,.82);
    font-size: .92rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 6px;
    transition: var(--trans);
}
#main-nav a:hover,
#main-nav a.active {
    color: var(--white);
    background: rgba(255,255,255,.08);
}
#main-nav a.active { color: var(--orange); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--trans);
}

/* ── HERO ────────────────────────────────── */
.hero {
    padding-top: 72px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 40%, #1a3868 70%, #0a1628 100%);
    background-size: 200% 200%;
    animation: hero-drift 15s ease infinite;
    color: var(--white);
    overflow: hidden;
    position: relative;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/G%3E%3C/svg%3E");
}
.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    padding: 100px 0 80px;
    position: relative;
}
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232,112,10,.18);
    color: var(--orange2);
    border: 1px solid rgba(232,112,10,.3);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    animation: pulse-glow 2.5s ease-in-out infinite;
}
.hero h1 {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
}
.hero h1 span {
    color: var(--orange);
    animation: glow-pulse 3s ease-in-out infinite;
}
.hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,.75);
    max-width: 480px;
    margin-bottom: 36px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 52px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,.1);
}
.stat h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--orange);
}
.stat p {
    font-size: .82rem;
    color: rgba(255,255,255,.55);
    margin: 0;
}

/* Hidden on desktop; shown only on mobile */
.hero-visual-mobile { display: none; }

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}
.truck-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px;
    padding: 36px;
    width: 100%;
    max-width: 420px;
    backdrop-filter: blur(6px);
    animation: float 5s ease-in-out infinite;
}
.truck-svg-wrap {
    background: rgba(232,112,10,.1);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    text-align: center;
}
.truck-svg-wrap svg { width: 100%; max-width: 280px; height: auto; }
.truck-card-info h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}
.route-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,.07);
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 10px;
}
.route-bar .dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}
.dot-green  { background: #22c55e; animation: dot-blink 2s ease-in-out infinite; }
.dot-orange { background: var(--orange); animation: dot-blink 2s ease-in-out infinite .5s; }
.route-bar span { font-size: .82rem; color: rgba(255,255,255,.7); }
.route-bar strong { color: var(--white); font-size: .88rem; margin-left: auto; }

/* ── MOBILE TRUCK ILLUSTRATION ──────────── */
.mobile-truck-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 16px;
    padding: 18px 16px 16px;
    backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
    margin-top: 28px;
}
.mobile-truck-card::before {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -8%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(232,112,10,.07);
    pointer-events: none;
}
.mobile-truck-scene {
    width: 100%;
    overflow: hidden;
    animation: truck-bob 2.8s ease-in-out infinite;
}
.mobile-truck-scene svg {
    width: 100%;
    height: auto;
    display: block;
}
/* Spinning wheel spokes */
.wheel-spin {
    transform-box: fill-box;
    transform-origin: center;
    animation: wheel-spin 1.4s linear infinite;
}
/* Motion speed-line pulses */
.motion-line-1 { animation: motion-fade 1.8s ease-in-out infinite; }
.motion-line-2 { animation: motion-fade 1.8s ease-in-out infinite .25s; }
.motion-line-3 { animation: motion-fade 1.8s ease-in-out infinite .5s; }
/* Animated dashed road */
.road-line-anim { animation: road-move .9s linear infinite; }

.mobile-route-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 12px 0 14px;
    font-size: .8rem;
    color: rgba(255,255,255,.65);
}
.mobile-route-line {
    flex: 1;
    height: 1.5px;
    background: linear-gradient(90deg, rgba(34,197,94,.5), rgba(232,112,10,.5));
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}
.mobile-route-line::after {
    content: '';
    position: absolute;
    top: 0; left: -40%;
    width: 40%;
    height: 100%;
    background: rgba(255,255,255,.5);
    animation: route-sweep 2.2s ease-in-out infinite;
}
.mobile-stats-row {
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: rgba(255,255,255,.05);
    border-radius: 10px;
    padding: 10px 12px;
    border: 1px solid rgba(255,255,255,.07);
}
.m-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}
.m-stat-num {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
}
.m-stat-label {
    font-size: .62rem;
    color: rgba(255,255,255,.48);
    text-transform: uppercase;
    letter-spacing: .6px;
}
.m-stat-div {
    width: 1px;
    height: 28px;
    background: rgba(255,255,255,.1);
}

/* ── SECTION COMMONS ─────────────────────── */
section { padding: 80px 0; }
.section-label {
    display: inline-block;
    color: var(--orange);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.section-title {
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--text-heading);
    line-height: 1.2;
    margin-bottom: 16px;
    transition: color .3s ease;
}
.section-sub {
    font-size: 1.05rem;
    color: var(--gray);
    max-width: 560px;
    margin-bottom: 50px;
}
.section-header { margin-bottom: 50px; }
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto 50px; }

/* ── MARQUEE STRIP ───────────────────────── */
.marquee-strip {
    background: var(--orange);
    padding: 14px 0;
    overflow: hidden;
}
.marquee-track {
    display: flex;
    gap: 60px;
    width: max-content;
    animation: marquee 28s linear infinite;
}
.marquee-track span {
    color: var(--white);
    font-weight: 700;
    font-size: .9rem;
    letter-spacing: .5px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 10px;
}
.marquee-track span::before {
    content: '●';
    color: rgba(255,255,255,.5);
    font-size: .5rem;
}
@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ── SERVICES ────────────────────────────── */
.services-bg { background: var(--bg-alt); transition: background-color .3s ease; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 32px 28px;
    border: 1px solid var(--border);
    transition: transform var(--trans), box-shadow var(--trans),
                border-color var(--trans), background-color .3s ease;
    cursor: default;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--orange);
}
[data-theme="dark"] .service-card:hover {
    box-shadow: 0 8px 32px rgba(232,112,10,.18);
}
.service-icon {
    width: 56px; height: 56px;
    background: rgba(232,112,10,.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--orange);
    font-size: 1.6rem;
    transition: transform var(--trans);
}
.service-card:hover .service-icon {
    transform: rotate(8deg) scale(1.1);
}
.service-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-heading);
    transition: color .3s ease;
}
.service-card p {
    font-size: .9rem;
    color: var(--gray);
    line-height: 1.6;
}

/* ── WHY US ──────────────────────────────── */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.why-content .section-sub { margin-bottom: 32px; }
.why-list { display: flex; flex-direction: column; gap: 20px; }
.why-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
/* Staggered slide-right when parent becomes visible */
.why-content.visible .why-item {
    animation: slide-right .6s ease both;
}
.why-content.visible .why-item:nth-child(1) { animation-delay: 0s; }
.why-content.visible .why-item:nth-child(2) { animation-delay: .12s; }
.why-content.visible .why-item:nth-child(3) { animation-delay: .24s; }
.why-content.visible .why-item:nth-child(4) { animation-delay: .36s; }

.why-item-icon {
    width: 46px; height: 46px;
    background: rgba(232,112,10,.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--orange);
    font-size: 1.2rem;
}
.why-item-text h4 {
    font-weight: 700;
    font-size: .98rem;
    margin-bottom: 4px;
    color: var(--text-heading);
    transition: color .3s ease;
}
.why-item-text p {
    font-size: .875rem;
    color: var(--gray);
}
.why-image {
    position: relative;
}
.why-image-inner {
    background: var(--navy);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    overflow: hidden;
    position: relative;
}
.why-image-inner::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: rgba(232,112,10,.12);
}
.why-image-inner svg {
    width: 100%;
    max-width: 320px;
    height: auto;
    position: relative;
    z-index: 1;
}
.coverage-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--orange);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 700;
    margin-top: 24px;
    position: relative;
    z-index: 1;
}

/* ── PROCESS ─────────────────────────────── */
.process-bg { background: var(--navy); }
.process-bg .section-title { color: var(--white); }
.process-bg .section-label { color: var(--orange2); }
.process-bg .section-sub   { color: rgba(255,255,255,.6); }
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}
.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: rgba(232,112,10,.3);
}
.step-card {
    text-align: center;
    position: relative;
    z-index: 1;
}
.step-num {
    width: 80px; height: 80px;
    background: var(--orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 800;
    margin: 0 auto 20px;
    border: 4px solid var(--navy);
    box-shadow: 0 0 0 4px rgba(232,112,10,.3);
}
.step-num.bounce {
    animation: bounce-in .6s cubic-bezier(.175, .885, .32, 1.275) both;
}
.step-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}
.step-card p {
    font-size: .85rem;
    color: rgba(255,255,255,.55);
    line-height: 1.6;
}

/* ── CTA BAND ────────────────────────────── */
.cta-band {
    background: var(--orange);
    padding: 60px 0;
}
.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.cta-inner h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--white);
    max-width: 580px;
}
.cta-inner h2 span { color: var(--navy); }
.cta-btns { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }

/* ── TESTIMONIALS ────────────────────────── */
.testimonials-bg { background: var(--bg-alt); transition: background-color .3s ease; }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 28px;
    border: 1px solid var(--border);
    transition: transform var(--trans), box-shadow var(--trans),
                background-color .3s ease, border-color .3s ease;
}
.testimonial-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}
.stars { color: #f59e0b; font-size: 1rem; margin-bottom: 14px; }
.testimonial-card blockquote {
    font-size: .92rem;
    color: var(--gray);
    line-height: 1.65;
    font-style: italic;
    margin-bottom: 18px;
}
.reviewer {
    display: flex;
    align-items: center;
    gap: 12px;
}
.reviewer-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .9rem;
    flex-shrink: 0;
}
.reviewer-name { font-weight: 700; font-size: .88rem; color: var(--text-heading); transition: color .3s ease; }
.reviewer-role { font-size: .78rem; color: var(--gray); }

/* ── QUOTE FORM ──────────────────────────── */
.form-section { background: var(--bg-alt); transition: background-color .3s ease; }
.form-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 48px;
    box-shadow: var(--shadow);
    max-width: 780px;
    margin: 0 auto;
    transition: background-color .3s ease, box-shadow .3s ease;
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.form-group.full { grid-column: 1 / -1; }
.form-group label {
    font-size: .85rem;
    font-weight: 600;
    color: var(--text-heading);
    transition: color .3s ease;
}
.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-size: .92rem;
    font-family: inherit;
    color: var(--text);
    background: var(--bg-card);
    transition: border-color var(--trans), box-shadow var(--trans),
                background-color .3s ease, color .3s ease;
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(232,112,10,.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note {
    font-size: .8rem;
    color: var(--gray);
    margin-top: 8px;
    text-align: center;
}
.alert {
    padding: 14px 18px;
    border-radius: 8px;
    margin-bottom: 22px;
    font-size: .9rem;
    font-weight: 500;
}
.alert-success { background: #dcfce7; color: #166534; border: 1px solid #bbf7d0; }
.alert-error   { background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; }

/* ── CONTACT PAGE ────────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 48px;
    align-items: start;
}
.contact-info-card {
    background: var(--navy);
    border-radius: 16px;
    padding: 40px;
    color: var(--white);
}
.contact-info-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 8px;
}
.contact-info-card p.sub {
    color: rgba(255,255,255,.6);
    font-size: .9rem;
    margin-bottom: 32px;
}
.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
}
.contact-item-icon {
    width: 44px; height: 44px;
    background: rgba(232,112,10,.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--orange);
}
.contact-item-text strong {
    display: block;
    font-size: .82rem;
    color: rgba(255,255,255,.5);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 4px;
}
.contact-item-text a,
.contact-item-text span {
    font-size: .95rem;
    color: var(--white);
    line-height: 1.5;
}
.contact-item-text a:hover { color: var(--orange); }
.hours-grid {
    background: rgba(255,255,255,.05);
    border-radius: 10px;
    padding: 20px;
    margin-top: 28px;
}
.hours-grid h4 {
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--orange);
    margin-bottom: 12px;
}
.hours-row {
    display: flex;
    justify-content: space-between;
    font-size: .88rem;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,.07);
    color: rgba(255,255,255,.7);
}
.hours-row:last-child { border-bottom: none; }
.hours-row strong { color: var(--white); }

/* ── ABOUT PAGE ──────────────────────────── */
.about-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
    color: var(--white);
    padding: 140px 0 80px;
    text-align: center;
}
.about-hero h1 { font-size: clamp(2rem,4vw,3rem); font-weight: 800; margin-bottom: 16px; }
.about-hero p  { font-size: 1.1rem; color: rgba(255,255,255,.7); max-width: 560px; margin: 0 auto; }
.about-hero span { color: var(--orange); }
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.value-card {
    border-radius: var(--radius);
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: box-shadow var(--trans), transform var(--trans),
                background-color .3s ease, border-color .3s ease;
}
.value-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.value-num {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(232,112,10,.15);
    line-height: 1;
    margin-bottom: 8px;
}
.value-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--text-heading); margin-bottom: 10px; transition: color .3s ease; }
.value-card p  { font-size: .88rem; color: var(--gray); line-height: 1.6; }

/* ── PAGE HERO (inner pages) ─────────────── */
.page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
    color: var(--white);
    padding: 140px 0 70px;
    text-align: center;
}
.page-hero h1 { font-size: clamp(1.8rem,3.5vw,2.8rem); font-weight: 800; margin-bottom: 12px; }
.page-hero p   { color: rgba(255,255,255,.65); font-size: 1.05rem; max-width: 520px; margin: 0 auto; }
.page-hero span { color: var(--orange); }
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: .82rem;
    color: rgba(255,255,255,.45);
    margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,.6); }
.breadcrumb a:hover { color: var(--orange); }

/* ── MAP PLACEHOLDER ─────────────────────── */
.map-wrap {
    border-radius: 12px;
    overflow: hidden;
    height: 320px;
    background: #e8edf5;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border);
    margin-top: 40px;
    transition: border-color .3s ease;
}
.map-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ── FOOTER ──────────────────────────────── */
footer {
    background: var(--navy2);
    color: rgba(255,255,255,.7);
    padding: 70px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr 1.5fr;
    gap: 48px;
    margin-bottom: 50px;
}
.footer-brand .logo-text { display: flex; flex-direction: column; margin-bottom: 16px; }
.footer-brand .logo-text strong { color: var(--white); font-size: 1.15rem; }
.footer-brand .logo-text small  { color: var(--orange); }
.footer-brand p { font-size: .88rem; line-height: 1.65; margin-bottom: 20px; max-width: 280px; }
.footer-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-badges span {
    background: rgba(232,112,10,.15);
    color: var(--orange2);
    border: 1px solid rgba(232,112,10,.25);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: .72rem;
    font-weight: 600;
}
footer h4 {
    color: var(--white);
    font-size: .85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 18px;
}
.footer-links, .footer-services {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-links a, .footer-services a {
    font-size: .88rem;
    color: rgba(255,255,255,.55);
    transition: var(--trans);
    position: relative;
    display: inline-block;
}
.footer-links a::after, .footer-services a::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 0;
    width: 0;
    height: 1px;
    background: var(--orange);
    transition: width var(--trans);
}
.footer-links a:hover, .footer-services a:hover { color: var(--orange); padding-left: 4px; }
.footer-links a:hover::after, .footer-services a:hover::after { width: 100%; }
.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .88rem;
    margin-bottom: 14px;
    line-height: 1.5;
}
.footer-contact svg { flex-shrink: 0; margin-top: 2px; color: var(--orange); }
.footer-contact a { color: rgba(255,255,255,.7); }
.footer-contact a:hover { color: var(--orange); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.07);
    padding: 22px 0;
}
.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.35); }

/* ── CUSTOM CURSOR ───────────────────────── */
/* cursor:none applied via JS class so it only fires when JS is confirmed working */
.has-custom-cursor,
.has-custom-cursor * {
    cursor: none !important;
}

#cursor-dot,
#cursor-ring {
    position: fixed;
    top: 0; left: 0;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;              /* hidden until first mousemove */
    will-change: transform;
}

#cursor-dot {
    width: 9px; height: 9px;
    background: var(--orange);
    z-index: 99999;
    transition: width .15s ease, height .15s ease,
                background .15s ease, opacity .3s ease;
}

#cursor-ring {
    width: 40px; height: 40px;
    border: 2px solid rgba(232,112,10,.6);
    background-color: transparent;
    z-index: 99998;
    transition: width .22s ease, height .22s ease,
                border-color .22s ease, background-color .22s ease,
                opacity .3s ease;
}

/* ── Hover: ring expands + glows ── */
.cursor-hover #cursor-dot {
    width: 6px; height: 6px;
    background: var(--white);
}
.cursor-hover #cursor-ring {
    width: 56px; height: 56px;
    border-color: var(--orange);
    background-color: rgba(232,112,10,.1);
}

/* ── Click: compress ── */
.cursor-click #cursor-dot {
    width: 6px; height: 6px;
    background: var(--orange2);
}
.cursor-click #cursor-ring {
    width: 28px; height: 28px;
    border-color: var(--orange);
    background-color: rgba(232,112,10,.25);
}

/* ── Text input: caret shape ── */
.cursor-text #cursor-dot {
    width: 2px; height: 20px;
    border-radius: 2px;
    background: var(--orange);
}
.cursor-text #cursor-ring {
    width: 44px; height: 44px;
    border-color: rgba(232,112,10,.25);
    background-color: transparent;
}

/* ── Disable entirely on touch devices ── */
@media (pointer: coarse) {
    #cursor-dot, #cursor-ring { display: none !important; }
}

/* ── FADE-IN ANIMATION ───────────────────── */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── KEYFRAMES ───────────────────────────── */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-14px); }
}
@keyframes hero-drift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
@keyframes shimmer {
    0%   { left: -100%; }
    100% { left: 200%; }
}
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(232,112,10,.45); }
    50%       { box-shadow: 0 0 0 10px rgba(232,112,10,0); }
}
@keyframes bounce-in {
    0%   { transform: scale(0); opacity: 0; }
    60%  { transform: scale(1.15); opacity: 1; }
    80%  { transform: scale(0.95); }
    100% { transform: scale(1); }
}
@keyframes glow-pulse {
    0%, 100% { text-shadow: 0 0 8px rgba(232,112,10,.5), 0 0 20px rgba(232,112,10,.2); }
    50%       { text-shadow: 0 0 20px rgba(232,112,10,.9), 0 0 40px rgba(232,112,10,.5); }
}
@keyframes slide-right {
    from { opacity: 0; transform: translateX(-30px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes spin-icon {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}
@keyframes dot-blink {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: .35; transform: scale(.6); }
}
@keyframes truck-bob {
    0%, 100% { transform: translateY(0); }
    30%       { transform: translateY(-5px); }
    65%       { transform: translateY(2px); }
}
@keyframes wheel-spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}
@keyframes motion-fade {
    0%, 100% { opacity: .22; transform: translateX(0); }
    50%       { opacity: .04; transform: translateX(-8px); }
}
@keyframes road-move {
    from { stroke-dashoffset: 0; }
    to   { stroke-dashoffset: -32; }
}
@keyframes route-sweep {
    from { left: -40%; }
    to   { left: 140%; }
}

/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid   { grid-template-columns: 1fr 1fr; gap: 36px; }
    .process-steps { grid-template-columns: repeat(2, 1fr); }
    .process-steps::before { display: none; }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    #main-nav {
        display: none;
        position: fixed;
        top: 72px; left: 0; right: 0;
        background: var(--navy);
        flex-direction: column;
        padding: 20px 24px 28px;
        gap: 4px;
        border-top: 1px solid rgba(255,255,255,.08);
    }
    #main-nav.open { display: flex; }
    #main-nav a { padding: 12px 16px; font-size: 1rem; }
    #main-nav .btn-nav { margin-top: 8px; justify-content: center; }
    #main-nav .theme-toggle { margin-left: 8px; margin-top: 8px; }
    .hero-inner { grid-template-columns: 1fr; padding: 60px 0 50px; gap: 0; }
    .hero-visual { display: none; }
    .hero-visual-mobile { display: block; }
    .hero-stats { gap: 20px; }
    .why-grid    { grid-template-columns: 1fr; }
    .why-image   { display: none; }
    .cta-inner   { flex-direction: column; text-align: center; }
    .cta-btns    { justify-content: center; }
    .contact-grid  { grid-template-columns: 1fr; }
    .form-grid     { grid-template-columns: 1fr; }
    .form-group.full { grid-column: 1; }
    .form-card     { padding: 28px 22px; }
    .footer-grid   { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom .container { flex-direction: column; text-align: center; }
    .values-grid   { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .services-grid  { grid-template-columns: 1fr; }
    .process-steps  { grid-template-columns: 1fr; }
    .hero-btns      { flex-direction: column; }
    .btn            { justify-content: center; }
}
