
:root {
  --blue:      #1A7EC8;
  --blue-dark: #1568A8;
  --blue-lt:   #E8F4FD;
  --navy:      #0D2040;
  --navy-mid:  #162D55;
  --ice:       #D6EBF8;
  --white:     #ffffff;
  --gray-50:   #F7F8FA;
  --gray-100:  #EAECF0;
  --gray-300:  #C4C9D4;
  --gray-500:  #4B5563;
  --gray-700:  #1F2937;
  --text:      #111827;
  --radius-sm: 6px;
  --radius:    12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow:    0 4px 16px rgba(0,0,0,.10);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.15);
  --nav-h:     108px;
  --max:       1240px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Barlow', sans-serif; color: var(--text); background: var(--white); line-height: 1.7; font-size: 16px; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

.btn { display: inline-flex; align-items: center; gap: 8px; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 16px; letter-spacing: .5px; padding: 13px 28px; border-radius: var(--radius-sm); border: none; cursor: pointer; transition: all .2s; white-space: nowrap; }
.btn-primary { background: var(--blue); color: var(--white); }
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-white { background: var(--white); color: var(--navy); }
.btn-white:hover { background: var(--ice); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.5); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-1px); }
.btn-lg { padding: 16px 36px; font-size: 18px; }

.section-label { font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--blue); }
.section-title { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(32px, 5vw, 52px); font-weight: 800; line-height: 1.05; color: var(--navy); margin-top: 8px; }
.section-sub { font-size: 18px; color: var(--gray-500); margin-top: 14px; max-width: 640px; line-height: 1.75; }
.section-header { margin-bottom: 48px; }
.section-header-row { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; gap: 24px; flex-wrap: wrap; }

/* ============================
   NAV + MEGA MENU
   ============================ */
#nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: var(--navy); transition: box-shadow .3s; }
#nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,.5); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; height: var(--nav-h); gap: 24px; }
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img { height: 92px; width: auto; max-width: 340px; transition: height .2s; }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links > li { position: relative; }
.nav-links a, .nav-links button { font-family: 'Barlow Condensed', sans-serif; font-size: 15px; font-weight: 600; letter-spacing: .5px; color: rgba(255,255,255,.78); transition: color .2s; background: none; border: none; cursor: pointer; padding: 10px 0; display: inline-flex; align-items: center; gap: 4px; text-transform: uppercase; }
.nav-links a:hover, .nav-links a.active, .nav-links button:hover, .nav-links li.open > button { color: var(--white); }
.nav-links .caret { width: 10px; height: 10px; transition: transform .2s; }
.nav-links li.open .caret { transform: rotate(180deg); }
.nav-right { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.nav-phone { font-family: 'Barlow Condensed', sans-serif; font-size: 16px; font-weight: 700; color: var(--white); display: flex; align-items: center; gap: 7px; }
.nav-phone svg { color: var(--white); width: 15px; height: 15px; }
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; color: white; }

/* Icon helper — ensures inline SVGs render white when used as buttons */
.icon-phone { width: 16px; height: 16px; stroke: currentColor; fill: none; flex-shrink: 0; }

/* Mega Menu - full-width, 5 columns desktop */
.mega-menu { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; background: var(--white); box-shadow: 0 20px 50px rgba(0,0,0,.25); border-top: 3px solid var(--blue); padding: 38px 0 44px; z-index: 120; }
.nav-links li.open > .mega-menu { display: block; animation: megaFade .18s ease-out; }
@keyframes megaFade { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }
.mega-inner { max-width: var(--max); margin: 0 auto; padding: 0 28px; }
.mega-grid { display: grid; gap: 28px 28px; }
.mega-grid.cols-2 { grid-template-columns: 1fr 1fr; }
.mega-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.mega-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.mega-grid.cols-5 { grid-template-columns: repeat(5, 1fr); }
.mega-col h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 800; letter-spacing: 1.4px; text-transform: uppercase; color: var(--blue); padding-bottom: 10px; border-bottom: 2px solid var(--blue-lt); margin-bottom: 12px; display: flex; align-items: center; gap: 7px; }
.mega-col h4 svg { width: 16px; height: 16px; color: var(--blue); flex-shrink: 0; }
.mega-col ul { display: flex; flex-direction: column; gap: 1px; }
.mega-col ul li a { display: block; font-family: 'Barlow', sans-serif; font-size: 13.5px; font-weight: 500; color: var(--gray-700); padding: 4px 0; transition: color .12s, transform .12s; text-transform: none; letter-spacing: 0; line-height: 1.4; }
.mega-col ul li a:hover { color: var(--blue); transform: translateX(2px); }
.mega-col-split { display: grid; grid-template-columns: 1fr 1fr; gap: 0 18px; }
.mega-col .see-all { display: inline-block; margin-top: 12px; font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 800; letter-spacing: .8px; color: var(--blue); text-transform: uppercase; padding: 4px 0; border-top: 1px solid var(--gray-100); padding-top: 10px; }
.mega-col .see-all:hover { color: var(--blue-dark); }

/* Mobile menu */
.mobile-menu { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0; background: var(--navy); z-index: 99; padding: 20px 24px 40px; flex-direction: column; gap: 2px; overflow-y: auto; }
.mobile-menu.open { display: flex; }
.mobile-menu .m-item { font-family: 'Barlow Condensed', sans-serif; font-size: 17px; font-weight: 700; color: rgba(255,255,255,.9); padding: 14px 4px; border-bottom: 1px solid rgba(255,255,255,.08); display: flex; justify-content: space-between; align-items: center; text-transform: uppercase; letter-spacing: .5px; cursor: pointer; background: none; border-left: 0; border-right: 0; border-top: 0; width: 100%; text-align: left; }
.mobile-menu .m-group { border-bottom: 1px solid rgba(255,255,255,.08); }
.mobile-menu .m-group.open .m-caret { transform: rotate(180deg); }
.mobile-menu .m-caret { width: 14px; height: 14px; transition: transform .2s; }
.mobile-menu .m-sub { display: none; flex-direction: column; padding: 4px 0 14px 16px; }
.mobile-menu .m-group.open .m-sub { display: flex; }
.mobile-menu .m-sub .m-substate { font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 800; color: var(--blue); text-transform: uppercase; letter-spacing: 1px; margin-top: 10px; margin-bottom: 4px; }
.mobile-menu .m-sub a { font-family: 'Barlow', sans-serif; font-size: 15px; font-weight: 500; color: rgba(255,255,255,.7); padding: 8px 0; text-transform: none; letter-spacing: 0; display: block; }
.mobile-menu .m-sub a:hover { color: var(--white); }
.mobile-menu .m-cta { margin-top: 22px; display: flex; flex-direction: column; gap: 10px; }
.mobile-menu .m-cta .btn { justify-content: center; padding: 14px; font-size: 16px; }

/* scroll lock helper */
body.menu-open { overflow: hidden; }

/* TRUST BAR */
.trust-bar { background: var(--blue); padding: 12px 0; }
.trust-inner { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 8px 28px; }
.trust-item { display: flex; align-items: center; gap: 7px; font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 700; letter-spacing: .4px; color: var(--white); }
.trust-item svg { width: 15px; height: 15px; flex-shrink: 0; }
.trust-divider { width: 1px; height: 16px; background: rgba(255,255,255,.3); }

/* PAGE HERO */
.page-hero { padding-top: var(--nav-h); background: var(--navy); position: relative; overflow: hidden; }
.page-hero-inner { padding: 56px 0 56px; display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: center; }
.page-hero.centered .page-hero-inner { grid-template-columns: 1fr; text-align: center; padding: 72px 0 72px; }
.page-hero-breadcrumb { display: flex; align-items: center; gap: 6px; margin-bottom: 16px; font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 600; color: rgba(255,255,255,.45); flex-wrap: wrap; }
.page-hero-breadcrumb a { color: rgba(255,255,255,.5); transition: color .2s; }
.page-hero-breadcrumb a:hover { color: rgba(255,255,255,.9); }
.page-hero-breadcrumb span { color: rgba(255,255,255,.25); }
.page-hero .section-label { color: #60B4F0; }
.page-hero h1 { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(36px, 5.4vw, 62px); font-weight: 900; line-height: 1.02; color: var(--white); text-transform: uppercase; margin-top: 8px; }
.page-hero h1 em { color: var(--blue); font-style: normal; display: block; }
.page-hero p.lead { font-size: 17px; color: rgba(255,255,255,.7); margin-top: 18px; max-width: 560px; line-height: 1.6; }
.page-hero.centered p.lead { margin: 18px auto 0; }
.page-hero-cta { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.page-hero.centered .page-hero-cta { justify-content: center; }
.page-hero-feats { display: flex; flex-wrap: wrap; gap: 6px 22px; align-items: center; margin-top: 26px; }
.page-hero-feat { display: flex; align-items: center; gap: 7px; font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 600; color: rgba(255,255,255,.7); }
.page-hero-feat svg { color: var(--blue); flex-shrink: 0; width: 14px; height: 14px; }

/* FORMS — min 16px prevents iOS zoom */
.form-card { background: var(--white); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-lg); }
.form-card h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 2px; }
.form-card > p { font-size: 13px; color: var(--gray-500); margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 10px; }
.form-group label { font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; color: var(--gray-500); }
.form-group input, .form-group select, .form-group textarea { padding: 12px 13px; border: 1.5px solid var(--gray-100); border-radius: var(--radius-sm); font-family: 'Barlow', sans-serif; font-size: 16px; color: var(--text); background: var(--gray-50); transition: border-color .2s, background .2s; width: 100%; appearance: none; -webkit-appearance: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--blue); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 88px; }
.form-full { grid-column: 1 / -1; }
.form-submit { width: 100%; padding: 15px; background: var(--blue); color: var(--white); border: none; border-radius: var(--radius-sm); cursor: pointer; font-family: 'Barlow Condensed', sans-serif; font-size: 17px; font-weight: 800; letter-spacing: .5px; transition: all .2s; display: flex; align-items: center; justify-content: center; gap: 8px; }
.form-submit:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: var(--shadow); }
.form-note { text-align: center; font-size: 12px; color: var(--gray-500); margin-top: 10px; }
.form-group .req { color: var(--blue); }

/* Full quote form — larger, more breathing room */
.form-card-full { padding: 36px 40px; }
.form-card-full h3 { font-size: 26px; }
.form-card-full > p { font-size: 14px; margin-bottom: 22px; }
.form-card-full .form-group { margin-bottom: 14px; }
.form-card-full .form-submit { padding: 17px; font-size: 18px; margin-top: 6px; }

/* /get-a-quote/ page 2-column layout: form + sidebar */
.quote-layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 30px; align-items: start; }
.quote-sidebar { display: flex; flex-direction: column; gap: 18px; }
.quote-sidebar-phone { background: var(--navy); color: var(--white); border-radius: var(--radius-lg); padding: 26px 24px; }
.quote-sidebar .sidebar-label { font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 800; letter-spacing: 1.2px; color: var(--blue-lt); text-transform: uppercase; margin-bottom: 8px; }
.quote-sidebar .sidebar-phone-num { font-family: 'Barlow Condensed', sans-serif; font-size: 34px; font-weight: 900; color: var(--white); display: block; letter-spacing: .5px; line-height: 1.1; }
.quote-sidebar .sidebar-phone-num:hover { color: var(--blue-lt); }
.quote-sidebar-phone p { font-size: 13px; color: rgba(255,255,255,.6); margin-top: 6px; line-height: 1.5; }
.quote-sidebar-steps { background: var(--white); border: 1.5px solid var(--gray-100); border-radius: var(--radius-lg); padding: 24px 22px; }
.quote-sidebar-steps h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 800; color: var(--navy); margin-bottom: 14px; }
.qs-step { display: flex; gap: 13px; padding: 12px 0; border-bottom: 1px solid var(--gray-100); align-items: flex-start; }
.qs-step:last-child { border-bottom: none; padding-bottom: 0; }
.qs-step:first-of-type { padding-top: 0; }
.qs-num { flex-shrink: 0; font-family: 'Barlow Condensed', sans-serif; font-size: 24px; font-weight: 900; color: var(--blue); line-height: 1; margin-top: -2px; }
.qs-step strong { display: block; font-family: 'Barlow Condensed', sans-serif; font-size: 15px; font-weight: 700; color: var(--navy); }
.qs-step p { font-size: 13px; color: var(--gray-500); margin-top: 2px; line-height: 1.4; }
.quote-sidebar-info { background: var(--blue-lt); border-radius: var(--radius-lg); padding: 22px; border: 1px solid rgba(33,150,243,.2); }
.quote-sidebar-info strong { display: block; font-family: 'Barlow Condensed', sans-serif; font-size: 16px; font-weight: 800; color: var(--blue-dark); margin-bottom: 8px; }
.quote-sidebar-info p { font-size: 13px; color: var(--gray-700); line-height: 1.55; }

/* SERVICE CARDS */
.service-card { border: 1.5px solid var(--gray-100); border-radius: var(--radius-lg); padding: 32px 28px; transition: all .25s; position: relative; overflow: hidden; background: var(--white); }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--blue); transform: scaleX(0); transform-origin: left; transition: transform .3s; }
.service-card:hover { border-color: var(--blue); box-shadow: var(--shadow); transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { width: 48px; height: 48px; border-radius: var(--radius-sm); background: var(--navy); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.service-icon svg { color: var(--white); width: 24px; height: 24px; }
.service-card h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 24px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.service-card p { font-size: 15px; color: var(--gray-500); line-height: 1.7; margin-bottom: 16px; }
.service-link { font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 700; letter-spacing: .5px; color: var(--blue); display: inline-flex; align-items: center; gap: 5px; transition: gap .2s; text-transform: uppercase; }
.service-link:hover { gap: 9px; }

/* CONTENT */
.content-section { padding: 80px 0; }
.content-section.bg-gray { background: var(--gray-50); }
.content-section.bg-navy { background: var(--navy); color: rgba(255,255,255,.85); }
.content-section.bg-navy h2, .content-section.bg-navy h3 { color: var(--white); }
.content-section.bg-blue { background: var(--blue); color: var(--white); }
.content-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.content-2col.wide { gap: 80px; }
.content-prose p { font-size: 16px; color: var(--gray-500); line-height: 1.85; margin-bottom: 18px; }
.content-prose ul { margin: 18px 0; padding-left: 0; }
.content-prose ul li { font-size: 16px; color: var(--gray-500); line-height: 1.7; padding-left: 28px; position: relative; margin-bottom: 10px; }
.content-prose ul li::before { content: ''; position: absolute; left: 0; top: 9px; width: 14px; height: 14px; border-radius: 50%; background: var(--blue-lt); border: 2px solid var(--blue); }

/* FEATURE ITEMS */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.feature-item { display: flex; flex-direction: column; gap: 10px; }
.feature-icon { width: 46px; height: 46px; border-radius: var(--radius-sm); background: var(--navy); display: flex; align-items: center; justify-content: center; }
.feature-icon svg { color: var(--white); width: 22px; height: 22px; }
.feature-icon.light { background: rgba(255,255,255,.12); }
.feature-icon.light svg { color: rgba(255,255,255,.85); }
.feature-item h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 800; color: var(--navy); }
.feature-item.on-dark h4 { color: var(--white); }
.feature-item p { font-size: 15px; color: var(--gray-500); line-height: 1.75; }
.feature-item.on-dark p { color: rgba(255,255,255,.6); }

/* STEPS */
.steps { display: flex; flex-direction: column; }
.step { display: flex; gap: 24px; padding: 24px 0; border-bottom: 1.5px solid var(--gray-100); }
.step:last-child { border-bottom: none; }
.step-num { font-family: 'Barlow Condensed', sans-serif; font-size: 48px; font-weight: 900; color: var(--gray-100); line-height: 1; flex-shrink: 0; width: 52px; text-align: center; transition: color .2s; }
.step:hover .step-num { color: var(--blue); }
.step-body h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.step-body p { font-size: 15px; color: var(--gray-500); line-height: 1.75; }

/* STATS */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-block { text-align: center; padding: 28px 14px; }
.stat-block-num { font-family: 'Barlow Condensed', sans-serif; font-size: 48px; font-weight: 900; color: var(--navy); line-height: 1; }
.stat-block-num span { color: var(--blue); }
.stat-block.on-dark .stat-block-num { color: var(--white); }
.stat-block p { font-size: 13px; color: var(--gray-500); margin-top: 4px; }
.stat-block.on-dark p { color: rgba(255,255,255,.5); }

/* CTA STRIP */
.cta-strip { padding: 72px 0; background: var(--blue); position: relative; overflow: hidden; }
.cta-strip-inner { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; position: relative; z-index: 2; }
.cta-strip h2 { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(28px, 4vw, 44px); font-weight: 900; line-height: 1.05; color: var(--white); text-transform: uppercase; }
.cta-strip h2 span { opacity: .7; display: block; }
.cta-strip p { font-size: 16px; color: rgba(255,255,255,.8); margin-top: 10px; }
.cta-strip-actions { display: flex; flex-direction: column; gap: 12px; align-items: center; min-width: 220px; }
.cta-phone { font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 800; color: var(--white); display: flex; align-items: center; gap: 8px; }

/* INDUSTRY CARDS */
.industry-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.industry-card { border: 1.5px solid var(--gray-100); border-radius: var(--radius); padding: 22px 18px; text-align: center; transition: all .25s; display: block; background: var(--white); }
.industry-card:hover { border-color: var(--blue); background: var(--blue-lt); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.industry-card .icon { width: 46px; height: 46px; background: var(--navy); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; }
.industry-card .icon svg { width: 22px; height: 22px; color: var(--white); }
.industry-card h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 16px; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.industry-card p { font-size: 13px; color: var(--gray-500); line-height: 1.5; }

/* CITY CHIPS */
.city-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.city-chip { font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: .3px; padding: 6px 13px; border-radius: 50px; background: rgba(255,255,255,.08); color: rgba(255,255,255,.75); border: 1px solid rgba(255,255,255,.12); transition: all .2s; }
.city-chip:hover, .city-chip.t1 { background: var(--blue); color: var(--white); border-color: var(--blue); }
.city-chip.light { background: var(--gray-50); color: var(--gray-700); border-color: var(--gray-100); }
.city-chip.light:hover { background: var(--blue-lt); color: var(--blue-dark); border-color: var(--blue); }

/* BREADCRUMB */
.breadcrumb { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--gray-500); margin-bottom: 28px; flex-wrap: wrap; }
.breadcrumb a { color: var(--gray-500); transition: color .2s; }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb span { color: var(--gray-300); }

/* NEARBY / RELATED CHIP LIST */
.nearby-cities { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.nearby-chip { font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 600; padding: 7px 14px; border-radius: 50px; background: var(--gray-50); color: var(--gray-700); border: 1px solid var(--gray-100); transition: all .2s; letter-spacing: .3px; }
.nearby-chip:hover { background: var(--blue-lt); color: var(--blue-dark); border-color: var(--blue); }
.nearby-chip.see-all { background: var(--white); color: var(--blue); border: 1.5px solid var(--blue); font-weight: 700; text-transform: uppercase; font-size: 12px; letter-spacing: .8px; padding: 7px 16px; }
.nearby-chip.see-all:hover { background: var(--blue); color: var(--white); transform: translateY(-1px); }

/* CROSS-LINK GRID (cities ↔ industries load-more) */
.crosslink { margin-top: 8px; }
.crosslink-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px 12px; }
.crosslink-grid a { display: flex; align-items: center; gap: 8px; padding: 10px 12px; background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius-sm); font-size: 13.5px; color: var(--gray-700); transition: all .15s; font-weight: 500; line-height: 1.3; }
.crosslink-grid a:hover { border-color: var(--blue); background: var(--blue-lt); color: var(--blue-dark); transform: translateY(-1px); }
.crosslink-grid a .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--blue); flex-shrink: 0; }
.crosslink-grid a.hidden-item { display: none; }
.crosslink-grid.expanded a.hidden-item { display: flex; }
.crosslink-toggle-wrap { text-align: center; margin-top: 24px; }
.crosslink-toggle { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; letter-spacing: .5px; font-size: 15px; padding: 12px 28px; border-radius: 50px; border: 1.5px solid var(--blue); background: var(--white); color: var(--blue); cursor: pointer; transition: all .2s; text-transform: uppercase; }
.crosslink-toggle:hover { background: var(--blue); color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow-sm); }

/* PRICING CARDS (storage-in-motion style — image + price tiers) */
.pricing-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.pricing-card { background: var(--white); border: 1.5px solid var(--gray-100); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; transition: all .25s; }
.pricing-card:hover { border-color: var(--blue); box-shadow: var(--shadow); transform: translateY(-4px); }
.pricing-card-img { aspect-ratio: 16/11; background: var(--gray-50); overflow: hidden; }
.pricing-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.pricing-card:hover .pricing-card-img img { transform: scale(1.04); }
.pricing-card-body { padding: 24px 24px 28px; display: flex; flex-direction: column; flex: 1; }
.pricing-card-body h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 26px; font-weight: 800; color: var(--navy); }
.pricing-card-size { font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 700; color: var(--blue); letter-spacing: .8px; text-transform: uppercase; margin-top: 2px; margin-bottom: 14px; }
.pricing-tiers { display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; flex: 1; }
.pricing-tier { display: flex; justify-content: space-between; align-items: baseline; padding: 10px 0; border-bottom: 1px solid var(--gray-100); }
.pricing-tier:last-child { border-bottom: none; }
.pricing-tier-label { font-size: 14px; color: var(--gray-500); font-weight: 500; }
.pricing-tier-price { font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 800; color: var(--navy); }
.pricing-tier-price .per { font-size: 12px; color: var(--gray-500); font-weight: 500; margin-left: 2px; }
.pricing-card .btn { width: 100%; justify-content: center; margin-top: auto; }

/* TRAILER GALLERY */
.trailer-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.trailer-gallery-item { aspect-ratio: 4/3; background: var(--gray-100); border-radius: var(--radius); overflow: hidden; }
.trailer-gallery-item img { width: 100%; height: 100%; object-fit: cover; }

/* FOOTER */
#footer { background: var(--navy); color: rgba(255,255,255,.65); padding: 60px 0 28px; }
.footer-top { display: grid; grid-template-columns: 280px 1fr 1fr 1fr; gap: 44px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand img { height: 68px; margin-bottom: 14px; }
.footer-tagline { font-family: 'Barlow Condensed', sans-serif; font-size: 17px; font-weight: 600; color: var(--white); margin-bottom: 14px; }
.footer-brand p { font-size: 14px; line-height: 1.75; margin-bottom: 16px; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; }
.footer-contact a { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,.85); font-size: 14px; transition: color .2s; }
.footer-contact a:hover { color: var(--blue); }
.footer-col h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--white); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,.65); transition: color .2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom { padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; font-size: 13px; color: rgba(255,255,255,.4); }
.footer-bottom-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-bottom-links a { color: rgba(255,255,255,.4); transition: color .2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,.8); }

/* SCROLL TOP BTN */
#scroll-top { position: fixed; bottom: 24px; right: 24px; width: 44px; height: 44px; background: var(--blue); color: var(--white); border: none; border-radius: 50%; cursor: pointer; display: none; align-items: center; justify-content: center; box-shadow: var(--shadow); z-index: 90; transition: all .2s; }
#scroll-top:hover { background: var(--blue-dark); transform: translateY(-2px); }
#scroll-top.visible { display: flex; }

/* FADE-UP ANIMATIONS */
.fade-up { opacity: 0; transform: translateY(20px); transition: opacity .7s, transform .7s; }
.fade-up.in-view { opacity: 1; transform: translateY(0); }
.fade-up-d1 { transition-delay: .08s; }
.fade-up-d2 { transition-delay: .16s; }
.fade-up-d3 { transition-delay: .24s; }

/* GRID BG PATTERN */
.grid-bg { position: absolute; inset: 0; opacity: .04; background-image: repeating-linear-gradient(0deg,transparent,transparent 39px,rgba(255,255,255,.5) 39px,rgba(255,255,255,.5) 40px),repeating-linear-gradient(90deg,transparent,transparent 39px,rgba(255,255,255,.5) 39px,rgba(255,255,255,.5) 40px); pointer-events: none; }

/* AREA GRID (for homepage service area) */
.area-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.area-state { border-top: 1px solid rgba(255,255,255,.1); padding: 14px 0; display: flex; justify-content: space-between; align-items: center; }
.area-state:last-child { border-bottom: 1px solid rgba(255,255,255,.1); }
.area-state-name { font-family: 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 700; color: #fff; }
.area-state-cities { font-size: 13px; color: rgba(255,255,255,.4); margin-top: 2px; }
.area-badge { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 3px 9px; border-radius: 4px; background: rgba(26,126,200,.3); color: #60B4F0; }

/* TESTIMONIALS */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card { border: 1.5px solid var(--gray-100); border-radius: var(--radius-lg); padding: 28px; background: var(--white); }
.testi-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.testi-stars svg { color: #F59E0B; width: 16px; height: 16px; }
.testi-card blockquote { font-size: 15px; color: var(--gray-700); line-height: 1.75; font-style: italic; margin-bottom: 18px; }
.testi-author { display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--gray-100); padding-top: 14px; }
.testi-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; font-family: 'Barlow Condensed', sans-serif; font-size: 15px; font-weight: 800; color: var(--white); flex-shrink: 0; }
.testi-name { font-family: 'Barlow Condensed', sans-serif; font-size: 15px; font-weight: 700; color: var(--navy); }
.testi-role { font-size: 12px; color: var(--gray-500); }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item { border: 1.5px solid var(--gray-100); border-radius: var(--radius); padding: 22px 24px; }
.faq-item h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 19px; font-weight: 800; color: var(--navy); margin-bottom: 8px; display: flex; align-items: center; gap: 12px; }
.faq-item h4::before { content: ''; width: 10px; height: 10px; border-right: 2.5px solid var(--blue); border-bottom: 2.5px solid var(--blue); transform: rotate(-45deg); flex-shrink: 0; margin-top: -2px; }
.faq-item p { font-size: 15px; color: var(--gray-500); line-height: 1.75; }

/* RESPONSIVE */
/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1240px) {
  .mega-inner { max-width: 100%; }
  .nav-logo img { height: 84px; }
}
@media (max-width: 1100px) {
  .nav-links { gap: 18px; }
  .nav-links a, .nav-links button { font-size: 14px; }
}
@media (max-width: 1024px) {
  :root { --nav-h: 92px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .industry-cards { grid-template-columns: repeat(3, 1fr); }
  .pricing-cards { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .cta-strip-inner { grid-template-columns: 1fr; }
  .content-2col, .content-2col.wide { grid-template-columns: 1fr; gap: 40px; }
  .page-hero-inner { grid-template-columns: 1fr; }
  .area-grid { grid-template-columns: 1fr; gap: 40px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-logo img { height: 76px; }
  .crosslink-grid { grid-template-columns: repeat(3, 1fr); }
  .quote-layout { grid-template-columns: 1fr; gap: 24px; }
  .form-card-full { padding: 28px 24px; }
}
@media (max-width: 768px) {
  :root { --nav-h: 80px; }
  .nav-phone { display: none; }
  .nav-right .btn { padding: 10px 18px; font-size: 14px; }
  .nav-logo img { height: 62px; }
  .features-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .industry-cards { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 12px; }
  .trust-divider { display: none; }
  .trust-inner { gap: 6px 18px; }
  .trust-item { font-size: 13px; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .section-header-row { flex-direction: column; align-items: flex-start; gap: 14px; }
  .page-hero h1 { font-size: 34px; }
  .page-hero-inner { padding: 36px 0 36px; gap: 36px; }
  .page-hero.centered .page-hero-inner { padding: 48px 0 48px; }
  .content-section { padding: 56px 0; }
  .trailer-gallery { grid-template-columns: 1fr 1fr; }
  .form-card { padding: 22px 20px; }
  .crosslink-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  :root { --nav-h: 70px; }
  .industry-cards { grid-template-columns: 1fr; }
  .trailer-gallery { grid-template-columns: 1fr; }
  .cta-strip-actions { min-width: 0; width: 100%; }
  .cta-strip-actions .btn { width: 100%; justify-content: center; }
  .nav-logo img { height: 52px; }
  .nav-right { gap: 8px; }
  .nav-right .btn { padding: 9px 14px; font-size: 13px; }
  .crosslink-grid { grid-template-columns: 1fr; }
  .page-hero h1 { font-size: 30px; }
  .section-title { font-size: 28px !important; }
}

/* ============================================================
   COOLEX — May 2026 update (client change requests)
   ============================================================ */

/* (#15 / Email #4) "Tabbed-down" — breathing room between section
   headings and the body copy on Industries, City & About pages */
.content-prose .section-title { margin-bottom: 18px; }
.content-prose .section-title + p { margin-top: 0; }
.page-hero h1 + p.lead { margin-top: 20px; }

/* (Email #4) Color break — swap the all-blue bottom strip for a
   graphite/charcoal band so the page isn't wall-to-wall blue */
.cta-strip { background: linear-gradient(135deg,#2B3543 0%,#1B232E 100%); }
.cta-strip::after { content:''; position:absolute; inset:0; background:radial-gradient(circle at 80% 20%, rgba(26,126,200,.18), transparent 60%); pointer-events:none; }

/* (#5) Phone number in the mobile header.
   Larger phones show the number; small phones show a tap-to-call icon. */
@media (max-width: 768px) {
  .nav-phone { display: inline-flex; font-size: 15px; }
  .nav-phone svg { width: 16px; height: 16px; }
}
@media (max-width: 480px) {
  .nav-phone { font-size: 0; gap: 0; padding: 8px; }   /* hide text, keep tappable icon */
  .nav-phone svg { width: 20px; height: 20px; }
  .nav-right { gap: 6px; }
}

/* (#3) Mobile layering / "old site showing underneath" — kill any
   horizontal overflow that lets the page shift and reveal layers,
   and make over-scroll show the brand navy instead of a white ghost */
html, body { overflow-x: hidden; max-width: 100%; }
html { background: var(--navy); }
body { position: relative; background: var(--white); }

/* (#10/#11) Legal pages — clean single-column reading layout */
.legal-prose .legal-h { font-family:'Barlow Condensed',sans-serif; font-size:clamp(22px,3vw,30px); font-weight:800; color:var(--navy); margin:38px 0 12px; padding-top:10px; border-top:1px solid var(--gray-100); }
.legal-prose .legal-h:first-of-type { border-top:none; padding-top:0; margin-top:18px; }
.legal-prose .legal-sub { font-family:'Barlow Condensed',sans-serif; font-size:19px; font-weight:700; color:var(--blue-dark); margin:20px 0 6px; }
.legal-prose p { margin-bottom:16px; }
.legal-prose ul { margin:10px 0 18px; }
.legal-prose ul li { margin-bottom:8px; }
.legal-contact { background:var(--gray-50); border:1.5px solid var(--gray-100); border-left:4px solid var(--blue); border-radius:var(--radius); padding:22px 24px; margin-top:32px; }
.legal-contact h3 { font-family:'Barlow Condensed',sans-serif; font-size:20px; font-weight:800; color:var(--navy); margin-bottom:8px; }
.legal-contact p { margin-bottom:0; color:var(--gray-700); }
.legal-contact a { color:var(--blue); font-weight:600; }

/* (#12) Power Requirements — spec cards */
.power-specs { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; margin:28px 0 36px; }
.power-spec { border:1.5px solid var(--gray-100); border-radius:var(--radius-lg); padding:22px 16px; text-align:center; background:var(--white); transition:all .2s; }
.power-spec:hover { border-color:var(--blue); box-shadow:var(--shadow-sm); transform:translateY(-3px); }
.power-spec-icon { width:46px; height:46px; margin:0 auto 12px; border-radius:var(--radius-sm); background:var(--navy); display:flex; align-items:center; justify-content:center; }
.power-spec-icon svg { width:24px; height:24px; color:#fff; }
.power-spec-val { font-family:'Barlow Condensed',sans-serif; font-size:24px; font-weight:900; color:var(--navy); line-height:1.1; }
.power-spec-lbl { font-size:12.5px; color:var(--gray-500); margin-top:4px; line-height:1.35; }

/* (Email #4) FIRE WARNING — red treatment */
.fire-warning { background:#FEF2F2; border:2px solid #DC2626; border-radius:var(--radius-lg); padding:26px 28px; margin:34px 0; color:#B91C1C; }
.fire-warning .fire-warning-head { display:flex; align-items:center; gap:12px; margin-bottom:14px; }
.fire-warning .fire-warning-head svg { width:30px; height:30px; color:#DC2626; flex-shrink:0; }
.fire-warning h2 { font-family:'Barlow Condensed',sans-serif; font-size:clamp(20px,2.6vw,26px); font-weight:900; color:#DC2626; text-transform:uppercase; letter-spacing:.5px; margin:0; }
.fire-warning p, .fire-warning li { color:#B91C1C !important; }
.fire-warning ul li::before { background:#FEE2E2; border-color:#DC2626; }
.fire-warning a { color:#991B1B; text-decoration:underline; }

/* (#4) Homepage hero photo — darkened trailer photo to break the blue */
.page-hero--photo { background:#0D2040; display:flex; align-items:center; min-height:620px; }
.page-hero--photo::before {
  content:''; position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(13,32,64,.60) 0%, rgba(13,32,64,.52) 100%),
    url('../images/hero-mobile-cold-storage-trailer.jpg') center 42% / cover no-repeat;
  z-index:0;
}
.page-hero--photo > .container { position:relative; z-index:1; width:100%; }

/* Footer — small-screen legal/power link wrap */
@media (max-width: 480px) {
  .power-specs { grid-template-columns:1fr 1fr; }
}

/* (#1) Human-readable HTML sitemap page */
.sitemap-grid { display:block; }
.sitemap-section { margin-bottom:40px; }
.sitemap-section .legal-h { margin-bottom:16px; }
.sitemap-count { color:var(--gray-500); font-weight:600; font-size:.7em; }
.sitemap-list {
  list-style:none; margin:0; padding:0;
  columns:3; column-gap:32px;
}
.sitemap-list li { margin:0 0 10px; break-inside:avoid; }
.sitemap-list a { color:var(--navy); text-decoration:none; font-weight:500; }
.sitemap-list a:hover { color:var(--blue); text-decoration:underline; }
@media (max-width: 760px) { .sitemap-list { columns:2; } }
@media (max-width: 480px) { .sitemap-list { columns:1; } }

/* ===== Hero photo legibility (boat-show hero) ===== */
.page-hero--photo h1,
.page-hero--photo p.lead,
.page-hero--photo .section-label,
.page-hero--photo .page-hero-breadcrumb,
.page-hero--photo .page-hero-breadcrumb a,
.page-hero--photo .page-hero-feat {
  text-shadow: 0 2px 10px rgba(8,18,38,.6), 0 1px 3px rgba(8,18,38,.7);
}
.page-hero--photo p.lead { color: rgba(255,255,255,.92); }
.page-hero--photo .page-hero-feat { color: rgba(255,255,255,.88); }

/* Consistent hero height so the photo crops the same across page types/devices */
@media (max-width: 1024px) { .page-hero--photo { min-height: 520px; } }
@media (max-width: 768px)  { .page-hero--photo { min-height: 460px; } }
