/* ============================================================
   CONNORS TRANSPORTATION CO. — Brand Stylesheet
   connors.css
   ============================================================ */

:root {
  --cnvs-themecolor: #1B4F9E;
  --cnvs-themecolor-rgb: 27,79,158;

  /* Easing */
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);

  /* Brand tokens */
  --ct-blue: #1B4F9E;
  --ct-blue-dark: #153E7E;
  --ct-navy: #0D1B2E;
  --ct-navy-footer: #0B1628;
  --ct-gray-tint: #F0F4FA;
  --ct-gray-border: #DCE4F0;
  --ct-text: #1a1f2e;
  --ct-muted: #5a6475;
  --ct-white: #ffffff;

  /* Button / shape */
  --ct-radius: 3px;
}

/* ---- TYPOGRAPHY ---- */
body {
  font-family: 'Inter', sans-serif;
  color: var(--ct-text);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-weight: 700;
  color: var(--ct-text);
  text-wrap: balance;
}

h2 {
  line-height: 1.15;
}

/* ---- HEADER ---- */
#header {
  background: #fff;
  border-bottom: 1px solid var(--ct-gray-border);
}

#header .header-row {
  min-height: 100px;
  align-items: center;
}

#logo {
  padding: 8px 0;
}

#header .menu-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ct-text);
}

#header .menu-link:hover,
#header .current .menu-link {
  color: var(--ct-blue);
}

.cnvs-header-hiring {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--ct-blue);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--ct-radius);
  text-decoration: none;
  transition: background 200ms var(--ease-out);
  white-space: nowrap;
}

@media (hover: hover) and (pointer: fine) {
  .cnvs-header-hiring:hover {
    background: var(--ct-blue-dark);
    color: #fff;
  }
}

/* ---- HERO ---- */
.cnvs-hero-home {
  position: relative;
  /* Tracks a 16:9 video on mid-size screens, but never collapses below the
     height the heading and copy need, and never runs away on wide monitors. */
  min-height: clamp(560px, 56.25vw, 780px);
  display: flex;
  align-items: center;
  /* Poster frame doubles as the fallback when the video can't play. */
  background-image: url('./images/connors-chicago-lakeshore-poster.jpg');
  background-size: cover;
  background-position: center;
  background-color: var(--ct-blue-dark, #0b1628);
  overflow: hidden;
}

/* ---- HERO BACKGROUND VIDEO ---- */
.cnvs-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  border: 0;
  pointer-events: none;
  /* Fade in over the poster so there's no black flash on first frame. */
  opacity: 0;
  transition: opacity 700ms var(--ease-out);
}

.cnvs-hero-video.is-playing {
  opacity: 1;
}

.cnvs-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(11,22,40,0.88) 0%, rgba(11,22,40,0.60) 60%, rgba(27,79,158,0.30) 100%);
  z-index: 1;
}

.cnvs-hero-inner {
  position: relative;
  z-index: 2;
  padding: 100px 0;
  width: 100%;
}

.cnvs-hero-content {
  max-width: 680px;
}

.cnvs-hero-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1rem;
}

.cnvs-hero-home h1 {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
}

.cnvs-hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
  max-width: 580px;
  margin-bottom: 2rem;
}

.cnvs-hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ---- BUTTONS ---- */
.cnvs-btn-primary {
  background: var(--cnvs-themecolor);
  border: 2px solid var(--cnvs-themecolor);
  color: #fff;
  border-radius: var(--ct-radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 12px 24px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 200ms var(--ease-out), border-color 200ms var(--ease-out), transform 160ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .cnvs-btn-primary:hover {
    background: var(--ct-blue-dark);
    border-color: var(--ct-blue-dark);
    color: #fff;
  }
}

.cnvs-btn-primary:active { transform: scale(0.97); }

.cnvs-btn-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.6);
  color: #fff;
  border-radius: var(--ct-radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 12px 24px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: border-color 200ms var(--ease-out), background 200ms var(--ease-out), transform 160ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .cnvs-btn-outline:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.12);
    color: #fff;
  }
}

.cnvs-btn-outline:active { transform: scale(0.97); }

/* ---- SECTION SHARED ---- */
.section {
  padding: 5rem 0;
}

.cnvs-label-tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cnvs-themecolor);
  margin-bottom: 0.75rem;
}

.cnvs-label-tag--light {
  color: rgba(255,255,255,0.6);
}

.cnvs-section-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.cnvs-section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
}

.cnvs-body-lg {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ct-muted);
}

/* ---- INTRO SECTION ---- */
.cnvs-intro-section {
  background: #fff;
}

.cnvs-intro-section h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 1rem;
}

.cnvs-intro-img-wrap {
  position: relative;
}

.cnvs-intro-img-wrap img {
  border-radius: 0;
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.cnvs-intro-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--cnvs-themecolor);
  color: #fff;
  padding: 18px 22px;
  text-align: center;
  border-radius: var(--ct-radius);
}

.cnvs-intro-badge strong {
  display: block;
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.cnvs-intro-badge span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.85;
}

/* ---- SERVICES CARDS ---- */
.cnvs-services-section {
	background-color: #c5cfe3;
  /* background: var(--ct-gray-tint); */
}

.cnvs-service-cards {
  border: 1px solid var(--ct-gray-border);
  border-radius: 0;
  overflow: hidden;
}

.cnvs-service-card {
  background: #fff;
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--ct-gray-border);
  height: 100%;
  transition: background 250ms var(--ease-out);
}

.cnvs-service-card:last-child {
  border-right: 0;
}

@media (max-width: 991px) {
  .cnvs-service-card {
    border-right: 0;
    border-bottom: 1px solid var(--ct-gray-border);
  }
}

.cnvs-service-card--accent {
  background: var(--cnvs-themecolor);
}

.cnvs-service-card--accent h3,
.cnvs-service-card--accent .cnvs-service-card-icon {
  color: #fff;
}
.cnvs-service-card--accent p {
  color: #fff !important;
}

.cnvs-service-card--accent .cnvs-service-link {
  color: rgba(255,255,255,0.9);
}

.cnvs-service-card-icon {
  font-size: 2rem;
  color: var(--cnvs-themecolor);
  margin-bottom: 1.25rem;
  display: block;
}

.cnvs-service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.cnvs-service-card p {
  font-size: 0.9rem;
  color: var(--ct-muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.cnvs-service-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cnvs-themecolor);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 200ms var(--ease-out), color 200ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .cnvs-service-link:hover {
    gap: 10px;
    color: var(--ct-blue-dark);
  }
}

/* ---- STATS STRIP ---- */
.cnvs-stats-section {
  background: var(--ct-navy);
  padding: 4rem 0;
}

.cnvs-stats-row {
  text-align: center;
}

.cnvs-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cnvs-stat strong {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--cnvs-themecolor);
  line-height: 1;
}

.cnvs-stat span {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

/* ---- TEAM / EQUIPMENT SECTION ---- */
.cnvs-team-section {
  background: #fff;
}

.cnvs-team-section h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 1rem;
}

.cnvs-driver-img-wrap img {
  display: block;
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 0;
}

.cnvs-feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.cnvs-feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.cnvs-feature-item > i {
  font-size: 1.25rem;
  color: var(--cnvs-themecolor);
  margin-top: 2px;
  flex-shrink: 0;
}

.cnvs-feature-item strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.cnvs-feature-item p {
  font-size: 0.875rem;
  color: var(--ct-muted);
  margin: 0;
  line-height: 1.5;
}

/* ---- COVERAGE SECTION ---- */
.cnvs-coverage-section {
  background: var(--ct-gray-tint);
}

.cnvs-coverage-section h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 1rem;
}

.cnvs-coverage-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 1.5rem;
}

.cnvs-coverage-tags span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--ct-gray-border);
  padding: 6px 14px;
  border-radius: var(--ct-radius);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ct-text);
}

.cnvs-coverage-tags span i {
  color: var(--cnvs-themecolor);
}

.cnvs-contact-card {
  background: #fff;
  border: 1px solid var(--ct-gray-border);
  border-radius: var(--ct-radius);
  padding: 2rem;
}

.cnvs-contact-card h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--cnvs-themecolor);
}

.cnvs-contact-card p {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.875rem;
  color: var(--ct-muted);
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.cnvs-contact-card p i {
  color: var(--cnvs-themecolor);
  margin-top: 2px;
  flex-shrink: 0;
}

.cnvs-contact-card a {
  color: var(--ct-text);
  text-decoration: none;
  font-weight: 500;
  transition: color 180ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .cnvs-contact-card a:hover {
    color: var(--cnvs-themecolor);
  }
}

/* ---- FORM FIELDS IN DARK SECTIONS — force light inputs ---- */
.cnvs-form-section .cnvs-form-widget .form-control,
.cnvs-form-section .form-widget .form-control {
  background-color: #fff;
  color: var(--ct-text);
  border-color: var(--ct-gray-border);
}

.cnvs-form-section .cnvs-form-widget .form-control::placeholder,
.cnvs-form-section .form-widget .form-control::placeholder {
  color: #9aa5b4;
}

.cnvs-form-section .cnvs-form-widget label,
.cnvs-form-section .form-widget label {
  color: rgba(255,255,255,0.9);
}

/* ---- QUOTE FORM SECTION ---- */
.cnvs-form-section {
  background: var(--ct-navy);
}

.cnvs-form-section h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: #fff;
  margin-bottom: 1rem;
}

.cnvs-form-section p {
  color: rgba(255,255,255,0.75);
}

.cnvs-form-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  margin-top: 1.5rem;
}

.cnvs-form-note a {
  color: rgba(255,255,255,0.9);
  text-decoration: underline;
}

.cnvs-form-widget {
  background: #fff;
  padding: 2.25rem;
  border-radius: var(--ct-radius);
}

.cnvs-form-widget label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ct-text);
  margin-bottom: 4px;
}

.cnvs-form-widget .form-control {
  border-radius: var(--ct-radius);
  border: 1px solid var(--ct-gray-border);
  font-size: 0.9rem;
  transition: border-color 180ms var(--ease-out), box-shadow 180ms var(--ease-out);
}

.cnvs-form-widget .form-control:focus {
  border-color: var(--cnvs-themecolor);
  box-shadow: 0 0 0 3px rgba(var(--cnvs-themecolor-rgb), 0.18);
  outline: none;
}

/* ---- DRIVER CTA ---- */
.cnvs-driver-cta {
  background: var(--ct-gray-tint);
  border-top: 3px solid var(--cnvs-themecolor);
}

.cnvs-driver-cta h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 0.75rem;
}

.cnvs-driver-cta p {
  color: var(--ct-muted);
  margin: 0;
}

/* ---- FOOTER ---- */
#footer {
  --cnvs-footer-bg: #0B1628;
  --cnvs-footer-top-border: 1px solid rgba(255,255,255,0.07);
}

.cnvs-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cnvs-footer-tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  margin: 0;
}

.cnvs-footer-services-list {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.45);
  margin: 0;
}

.cnvs-footer-heading {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1rem;
}

.cnvs-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cnvs-footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 180ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .cnvs-footer-links a:hover {
    color: #fff;
  }
}

.cnvs-footer-contact p {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.cnvs-footer-contact p i {
  color: var(--cnvs-themecolor);
  flex-shrink: 0;
  margin-top: 2px;
}

.cnvs-footer-contact a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 180ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .cnvs-footer-contact a:hover { color: #fff; }
}

.cnvs-footer-area {
  font-size: 0.8rem;
  font-style: italic;
}

#copyrights {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  border-top: 1px solid rgba(255,255,255,0.07);
}

#copyrights a {
  color: rgba(255,255,255,0.55);
  transition: color 180ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  #copyrights a:hover { color: #fff; }
}

/* ---- INNER PAGE HERO ---- */
.cnvs-page-hero {
  background: var(--ct-navy);
  padding: 5rem 0;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.cnvs-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27,79,158,0.25) 0%, transparent 60%);
  pointer-events: none;
}

.cnvs-page-hero-inner {
  position: relative;
  z-index: 1;
}

.cnvs-page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  margin-bottom: 0.75rem;
}

.cnvs-page-hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.78);
  max-width: 580px;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.cnvs-page-hero-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.75rem;
}

/* ---- CONTENT SECTIONS (inner pages) ---- */
.cnvs-content-section {
  background: #fff;
}

.cnvs-content-section-tint {
	background-color: #c5cfe3;
/*   background: var(--ct-gray-tint); */
}

.cnvs-content-section h2,
.cnvs-content-section-tint h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 1rem;
}

.cnvs-content-section p,
.cnvs-content-section-tint p {
  color: var(--ct-muted);
  line-height: 1.7;
}

.cnvs-blue-rule {
  display: inline-block;
  width: 40px;
  height: 3px;
  background: var(--cnvs-themecolor);
  margin-bottom: 1.25rem;
  border-radius: 0;
}

/* ---- FEATURE POINTS ---- */
.cnvs-check-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cnvs-check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--ct-text);
}

.cnvs-check-list li i {
  color: var(--cnvs-themecolor);
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 1rem;
}

/* ---- INFO CARD ---- */
.cnvs-info-card {
  background: var(--cnvs-themecolor);
  color: #fff;
  padding: 2rem;
  border-radius: var(--ct-radius);
}

.cnvs-info-card h3 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.cnvs-info-card p {
  color: rgba(255,255,255,0.82);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.cnvs-info-card a.button {
  background: #fff;
  color: var(--cnvs-themecolor);
  border: 2px solid #fff;
  border-radius: var(--ct-radius);
}

/* ---- CAREERS FORM ---- */
.cnvs-careers-form-widget {
  background: #fff;
  padding: 2.25rem;
  border: 1px solid var(--ct-gray-border);
  border-radius: var(--ct-radius);
}

.cnvs-careers-form-widget label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ct-text);
  margin-bottom: 4px;
}

.cnvs-careers-form-widget .form-control {
  border-radius: var(--ct-radius);
  border: 1px solid var(--ct-gray-border);
  font-size: 0.9rem;
}

.cnvs-careers-form-widget .form-control:focus {
  border-color: var(--cnvs-themecolor);
  box-shadow: 0 0 0 3px rgba(var(--cnvs-themecolor-rgb), 0.18);
  outline: none;
}

/* ---- THREE-COL FEATURE BLOCKS ---- */
.cnvs-feature-block {
  text-align: center;
  padding: 2rem 1.5rem;
}

.cnvs-feature-block-icon {
  width: 60px;
  height: 60px;
  background: rgba(var(--cnvs-themecolor-rgb), 0.1);
  border-radius: var(--ct-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.5rem;
  color: var(--cnvs-themecolor);
}

.cnvs-feature-block h3 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}

.cnvs-feature-block p {
  font-size: 0.875rem;
  color: var(--ct-muted);
  line-height: 1.6;
  margin: 0;
}

/* ---- TWO-COL CONTENT ---- */
.cnvs-two-col-img img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 0;
}

/* ---- INLINE QUOTE FORM (inner pages, white bg) ---- */
.cnvs-form-section-light {
  background: var(--ct-gray-tint);
}

.cnvs-form-section-light h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 0.5rem;
}

.cnvs-form-section-light .cnvs-label-tag {
  margin-bottom: 0.5rem;
}

/* ---- COVERAGE GRID ---- */
.cnvs-coverage-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 1.5rem;
}

.cnvs-coverage-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  border: 1px solid var(--ct-gray-border);
  padding: 7px 14px;
  border-radius: var(--ct-radius);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ct-text);
}

.cnvs-coverage-tag i {
  color: var(--cnvs-themecolor);
  font-size: 0.95rem;
}

/* ---- FORM CARD (white card wrapping form on inner pages) ---- */
.cnvs-form-card {
  background: #fff;
  border: 1px solid var(--ct-gray-border);
  border-radius: var(--ct-radius);
  padding: 2.25rem;
}

.cnvs-form-card label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ct-text);
  margin-bottom: 4px;
}

.cnvs-form-card .form-control {
  border-radius: var(--ct-radius);
  border: 1px solid var(--ct-gray-border);
  font-size: 0.9rem;
  transition: border-color 180ms var(--ease-out), box-shadow 180ms var(--ease-out);
}

.cnvs-form-card .form-control:focus {
  border-color: var(--cnvs-themecolor);
  box-shadow: 0 0 0 3px rgba(var(--cnvs-themecolor-rgb), 0.18);
  outline: none;
}

/* ---- STATS STRIP (dark section variant) ---- */
.cnvs-stats-strip {
  padding: 4rem 0;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 767px) {
  .section { padding: 3.5rem 0; }
  .cnvs-hero-home { min-height: 480px; }
  .cnvs-hero-inner { padding: 80px 0 60px; }
  .cnvs-intro-badge { left: 0; bottom: -14px; }
  .cnvs-page-hero { padding: 3.5rem 0; }
}

@media (max-width: 575px) {
  .cnvs-hero-home { min-height: 420px; }
  .cnvs-hero-inner { padding: 64px 0 52px; }
  /* Portrait crops hard on a 16:9 source — bias toward the skyline. */
  .cnvs-hero-video { object-position: center 40%; }
}

/* Visitors who've asked for less motion keep the still poster frame. */
@media (prefers-reduced-motion: reduce) {
  .cnvs-hero-video { display: none; }
}

/* ===== Larger header logo ===== */
@media (min-width: 992px) {
  #header {
    /* The one knob. Band height, sticky spacer and the gap
       above the hero all follow this value. */
    --cnvs-header-height: 140px;
    /* Constant-height header: neutralize the 60px sticky shrink. */
    --cnvs-header-height-shrink: var(--cnvs-header-height);
    /* Breathing room above/below the logo, inside the band. */
    --ct-logo-pad: 8px;
  }
  /* Track the band instead of the hard-coded 100px on line 53. */
  #header .header-row { min-height: var(--cnvs-header-height); }
  /* Same 8px look as before, but now the padding is inside the
     band's budget rather than added on top of it. */
  #header #header-wrap #logo {
    padding-top: var(--ct-logo-pad);
    padding-bottom: var(--ct-logo-pad);
  }
  /* Size by width; max-height keeps the logo inside the band. */
  #header #header-wrap #logo a img {
    width: 275px;
    height: auto;
    max-width: none;
    max-height: calc(var(--cnvs-sticky-header-height) - (var(--ct-logo-pad) * 2));
  }
}
/* ============================================================
   NAV BAR — remove Canvas divider rules, center the menu group
   ============================================================ */

/* 1. Rule after the logo */
.is-expanded-menu #header.full-header #logo {
  padding-right: 0;
  border-right: 0;
}

/* 2. Rule before the "Now Hiring CDL Drivers" button */
.is-expanded-menu #header.full-header .primary-menu .menu-container {
  padding-right: 0;
  margin-right: 0;
  border-right: 0;
}

/* 3. Center the nav links + hiring button as one group.
      Canvas puts margin-right:auto on #logo, which shoves the whole
      group to the right edge; releasing it and adding auto margins on
      the outside of the group centers it in the space beside the logo. */
.is-expanded-menu #header #logo { margin-right: 0; }
.is-expanded-menu #header .primary-menu { margin-left: auto; }
.is-expanded-menu #header .header-misc { margin-left: 1.5rem; margin-right: auto; }

/* Variant, if the client prefers nav centered and the blue button hard right:
.is-expanded-menu #header #logo { margin-right: 0; }
.is-expanded-menu #header .primary-menu { margin-left: auto; margin-right: auto; }
.is-expanded-menu #header .header-misc { margin-left: 1.5rem; margin-right: 0; }
*/

/* ============================================================
   HERO CTA BAND — blue strip directly under the home hero
   ============================================================ */
.cnvs-hero-cta {
  background: var(--ct-blue);
  min-height: 150px;
  display: flex;
  align-items: center;
  padding: 1.5rem 0;
}

.cnvs-hero-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.cnvs-hero-cta-sub {
  margin: 0;
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}

.cnvs-hero-cta-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

/* Desktop: subheading left, buttons right, on one line */
@media (min-width: 992px) {
  .cnvs-hero-cta-inner {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem 2.5rem;
    text-align: left;
  }

  .cnvs-hero-cta-sub {
    font-size: 30px;
    line-height: 1.2;
  }

  .cnvs-hero-cta-btns { justify-content: flex-end; }
}

/* White button — the blue primary button would disappear on this band */
.cnvs-btn-white {
  background: #fff;
  border: 2px solid #fff;
  color: var(--ct-blue);
  border-radius: var(--ct-radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 12px 24px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 200ms var(--ease-out), border-color 200ms var(--ease-out), transform 160ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .cnvs-btn-white:hover {
    background: var(--ct-gray-tint);
    border-color: var(--ct-gray-tint);
    color: var(--ct-blue-dark);
  }
}

.cnvs-btn-white:active { transform: scale(0.97); }

/* The hero sub no longer needs the gap the buttons used to fill */
.cnvs-hero-content .cnvs-hero-sub:last-child { margin-bottom: 0; }

@media (max-width: 575px) {
  .cnvs-hero-cta { padding: 2.25rem 0; }
  .cnvs-hero-cta-sub { font-size: 1.2rem; }
  .cnvs-hero-cta-btns { width: 100%; flex-direction: column; align-items: stretch; }
  .cnvs-hero-cta-btns .button { justify-content: center; }
}
