/* ============================================
   Evergreen Shippers — Modern Site Styles
   Splash (home) + Interior (all other pages)
   ============================================ */

:root {
    --es-primary: #f47c20;
    --es-primary-dark: #d96812;
    --es-secondary: #1c2833;
    --es-ink: #0f1b2d;
    --es-ink-soft: #1e2a3d;
    --es-dark: #0e1419;
    --es-muted: #6b7689;
    --es-gray: #6c7a89;
    --es-line: #e6e9ee;
    --es-light: #f7f9fb;
    --es-bg: #f5f6f8;
}

* { -webkit-font-smoothing: antialiased; }

html { scroll-behavior: smooth; }

body {
    color: #2c3e50;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Splash page font system */
body.splash-mode {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}
body.splash-mode h1,
body.splash-mode h2,
body.splash-mode h3,
body.splash-mode h4,
body.splash-mode h5,
body.splash-mode .display-heading {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Interior page font system */
body.interior-mode {
    font-family: 'Outfit', system-ui, -apple-system, sans-serif;
    color: var(--es-ink-soft);
    background: #fff;
    font-size: 16px;
}
body.interior-mode h1,
body.interior-mode h2,
body.interior-mode h3,
body.interior-mode h4,
body.interior-mode h5 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    color: var(--es-ink);
    letter-spacing: -0.01em;
}

/* ============================================
   BUTTONS — shared
   ============================================ */
.btn-es-orange,
.btn-orange {
    background: var(--es-primary);
    color: #fff;
    border: 0;
    padding: 13px 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-size: .85rem;
    border-radius: 4px;
    transition: all .25s ease;
    box-shadow: 0 6px 20px rgba(244, 124, 32, .35);
}
.btn-es-orange:hover,
.btn-orange:hover {
    background: var(--es-primary-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(244, 124, 32, .5);
}
body.interior-mode .btn-orange {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    padding: 12px 26px;
    font-size: .82rem;
    box-shadow: none;
}
body.interior-mode .btn-orange:hover {
    box-shadow: 0 10px 24px rgba(244,124,32,.4);
}
.btn-es-ghost {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 11px 28px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-size: .85rem;
    border-radius: 4px;
    transition: all .25s ease;
}
.btn-es-ghost:hover { background: #fff; color: var(--es-secondary); }
.btn-outline-ink {
    background: transparent;
    color: var(--es-ink);
    border: 2px solid var(--es-ink);
    padding: 10px 24px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-size: .82rem;
    border-radius: 4px;
    transition: all .25s ease;
}
.btn-outline-ink:hover { background: var(--es-ink); color: #fff; }

/* ============================================
   SPLASH PAGE — Navbar (transparent overlay)
   ============================================ */
.es-navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1030;
    padding: 18px 0;
    transition: all .35s ease;
    background: rgba(14, 20, 25, 0);
}
.es-navbar.scrolled {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 4px 24px rgba(0,0,0,.08);
    padding: 10px 0;
    backdrop-filter: saturate(180%) blur(10px);
}
.es-navbar .nav-link {
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    font-size: .9rem;
    letter-spacing: 1px;
    padding: 8px 18px !important;
    position: relative;
}
.es-navbar.scrolled .nav-link { color: var(--es-secondary); }
.es-navbar .nav-link:hover { color: var(--es-primary); }
.es-navbar .nav-link::after {
    content: '';
    position: absolute;
    left: 18px; right: 18px; bottom: 4px;
    height: 2px;
    background: var(--es-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .3s ease;
}
.es-navbar .nav-link:hover::after { transform: scaleX(1); transform-origin: left; }
.es-navbar .navbar-toggler { border: 1px solid rgba(255,255,255,.5); }
.es-logo { height: 38px; width: auto; display: block; }
/* .es-navbar.scrolled .es-logo { height: 34px; } */
.es-navbar.scrolled .navbar-toggler { border-color: rgba(0,0,0,.2); }
.es-navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255,255,255,1)' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.es-navbar.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(28,40,51,1)' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* ============================================
   SPLASH PAGE — Hero (full-viewport swiper)
   ============================================ */
.es-hero { position: relative; height: 100vh; min-height: 600px; }
.es-hero .swiper, .es-hero .swiper-wrapper, .es-hero .swiper-slide { height: 100%; }
.es-hero .swiper-slide {
    background-size: cover;
    background-position: center;
    position: relative;
}
.es-hero .swiper-slide::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(14,20,25,.65) 0%, rgba(14,20,25,.35) 50%, rgba(244,124,32,.25) 100%);
}
.es-hero .hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}
.es-hero .hero-subtitle {
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 4px;
    opacity: .9;
    margin-bottom: 18px;
}
.es-hero .hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.05;
    text-transform: uppercase;
    margin-bottom: 22px;
    max-width: 900px;
}
.es-hero .hero-divider {
    width: 80px; height: 3px; background: var(--es-primary);
    margin: 0 auto 28px;
}
.es-hero .swiper-pagination-bullet {
    background: #fff; opacity: .5; width: 12px; height: 12px;
}
.es-hero .swiper-pagination-bullet-active { opacity: 1; background: var(--es-primary); width: 36px; border-radius: 6px; }
.es-hero .swiper-button-next, .es-hero .swiper-button-prev {
    color: #fff;
    background: rgba(0,0,0,.25);
    width: 56px; height: 56px;
    border-radius: 50%;
    transition: background .25s ease;
}
.es-hero .swiper-button-next:hover, .es-hero .swiper-button-prev:hover { background: var(--es-primary); }
.es-hero .swiper-button-next::after, .es-hero .swiper-button-prev::after { font-size: 1.2rem; font-weight: 700; }

.scroll-indicator {
    position: absolute; left: 50%; bottom: 30px;
    transform: translateX(-50%); z-index: 3;
    color: #fff; font-size: 1.5rem;
    animation: bounceDown 1.8s infinite;
}
@keyframes bounceDown {
    0%, 100% { transform: translate(-50%, 0); opacity: .9; }
    50% { transform: translate(-50%, 10px); opacity: .4; }
}

/* ============================================
   SPLASH PAGE — Sections / cards / counters
   ============================================ */
.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 70px 0; }
.section-head { text-align: center; margin-bottom: 60px; }
.section-head .eyebrow {
    color: var(--es-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: .85rem;
    margin-bottom: 12px;
    display: block;
}
.section-head h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 18px;
    color: var(--es-secondary);
}
.section-head .divider { width: 60px; height: 3px; background: var(--es-primary); margin: 0 auto 22px; }
.section-head blockquote {
    max-width: 720px; margin: 0 auto;
    font-size: 1.1rem;
    color: var(--es-gray);
    font-style: italic;
    border: 0;
}

.feature-card {
    background: #fff;
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    transition: all .35s ease;
    box-shadow: 0 2px 12px rgba(0,0,0,.04);
    border: 1px solid #eef0f3;
}
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,.08);
    border-color: var(--es-primary);
}
.feature-card .icon-wrap {
    width: 78px; height: 78px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--es-primary), var(--es-primary-dark));
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 22px;
    font-size: 1.8rem;
    transition: transform .4s ease;
}
.feature-card:hover .icon-wrap { transform: rotate(-8deg) scale(1.06); }
.feature-card h4 { margin-bottom: 14px; color: var(--es-secondary); }
.feature-card p { color: var(--es-gray); margin: 0; line-height: 1.65; }

.about-section { background: var(--es-light); position: relative; }
.about-img {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,.12);
}
.about-img img { width: 100%; height: auto; display: block; }
.about-content h2 { font-size: 2.4rem; margin-bottom: 22px; color: var(--es-secondary); }
.about-content .lead { color: var(--es-gray); margin-bottom: 24px; line-height: 1.75; }
.check-list { list-style: none; padding: 0; margin: 0 0 30px; }
.check-list li {
    padding: 10px 0 10px 36px;
    position: relative;
    color: var(--es-secondary);
}
.check-list li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--es-primary);
    position: absolute; left: 0; top: 10px;
    font-size: 1.2rem;
}

.counter-block {
    background: #fff;
    border-radius: 8px;
    padding: 32px 20px;
    text-align: center;
    box-shadow: 0 4px 18px rgba(0,0,0,.05);
    transition: transform .3s ease;
}
.counter-block:hover { transform: translateY(-4px); }
.counter-block .counter-num {
    font-family: 'Rajdhani', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--es-primary);
    line-height: 1;
    margin-bottom: 8px;
}
.counter-block h5 { color: var(--es-secondary); margin: 0; font-size: 1rem; }

.cta-banner {
    background: linear-gradient(rgba(14,20,25,.85), rgba(14,20,25,.85)), url('images/background/bg7.jpg') center/cover no-repeat fixed;
    color: #fff;
    text-align: center;
    padding: 110px 0;
}
.cta-banner h2 {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    margin-bottom: 18px;
    text-transform: uppercase;
}
.cta-banner p { font-size: 1.2rem; max-width: 720px; margin: 0 auto 30px; opacity: .9; }

/* Testimonials */
.testimonial-section { background: var(--es-light); }
.testimonial-card {
    background: #fff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 4px 24px rgba(0,0,0,.06);
    height: 100%;
    position: relative;
    margin: 20px 0 40px;
}
.testimonial-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free'; font-weight: 900;
    position: absolute;
    top: -18px; left: 36px;
    background: var(--es-primary);
    color: #fff;
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
}
.testimonial-card p {
    font-style: italic;
    color: var(--es-secondary);
    line-height: 1.75;
    margin-bottom: 24px;
    font-size: 1.05rem;
}
.testimonial-author { display: flex; align-items: center; gap: 16px; }
.testimonial-author img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; }
.testimonial-author .name { font-weight: 700; color: var(--es-secondary); }
.testimonial-author .role { color: var(--es-primary); font-size: .9rem; }
.testimonial-swiper { padding: 0 4px 50px; }
.testimonial-swiper .swiper-pagination-bullet { background: var(--es-primary); }

/* Contact info cards (splash) */
.contact-info-card {
    background: #fff;
    border: 1px solid #eef0f3;
    border-radius: 8px;
    padding: 36px 24px;
    text-align: center;
    height: 100%;
    transition: all .3s ease;
}
.contact-info-card:hover { border-color: var(--es-primary); transform: translateY(-4px); box-shadow: 0 14px 30px rgba(0,0,0,.06); }
.contact-info-card .info-icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: rgba(244,124,32,.12);
    color: var(--es-primary);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.5rem;
}
.contact-info-card h5 { color: var(--es-primary); margin-bottom: 10px; }
.contact-info-card address, .contact-info-card p { margin: 0; color: var(--es-secondary); font-style: normal; }
.contact-info-card a { color: var(--es-secondary); text-decoration: none; }
.contact-info-card a:hover { color: var(--es-primary); }

.contact-form-wrap {
    background: var(--es-light);
    border-radius: 10px;
    padding: 50px;
}
.contact-form-wrap .form-control,
#quotes-modal .form-control {
    padding: 12px 16px;
    border-radius: 4px;
    border: 1px solid #dde1e7;
    font-size: .95rem;
}
.contact-form-wrap .form-control:focus,
#quotes-modal .form-control:focus {
    border-color: var(--es-primary);
    box-shadow: 0 0 0 .2rem rgba(244,124,32,.18);
}

/* Lighter placeholder text sitewide */
.form-control::placeholder,
input::placeholder,
textarea::placeholder,
select::placeholder {
    color: rgba(15, 27, 45, .22) !important;
    opacity: 1; /* override Firefox default */
}
.form-control::-webkit-input-placeholder,
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder { color: rgba(15, 27, 45, .22) !important; }
.form-control::-moz-placeholder,
input::-moz-placeholder,
textarea::-moz-placeholder { color: rgba(15, 27, 45, .22) !important; opacity: 1; }
.form-control:-ms-input-placeholder,
input:-ms-input-placeholder,
textarea:-ms-input-placeholder { color: rgba(15, 27, 45, .22) !important; }

/* Splash footer */
.es-footer {
    background: var(--es-dark);
    color: #aab3bc;
    padding: 80px 0 0;
}
.es-footer h5 {
    color: #fff;
    margin-bottom: 22px;
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 12px;
}
.es-footer h5::after {
    content: '';
    position: absolute; left: 0; bottom: 0;
    width: 40px; height: 2px; background: var(--es-primary);
}
.es-footer p, .es-footer address { color: #aab3bc; line-height: 1.75; }
.es-footer a { color: #aab3bc; text-decoration: none; transition: color .2s ease; }
.es-footer a:hover { color: var(--es-primary); }
.es-footer .footer-list { list-style: none; padding: 0; }
.es-footer .footer-list li { padding: 7px 0; }
.es-footer .footer-list i { color: var(--es-primary); margin-right: 10px; width: 18px; }
.es-footer .footer-contact li { display: flex; align-items: flex-start; gap: 10px; padding: 8px 0; }
.es-footer .footer-contact i { color: var(--es-primary); margin-top: 4px; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 22px 0;
    margin-top: 60px;
    font-size: .9rem;
}
ul.footer-bottom-nav,
.footer-bottom-nav {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    text-align: right;
    line-height: 1.4;
}
.footer-bottom-nav li {
    display: inline-block;
    padding: 0;
    margin: 0;
    border: 0 !important;
}
.footer-bottom-nav li + li { margin-left: 0; }
.footer-bottom-nav li + li::before {
    content: '';
    display: inline-block;
    width: 4px; height: 4px;
    background: currentColor;
    border-radius: 50%;
    opacity: .45;
    vertical-align: middle;
    margin: 0 16px 2px 12px;
}
.footer-bottom-nav a {
    color: inherit;
    text-decoration: none;
    transition: color .2s ease;
    font-size: .88rem;
}
.footer-bottom-nav a:hover { color: var(--es-primary); }
@media (max-width: 767px) {
    .footer-bottom-nav, .footer-bottom-row { text-align: center !important; justify-content: center !important; }
    .footer-bottom-row > * { text-align: center !important; }
    .footer-bottom-nav { margin-top: 8px !important; }
}

/* ============================================
   INTERIOR PAGES — Utility bar + Main nav
   ============================================ */
.utility-bar {
    background: var(--es-ink);
    color: rgba(255,255,255,.75);
    padding: 8px 0;
    font-size: .85rem;
}
.utility-bar a { color: rgba(255,255,255,.75); text-decoration: none; transition: color .2s ease; }
.utility-bar a:hover { color: var(--es-primary); }
.utility-bar .util-list { display: flex; gap: 22px; margin: 0; padding: 0; list-style: none; flex-wrap: wrap; }
.utility-bar .util-list i { color: var(--es-primary); margin-right: 6px; }
.utility-bar .util-right { display: flex; gap: 14px; justify-content: flex-end; }
.utility-bar .util-right a {
    width: 30px; height: 30px;
    display: inline-flex; align-items: center; justify-content: center;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 50%;
    transition: all .2s ease;
}
.utility-bar .util-right a:hover { background: var(--es-primary); color: #fff; border-color: var(--es-primary); }

/* Carrier Signup pill (icon + text) in the utility bar */
.utility-bar .util-right a.util-carrier-signup {
    width: auto;
    padding: 4px 16px 4px 12px;
    border-radius: 999px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .8px;
    text-transform: uppercase;
    gap: 6px;
}
.utility-bar .util-right a.util-carrier-signup i { color: var(--es-primary); }
.utility-bar .util-right a.util-carrier-signup:hover i { color: #fff; }

.main-nav {
    background: #fff;
    border-bottom: 1px solid var(--es-line);
    padding: 14px 0;
    position: sticky;
    top: 0; z-index: 1030;
    transition: box-shadow .25s ease;
}
.main-nav.scrolled { box-shadow: 0 6px 24px rgba(0,0,0,.08); }
.main-nav .navbar-brand img { height: 40px; /*height: 36px;*/ width: auto; display: block; }
.main-nav .nav-link {
    color: var(--es-ink);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: .82rem;
    letter-spacing: 1.2px;
    padding: 10px 16px !important;
    border-radius: 4px;
    transition: all .2s ease;
}
.main-nav .nav-link:hover, .main-nav .nav-link.active {
    color: var(--es-primary);
    background: rgba(244,124,32,.08);
}
.main-nav .navbar-toggler { border: 1px solid var(--es-line); }

/* ============================================
   INTERIOR — Page banner
   ============================================ */
.page-banner {
    position: relative;
    padding: 140px 0 80px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--es-ink);
    color: #fff;
    text-align: left;
    overflow: hidden;
}
.page-banner::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(15,27,45,.65) 0%, rgba(15,27,45,.45) 100%);
    z-index: 1;
}
.page-banner > .container { position: relative; z-index: 2; }
.page-banner .lead,
.page-banner p {
    color: rgba(255,255,255,.92) !important;
    text-shadow: 0 1px 6px rgba(0,0,0,.45);
}
.page-banner .breadcrumb-line,
.page-banner .breadcrumb-line a { text-shadow: 0 1px 6px rgba(0,0,0,.45); }
body .page-banner h1,
body.interior-mode .page-banner h1 {
    color: #fff !important;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    margin-bottom: 16px;
    text-shadow: 0 2px 14px rgba(0,0,0,.55);
}
.page-banner .breadcrumb-line {
    display: flex; gap: 10px; align-items: center;
    list-style: none; padding: 0; margin: 0;
    font-size: .9rem;
    color: rgba(255,255,255,.75);
}
.page-banner .breadcrumb-line a { color: rgba(255,255,255,.85); text-decoration: none; }
.page-banner .breadcrumb-line a:hover { color: var(--es-primary); }
.page-banner .breadcrumb-line .sep { color: var(--es-primary); }
.page-banner .accent-line {
    width: 60px; height: 4px;
    background: var(--es-primary);
    margin-bottom: 22px;
}

/* ============================================
   INTERIOR — Sections
   ============================================ */
.section { padding: 100px 0; }
.section.bg-soft { background: var(--es-bg); }
.section-title { margin-bottom: 60px; }
.section-title.center { text-align: center; }
.section-title .eyebrow {
    display: inline-block;
    font-family: 'Space Grotesk', sans-serif;
    color: var(--es-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: .8rem;
    padding: 6px 14px;
    background: rgba(244,124,32,.1);
    border-radius: 30px;
    margin-bottom: 18px;
}
.section-title h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    line-height: 1.15;
    margin-bottom: 0;
}
.section-title h2 span.accent { color: var(--es-primary); }

/* Interior service cards */
.service-card {
    background: #fff;
    border: 1px solid var(--es-line);
    border-radius: 10px;
    padding: 36px 28px;
    text-align: left;
    height: 100%;
    transition: all .35s ease;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0;
    height: 100%; width: 3px;
    background: var(--es-primary);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform .35s ease;
}
.service-card:hover::before { transform: scaleY(1); transform-origin: top; }
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(15,27,45,.08);
    border-color: transparent;
}
.service-card .svc-icon {
    width: 56px; height: 56px;
    border-radius: 10px;
    background: rgba(244,124,32,.1);
    color: var(--es-primary);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 22px;
    font-size: 1.4rem;
    transition: all .3s ease;
}
.service-card:hover .svc-icon { background: var(--es-primary); color: #fff; }
.service-card h4 { font-size: 1.25rem; margin-bottom: 12px; }
.service-card p { color: var(--es-muted); margin: 0; }

/* Work / B&B grid */
.work-card {
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,.04);
    transition: all .35s ease;
    height: 100%;
}
.work-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(15,27,45,.12);
}
.work-card .work-thumb {
    height: 220px;
    overflow: hidden;
    position: relative;
}
.work-card .work-thumb img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .6s ease;
}
.work-card:hover .work-thumb img { transform: scale(1.06); }
.work-card .work-thumb::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(15,27,45,.4));
}
.work-card .work-body { padding: 24px 24px 28px; }
.work-card .work-tag {
    display: inline-block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--es-primary);
    margin-bottom: 10px;
    font-weight: 600;
}
.work-card h4 { font-size: 1.2rem; margin-bottom: 10px; }
.work-card p { color: var(--es-muted); margin: 0; }

/* Callout strip (dark) */
.callout-strip {
    position: relative;
    padding: 110px 0;
    background: var(--es-ink);
    color: #fff;
    overflow: hidden;
}
.callout-strip .callout-bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease;
}
.callout-strip .callout-bg.active { opacity: .25; }
.callout-strip > .container { position: relative; z-index: 2; }
.callout-strip h2 { color: #fff; }
.callout-strip .eyebrow { background: rgba(244,124,32,.18); color: var(--es-primary); }
.callout-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 10px;
    padding: 32px 26px;
    text-align: center;
    transition: all .3s ease;
    height: 100%;
}
.callout-card:hover {
    background: rgba(244,124,32,.08);
    border-color: var(--es-primary);
    transform: translateY(-4px);
}
.callout-card .callout-icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,.2);
    color: var(--es-primary);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.4rem;
    transition: all .3s ease;
}
.callout-card:hover .callout-icon { border-color: var(--es-primary); background: var(--es-primary); color: #fff; }
.callout-card h4 { color: var(--es-primary); font-size: 1.15rem; margin-bottom: 10px; }
.callout-card p { color: rgba(255,255,255,.75); margin: 0; font-size: .95rem; }

/* CTA strip (orange gradient) */
.cta-strip {
    background: linear-gradient(135deg, var(--es-primary), #ff9a4a);
    padding: 50px 0;
    color: #fff;
}
.cta-strip h3 {
    color: #fff;
    font-size: clamp(1.4rem, 3vw, 2rem);
    margin: 0;
}
.cta-strip p { color: rgba(255,255,255,.9); margin: 6px 0 0; }
.cta-strip .btn-light-cta {
    background: #fff;
    color: var(--es-ink);
    padding: 13px 30px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-size: .85rem;
    border-radius: 4px;
    border: 0;
    transition: all .25s ease;
    text-decoration: none;
    display: inline-block;
}
.cta-strip .btn-light-cta:hover { background: var(--es-ink); color: #fff; transform: translateY(-2px); }

/* Interior footer v2 */
.es-footer-v2 {
    background: var(--es-ink);
    color: rgba(255,255,255,.7);
    padding: 80px 0 0;
}
.es-footer-v2 h5 {
    color: #fff;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
}
.es-footer-v2 p, .es-footer-v2 address { color: rgba(255,255,255,.65); line-height: 1.75; }
.es-footer-v2 a { color: rgba(255,255,255,.7); text-decoration: none; transition: color .2s ease; }
.es-footer-v2 a:hover { color: var(--es-primary); }
.es-footer-v2 .f-list { list-style: none; padding: 0; margin: 0; }
.es-footer-v2 .f-list li {
    padding: 7px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
    transition: padding .2s ease;
}
.es-footer-v2 .f-list li:last-child { border-bottom: 0; }
.es-footer-v2 .f-list li:hover { padding-left: 3px; }
.es-footer-v2 .f-list > li > i { color: var(--es-primary); margin-right: 10px; }
.es-footer-v2 .f-contact li { display: flex; gap: 14px; align-items: center; padding: 10px 0; border: 0; }
.es-footer-v2 .f-contact li:hover { padding-left: 0; }
.es-footer-v2 .f-contact .ic {
    width: 40px; height: 40px;
    flex-shrink: 0;
    background: rgba(244,124,32,.15);
    color: var(--es-primary);
    border-radius: 8px;
    display: inline-flex; align-items: center; justify-content: center;
    line-height: 1;
    font-size: .95rem;
}
.es-footer-v2 .f-contact li > div { min-width: 0; }
.es-footer-v2 .f-contact address { margin: 0; }
.footer-bottom-v2 {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 22px 0;
    margin-top: 60px;
    font-size: .9rem;
}
.footer-bottom-v2 .footer-bottom-nav a { color: rgba(255,255,255,.7); }
.footer-bottom-v2 .footer-bottom-nav a:hover { color: var(--es-primary); }

/* ============================================
   INTERIOR — Accordion (for FAQ)
   ============================================ */
.es-accordion .accordion-item {
    background: #fff;
    border: 1px solid var(--es-line);
    border-radius: 10px;
    margin-bottom: 14px;
    overflow: hidden;
}
.es-accordion .accordion-button {
    background: #fff;
    color: var(--es-ink);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 20px 24px;
    box-shadow: none;
}
.es-accordion .accordion-button:not(.collapsed) {
    background: rgba(244,124,32,.08);
    color: var(--es-primary);
    box-shadow: none;
}
.es-accordion .accordion-button:focus { box-shadow: 0 0 0 .2rem rgba(244,124,32,.18); }
.es-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23f47c20'%3E%3Cpath d='M3.204 5L8 10.481 12.796 5 14 6.392 8 13.5l-6-7.108L3.204 5z'/%3E%3C/svg%3E");
}
.es-accordion .accordion-body {
    padding: 20px 24px 24px;
    color: var(--es-muted);
    line-height: 1.7;
}

/* ============================================
   INTERIOR — Team grid (about page)
   ============================================ */
.team-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: all .35s ease;
    box-shadow: 0 4px 18px rgba(0,0,0,.04);
    height: 100%;
}
.team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(15,27,45,.12);
}
.team-card .team-photo {
    height: 220px;
    background: linear-gradient(135deg, var(--es-ink), var(--es-ink-soft));
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    position: relative;
}
.team-card .team-photo img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
}
.team-card .team-info {
    padding: 20px;
    text-align: center;
}
.team-card .team-info h4 {
    font-size: 1.15rem;
    margin-bottom: 4px;
}
.team-card .team-info p {
    color: var(--es-primary);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* Progress bars (about page skills) */
.skill-bar { margin-bottom: 22px; }
.skill-bar .skill-label {
    display: flex;
    justify-content: space-between;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    color: var(--es-ink);
    margin-bottom: 8px;
    font-size: .95rem;
}
.skill-bar .skill-track {
    background: var(--es-line);
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
}
.skill-bar .skill-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--es-primary), #ff9a4a);
    border-radius: 4px;
    width: 0;
    transition: width 1.6s ease;
}

/* "Need help" + quick contact aside */
.help-aside { padding: 30px; background: var(--es-bg); border-radius: 10px; }
.help-aside h3 { margin-bottom: 14px; }
.help-aside p { color: var(--es-muted); }

/* Privacy / text content pages */
.content-section { padding: 80px 0; }
.content-section h3 {
    font-size: 1.3rem;
    margin: 32px 0 14px;
    color: var(--es-ink);
}
.content-section p {
    color: var(--es-ink-soft);
    margin-bottom: 14px;
    line-height: 1.75;
}
.content-section ul { color: var(--es-ink-soft); line-height: 1.75; }
.content-section ul li { margin-bottom: 10px; }

/* ============================================
   SHARED — Scroll to top
   ============================================ */
.scroll-top {
    position: fixed;
    right: 24px; bottom: 24px;
    width: 48px; height: 48px;
    background: var(--es-primary);
    color: #fff;
    border: 0;
    border-radius: 50%;
    display: none;
    align-items: center; justify-content: center;
    z-index: 1020;
    box-shadow: 0 6px 18px rgba(244,124,32,.4);
    transition: all .25s ease;
}
.scroll-top.visible { display: flex; }
.scroll-top:hover { background: var(--es-primary-dark); transform: translateY(-3px); }

/* ============================================
   SHARED — Modal
   ============================================ */
#quotes-modal .modal-content { border: 0; border-radius: 10px; overflow: hidden; }
#quotes-modal .modal-header {
    background: linear-gradient(135deg, var(--es-secondary), var(--es-dark));
    color: #fff;
    border: 0;
    padding: 26px 30px;
}
body.interior-mode #quotes-modal .modal-header {
    background: var(--es-ink);
}
#quotes-modal .modal-header h3 { color: #fff; margin: 0; font-size: 1.4rem; }
#quotes-modal .modal-header .btn-close { filter: invert(1); }
#quotes-modal .modal-body { padding: 32px; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .es-navbar { background: rgba(14,20,25,.95); padding: 12px 0; }
    .es-navbar .navbar-collapse { background: rgba(14,20,25,.98); margin-top: 12px; padding: 12px; border-radius: 6px; }
    .section-pad, .section { padding: 70px 0; }
    .contact-form-wrap { padding: 30px; }
}
@media (max-width: 767px) {
    .utility-bar .util-right { justify-content: center; margin-top: 6px; }
    .utility-bar .util-list { justify-content: center; }
    .page-banner { padding: 100px 0 60px; text-align: center; }
    .page-banner .breadcrumb-line { justify-content: center; }
    .page-banner .accent-line { margin: 0 auto 22px; }
    .cta-strip { text-align: center; }
    .cta-strip .text-md-end { text-align: center !important; margin-top: 20px; }
}
@media (max-width: 575px) {
    .es-hero { min-height: 540px; }
    .es-hero .swiper-button-next, .es-hero .swiper-button-prev { display: none; }
}

/* ============================================
   INDUSTRY VERTICAL + CITY PAGE SHARED COMPONENTS
   Used by: pnw-agriculture-freight, washington-apple-freight,
   idaho-potato-freight, pnw-cherry-freight, yakima-hops-freight,
   pnw-construction-data-center-freight, pnw-food-beverage-freight,
   pnw-aerospace-freight, seattle-freight-broker (and future Tier 2
   city pages). Extracted from inline <style> blocks 2026-05-14.
   ============================================ */

/* SVG illustration wrapper */
.ag-svg-wrap {
    background: #ffffff;
    border: 1px solid var(--es-line, #e1e5eb);
    border-radius: 14px;
    padding: 22px;
    box-shadow: 0 12px 40px rgba(15,27,45,.06);
    margin: 30px 0;
}
.ag-svg-wrap svg { width: 100%; height: auto; display: block; }
.ag-svg-caption {
    font-size: .85rem;
    color: var(--es-muted, #5b6878);
    margin-top: 14px;
    font-style: italic;
}

/* Commodity / topic card — used for shippers, lanes, equipment, and stat cards */
.commodity-card {
    background: #ffffff;
    border: 1px solid var(--es-line, #e1e5eb);
    border-radius: 12px;
    padding: 26px;
    height: 100%;
    transition: transform .15s ease, box-shadow .15s ease;
}
.commodity-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(15,27,45,.08);
}
.commodity-card .commodity-pct {
    display: inline-block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    color: var(--es-primary, #d97c2c);
    margin-bottom: 8px;
}
.commodity-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
}
.commodity-card .commodity-meta {
    font-size: .8rem;
    color: var(--es-muted, #5b6878);
    margin-top: 14px;
    line-height: 1.6;
}
.commodity-card .commodity-meta strong {
    color: var(--es-ink, #1a2742);
    font-weight: 600;
}

/* Regulatory / informational left-bordered card */
.reg-card {
    background: #fafbfc;
    border-left: 3px solid var(--es-primary, #d97c2c);
    padding: 18px 22px;
    border-radius: 0 8px 8px 0;
    margin-bottom: 18px;
}
.reg-card h5 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: .98rem;
    font-weight: 700;
    color: var(--es-ink, #1a2742);
    margin-bottom: 8px;
}

/* Pain-points / solutions split row */
.pain-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--es-line, #e1e5eb);
}
.pain-row:last-child { border-bottom: none; }
.pain-row .pain-issue h5 {
    color: #b85a18;
    font-size: .98rem;
    margin-bottom: 6px;
}
.pain-row .pain-solution h5 {
    color: #1f5e3a;
    font-size: .98rem;
    margin-bottom: 6px;
}
@media (max-width: 767.98px) {
    .pain-row { grid-template-columns: 1fr; }
}

/* Lane table */
.lane-table {
    background: #fff;
    border: 1px solid var(--es-line, #e1e5eb);
    border-radius: 12px;
    overflow: hidden;
}
.lane-table table {
    width: 100%;
    border-collapse: collapse;
    font-size: .9rem;
}
.lane-table th {
    background: var(--es-ink, #1a2742);
    color: #fff;
    text-align: left;
    padding: 12px 16px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.4px;
}
.lane-table td {
    padding: 11px 16px;
    border-bottom: 1px solid var(--es-line, #eef0f4);
    color: var(--es-ink-soft, #2d3a55);
}
.lane-table tr:last-child td { border-bottom: none; }
.lane-table tr:nth-child(even) td { background: #fafbfc; }

/* Temperature comparison cards — used on potato + cherry pages */
.temp-comparison {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 20px;
}
.temp-card {
    background: #fff;
    border: 1px solid var(--es-line, #e1e5eb);
    border-radius: 10px;
    padding: 22px;
    text-align: center;
}
.temp-card.is-warning {
    border-color: #d97c2c;
    background: #fff7ec;
}
.temp-card .temp-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    color: var(--es-muted, #5b6878);
    margin-bottom: 8px;
}
.temp-card .temp-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--es-ink, #1a2742);
    line-height: 1;
    margin-bottom: 8px;
}
.temp-card .temp-note {
    font-size: .82rem;
    color: var(--es-muted, #5b6878);
    line-height: 1.5;
}
@media (max-width: 767.98px) {
    .temp-comparison { grid-template-columns: 1fr; }
}

/* Export market / cargo value rows — used on apple + aerospace pages */
.export-row,
.cargo-value-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--es-line, #eef0f4);
}
.export-row:last-child,
.cargo-value-row:last-child { border-bottom: none; }
.export-row .market,
.cargo-value-row .label {
    font-weight: 600;
    color: var(--es-ink, #1a2742);
    font-size: .95rem;
}
.export-row .value,
.cargo-value-row .value {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    color: var(--es-primary, #d97c2c);
    font-size: .95rem;
}
.export-row .note {
    font-size: .82rem;
    color: var(--es-muted, #5b6878);
    font-style: italic;
}

/* ====== Stat grid (used on city / lane / equipment pages) ====== */
.stat-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
.stat-card {
    background: #fff;
    border: 1px solid var(--es-line, #e6eaef);
    border-radius: 12px;
    padding: 22px 18px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(15,27,45,.06);
    transition: transform .2s ease, box-shadow .2s ease;
}
.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(15,27,45,.10);
}
.stat-num {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--es-primary, #d97c2c);
    line-height: 1.1;
    margin-bottom: 8px;
}
.stat-lbl {
    display: block;
    font-size: .82rem;
    color: var(--es-muted, #5b6878);
    line-height: 1.45;
}
@media (max-width: 575px) {
    .stat-grid { grid-template-columns: 1fr; }
}

/* ====== Lane-table mobile horizontal scroll affordance ====== */
@media (max-width: 767px) {
    .lane-table {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .lane-table table {
        min-width: 640px;
    }
}
