/*
Theme Name: VIS INC — Trucking Carrier
Theme URI: https://www.vistrans.net
Author: Nikba Creative Studio
Author URI: https://nikba.com
Description: Custom WordPress theme for VIS INC, a US trucking carrier in Lisle, IL. Built on the Velotrax HTML design with ACF PRO Flexible Content sections, service / testimonial / job-opening CPTs, Contact Form 7, and custom JSON-LD schema (incl. JobPosting for Google for Jobs).
Version: 1.0.0
Requires at least: 6.4
Requires PHP: 8.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: vistrans
*/

/*
 * All design styles live in assets/css/ (style.css, responsive.css, animate.css,
 * owl.carousel). This file exists for the WordPress theme header plus the small
 * set of theme-only additions below.
 */

/* --- Sticky mobile action bar (Call + Apply) ------------------------------ */
.mobile-cta {
	position: fixed;
	inset: auto 0 0 0;
	z-index: 999;
	display: none;
}

.mobile-cta a {
	padding: 14px 8px;
	text-align: center;
	font-weight: 700;
	font-size: 15px;
	text-decoration: none;
	letter-spacing: .02em;
}

.mobile-cta__call {
	background: var(--accent--color, #07295c);
	color: #fff;
}

.mobile-cta__apply {
	background: var(--primary--color, #fccf3a);
	color: #07295c;
}

.mobile-cta a i {
	margin-right: 8px;
}

@media (max-width: 768px) {
	.mobile-cta {
		display: grid;
		grid-template-columns: 1fr 1fr;
	}

	body {
		padding-bottom: 56px;
	}
}

/* --- WordPress core output ------------------------------------------------ */
.alignnone { margin: 5px 20px 20px 0; }
.aligncenter { display: block; margin: 5px auto; }
.alignright { float: right; margin: 5px 0 20px 20px; }
.alignleft { float: left; margin: 5px 20px 20px 0; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 14px; color: var(--text--color, #6b6b6b); }
.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	white-space: nowrap;
}
.screen-reader-text:focus {
	clip: auto !important;
	clip-path: none;
	width: auto;
	height: auto;
	top: 8px;
	left: 8px;
	z-index: 10000;
	padding: 10px 14px;
	background: #fff;
	color: #07295c;
}

#button {
	border: 0;
	cursor: pointer;
}

:focus-visible {
	outline: 3px solid var(--primary--color, #fccf3a);
	outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		scroll-behavior: auto !important;
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .01ms !important;
	}
	.wow { visibility: visible !important; }
}

/* --- Careers / job listing ------------------------------------------------ */
.job-card {
	display: flex;
	flex-direction: column;
	width: 100%;
	background: #fff;
	border: 1px solid var(--border--color, #dde5f0);
	border-radius: 20px;
	padding: 32px;
	margin-bottom: 30px;
	transition: ease-in-out .5s;
}

.job-card:hover {
	border-color: transparent;
	box-shadow: 0 12px 30px rgba(7, 41, 92, .12);
}

.job-card h3 { margin-bottom: 18px; }
.job-card h3 a { color: var(--accent--color, #07295c); transition: ease-in-out .4s; }
.job-card h3 a:hover { color: var(--primary--color, #fccf3a); }
.job-card .primary_btn { margin-top: auto; align-self: flex-start; }

.job-card__meta {
	list-style: none;
	padding: 0;
	margin: 0 0 18px;
	display: flex;
	flex-wrap: wrap;
	gap: 10px 28px;
}

.job-card__meta li {
	font-size: 15px;
	color: var(--text--color, #6b6b6b);
}

.job-card__meta strong { color: var(--accent--color, #07295c); }

.job-card__badges { margin-bottom: 18px; }

.job-card__badge {
	display: inline-block;
	background: var(--grey--bg--color, #f1f4f8);
	color: var(--accent--color, #07295c);
	border-radius: 999px;
	padding: 5px 14px;
	margin: 0 6px 6px 0;
	font-size: 13px;
	font-weight: 600;
}

/* --- Single job opening --------------------------------------------------- */
.job-single .row { align-items: start; }

.job-detail { max-width: 720px; }

.job-detail__status {
	display: inline-block;
	margin-bottom: 22px;
	padding: 8px 16px;
	border-radius: 10px;
	background: #fde8e8;
	color: #8a1f1f;
	font-size: 14px;
	font-weight: 600;
}

.job-facts {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	margin: 0 0 36px;
}

.job-fact {
	margin: 0;
	padding: 18px 20px;
	border-radius: 16px;
	background: var(--grey--bg--color, #f1f4f8);
	border: 1px solid transparent;
	transition: border-color .3s ease, background-color .3s ease;
}

.job-fact:hover {
	border-color: var(--border--color, #dde5f0);
	background: #fff;
}

.job-fact dt {
	margin: 0 0 6px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--text--color, #6b6b6b);
}

.job-fact dd {
	margin: 0;
	font-family: "Hedvig Letters Sans", sans-serif;
	font-size: 20px;
	line-height: 28px;
	color: var(--accent--color, #07295c);
}

.job-detail__body { max-width: none; }

.job-detail__body > p:first-child {
	font-size: 20px;
	line-height: 32px;
	color: var(--accent--color, #07295c);
	margin-bottom: 28px;
}

.job-detail__body h2,
.job-detail__body h3,
.job-detail__body h4 {
	margin: 36px 0 16px;
	color: var(--accent--color, #07295c);
}

.job-detail__body ul {
	list-style: none;
	margin: 0 0 28px;
	padding: 0;
	display: grid;
	gap: 10px;
}

.job-detail__body ul li {
	position: relative;
	margin: 0;
	padding: 14px 16px 14px 48px;
	border-radius: 14px;
	background: var(--light--blue--color4, #f3f6f9);
	color: var(--accent--color, #07295c);
	line-height: 26px;
}

.job-detail__body ul li::before {
	content: "";
	position: absolute;
	left: 16px;
	top: 50%;
	width: 18px;
	height: 18px;
	transform: translateY(-50%);
	border-radius: 50%;
	background: var(--primary--color, #fccf3a) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%2307295c' d='M6.2 11.2 2.9 7.9l1.1-1.1 2.2 2.2 5-5 1.1 1.1z'/%3E%3C/svg%3E") center / 12px no-repeat;
}

.job-detail__call {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-top: 36px;
	padding: 22px 24px;
	border-radius: 18px;
	background: var(--accent--color, #07295c);
	color: #fff;
	transition: transform .35s ease, box-shadow .35s ease;
}

.job-detail__call:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 28px rgba(7, 41, 92, .22);
	color: #fff;
}

.job-detail__call-label {
	font-size: 13px;
	font-weight: 600;
	letter-spacing: .04em;
	text-transform: uppercase;
	color: var(--primary--color, #fccf3a);
}

.job-detail__call-phone {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: "Hedvig Letters Sans", sans-serif;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.2;
}

.job-card--apply {
	position: sticky;
	top: 28px;
	margin-bottom: 0;
	background:
		radial-gradient(ellipse 80% 60% at 100% 0%, rgba(252, 207, 58, .18), transparent 55%),
		#fff;
	border-color: var(--border--color, #dde5f0);
	box-shadow: 0 10px 28px rgba(7, 41, 92, .06);
}

.job-card--apply:hover {
	border-color: var(--border--color, #dde5f0);
	box-shadow: 0 14px 32px rgba(7, 41, 92, .1);
}

.job-card__eyebrow {
	display: inline-block;
	margin-bottom: 10px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: uppercase;
	color: var(--text--color, #6b6b6b);
}

.job-card--apply .text-size-26 { margin-bottom: 10px; }

.job-card__lead {
	margin: 0 0 22px;
	font-size: 15px;
	line-height: 24px;
	color: var(--text--color, #6b6b6b);
}

@media (max-width: 991px) {
	.job-card--apply {
		position: static;
		margin-top: 36px;
	}
}

@media (max-width: 575px) {
	.job-facts { grid-template-columns: 1fr; }

	.job-fact dd { font-size: 18px; line-height: 26px; }

	.job-detail__call-phone { font-size: 20px; }
}

/* --- No horizontal scroll -------------------------------------------------
 * The design's entrance animations (fadeInLeft / fadeInRight) translate elements
 * sideways while they play, which widens the document and lets a phone scroll
 * horizontally mid-animation. Clipping the root stops that without affecting the
 * fixed mobile bar. `clip` is preferred; `hidden` is the fallback.
 */
html,
body {
	overflow-x: hidden;
	overflow-x: clip;
}

/* --- Section rhythm -------------------------------------------------------
 * The rounded panels are separated by the design's .spacer, which responsive.css
 * drops to 20px below 1440px — too tight where two coloured panels meet. These
 * keep the gap readable at every width without changing the design's language.
 */
@media (max-width: 1440px) {
	.spacer { height: 40px; }
}

/* Rounded content panels — beat responsive.css `.main-box { padding: 1% !important }`. */
.about-us-con.main-box,
.services-con.main-box,
.our-features-con.main-box,
.faq-con.main-box,
.news-and-articles-con.main-box,
#openings.main-box {
	padding-left: 72px !important;
	padding-right: 72px !important;
}

.about-us-con.main-box {
	padding-top: 48px;
	padding-bottom: 48px;
}

@media (max-width: 1199px) {
	.about-us-con.main-box,
	.services-con.main-box,
	.our-features-con.main-box,
	.faq-con.main-box,
	.news-and-articles-con.main-box,
	#openings.main-box {
		padding-left: 40px !important;
		padding-right: 40px !important;
	}
}

@media (max-width: 767px) {
	.about-us-con.main-box,
	.services-con.main-box,
	.our-features-con.main-box,
	.faq-con.main-box,
	.news-and-articles-con.main-box,
	#openings.main-box {
		padding-left: 20px !important;
		padding-right: 20px !important;
	}
}

@media (max-width: 767px) {
	.spacer { height: 26px; }
}

/* Two spacers in a row (a panel's own trailing spacer plus a template's) would
 * otherwise double the gap. */
.spacer + .spacer { display: none; }

/* A section with no stat counters keeps a reduced pad rather than none at all. */
.why-choose-us-con--no-stats { padding-bottom: 60px; }

/* First block under the page banner — same breathing room on every inner page. */
body:not(.home):not(.front-page) #main > *:first-child {
	margin-top: 40px;
}

/* About panel sits under Why Us on the homepage, which has no trailing spacer. */
.home .about-us-con,
.front-page .about-us-con {
	margin-top: 40px;
}

/* Keep the About heading to two lines in the narrow content column. */
.about-us-con .about-us-content-con .text-size-66 {
	font-size: 44px;
	line-height: 54px;
}

@media (max-width: 1199px) {
	.about-us-con .about-us-content-con .text-size-66 {
		font-size: 38px;
		line-height: 48px;
	}
}

@media (max-width: 767px) {
	.about-us-con .about-us-content-con .text-size-66 {
		font-size: 32px;
		line-height: 40px;
	}
}

@media (max-width: 767px) {
	body:not(.home):not(.front-page) #main > *:first-child {
		margin-top: 26px;
	}

	.home .about-us-con,
	.front-page .about-us-con {
		margin-top: 26px;
	}
}

@media (max-width: 767px) {
	.why-choose-us-con--no-stats { padding-bottom: 40px; }
}

/* --- Header / banner scrim ------------------------------------------------
 * The banner is white text over a photographic background. A scrim keeps the
 * headline, subhead and breadcrumb legible whatever image is behind them —
 * including the template's light placeholder art.
 */
.home-outer-wrapper::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	border-radius: 30px;
	pointer-events: none;
	background: linear-gradient(180deg, rgba(7, 41, 92, .78) 0%, rgba(7, 41, 92, .55) 45%, rgba(7, 41, 92, .78) 100%);
}

.home-outer-wrapper > * { position: relative; z-index: 1; }

/* Keep the header shell above the banner so the mobile dropdown stays clickable. */
.home-outer-wrapper > .wrapper1533 {
	z-index: 40;
}

/* --- Mobile navigation ---------------------------------------------------- */
@media (max-width: 991px) {
	.header-con {
		z-index: 50;
		overflow: visible;
	}

	.header-con .navbar {
		position: relative;
		z-index: 51;
	}

	.navbar-toggler {
		z-index: 52;
	}

	.navbar-collapse.collapse,
	.navbar-collapse.collapsing,
	.navbar-collapse.show {
		top: calc(100% + 10px) !important;
		right: 0;
		left: 0;
		width: 100% !important;
		padding: 12px;
		border-radius: 18px !important;
		background: #fff !important;
		border: 1px solid rgba(7, 41, 92, .08);
		box-shadow: 0 22px 48px rgba(7, 41, 92, .18) !important;
		z-index: 60 !important;
		pointer-events: auto;
	}

	.header-con .navbar-expand-lg .navbar-nav {
		gap: 4px !important;
		width: 100%;
		margin: 0 !important;
		padding: 4px !important;
		align-items: stretch !important;
		position: static !important;
		z-index: auto !important;
	}

	.header-con .navbar-nav li {
		width: 100%;
		margin: 0 !important;
	}

	.header-con .navbar-light .navbar-nav .nav-link {
		display: flex !important;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		min-height: 48px;
		padding: 12px 16px !important;
		border-radius: 12px;
		font-size: 16px !important;
		font-weight: 600;
		line-height: 1.3 !important;
		color: var(--accent--color, #07295c) !important;
		background: transparent;
	}

	.header-con .navbar-light .navbar-nav .nav-link:hover,
	.header-con .navbar-light .navbar-nav .nav-link:focus {
		background: rgba(7, 41, 92, .05);
		color: var(--accent--color, #07295c) !important;
	}

	.header-con .navbar-light .navbar-nav .nav-link.active,
	.header-con .navbar-light .navbar-nav .nav-link.dropdown-toggle.active {
		width: 100% !important;
		text-align: left !important;
		padding: 12px 16px !important;
		border-radius: 12px;
		background: var(--accent--color, #07295c) !important;
		color: #fff !important;
	}

	.header-con .navbar-light .navbar-nav .dropdown .nav-link::after {
		top: 50% !important;
		transform: translateY(-50%);
		margin: 0;
		color: inherit;
	}

	.header-con .navbar-light .navbar-nav .dropdown-menu {
		width: 100% !important;
		margin: 4px 0 8px !important;
		padding: 6px !important;
		border-radius: 12px;
		background: rgba(7, 41, 92, .04);
		box-shadow: none;
		position: static !important;
		float: none;
		transform: none !important;
	}

	.header-con .navbar-light .navbar-nav .dropdown-menu .dropdown-item {
		padding: 12px 14px !important;
		border-radius: 10px;
		font-size: 15px;
		font-weight: 500;
		line-height: 1.3;
		color: var(--accent--color, #07295c);
	}

	.header-con .navbar-light .navbar-nav .dropdown-menu .dropdown-item:hover,
	.header-con .navbar-light .navbar-nav .dropdown-menu .dropdown-item.active {
		background: var(--primary--color, #fccf3a);
		color: var(--accent--color, #07295c);
	}

	.mobile-nav-actions {
		display: grid;
		gap: 10px;
		margin-top: 10px;
		padding-top: 14px;
		border-top: 1px solid rgba(7, 41, 92, .08);
	}

	.mobile-nav-actions__call,
	.mobile-nav-actions__apply {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 10px;
		min-height: 48px;
		padding: 12px 16px;
		border-radius: 12px;
		font-size: 15px;
		font-weight: 700;
		line-height: 1.2;
	}

	.mobile-nav-actions__call {
		background: rgba(7, 41, 92, .06);
		color: var(--accent--color, #07295c);
	}

	.mobile-nav-actions__apply {
		background: var(--primary--color, #fccf3a);
		color: var(--accent--color, #07295c);
	}

	/* Sticky bottom bar stays under the open menu. */
	.mobile-cta {
		z-index: 30;
	}
}

.header-con .header-phone-icon {
	width: 22px;
	height: 22px;
	object-fit: contain;
}

/* Header / footer logos — SVG viewBox is wide; constrain height. */
.header-con .navbar-brand .site-logo,
.header-con .navbar-brand img {
	display: block;
	width: auto;
	max-width: 220px;
	height: 42px;
	object-fit: contain;
}

.footer-con .footer-logo .site-logo-footer,
.footer-con .footer-logo img {
	display: block;
	width: auto;
	max-width: 220px;
	height: 48px;
	object-fit: contain;
}

@media (max-width: 991px) {
	.header-con .navbar-brand .site-logo,
	.header-con .navbar-brand img {
		max-width: 170px;
		height: 34px;
	}

	.footer-con .footer-logo .site-logo-footer,
	.footer-con .footer-logo img {
		max-width: 180px;
		height: 40px;
	}
}

/* Homepage hero: the design's 305px top pad leaves a large empty band under the
 * header on wide viewports. Tighten it and let the shell size to its content. */
@media (min-width: 1441px) {
	.home-outer-wrapper:not(.home-outer-wrapper--inner) {
		height: auto;
		padding-bottom: 140px;
	}

	.banner-con {
		padding-top: 80px;
	}
}

/* Hero copy inset — more breathing room from the rounded shell edges. */
@media (min-width: 1200px) {
	.banner-con > .wrapper1533 {
		padding-left: 80px;
		padding-right: 80px;
	}
}

@media (min-width: 1441px) {
	.banner-con > .wrapper1533 {
		padding-left: 100px;
		padding-right: 100px;
	}
}

/* --- Inner-page banner ----------------------------------------------------
 * The design sizes this shell for the homepage hero (1001px tall). Inner pages
 * only carry a title and a breadcrumb, so they get a compact page header
 * instead — and the background is centred rather than pinned top-left.
 */
.home-outer-wrapper--inner {
	height: auto;
	padding-bottom: 0;
	background-position: center;
}

.home-outer-wrapper--inner .sub-banner-con {
	padding-top: 72px;
	padding-bottom: 72px;
}

.home-outer-wrapper--inner .sub-banner-con .d-flex {
	justify-content: center !important;
	text-align: center;
}

.home-outer-wrapper--inner .banner-inner-con {
	width: 100%;
	text-align: center;
}

.home-outer-wrapper--inner .banner-inner-con h1 {
	font-size: 48px;
	line-height: 58px;
	margin-bottom: 14px;
}

.home-outer-wrapper--inner .banner-inner-con p {
	font-size: 17px;
	line-height: 28px;
	max-width: 620px;
	margin: 0 auto 22px;
	padding-left: 0;
}

.home-outer-wrapper--inner .banner-inner-con p::before { display: none; }

.home-outer-wrapper--inner .breadcrumb-con {
	display: flex;
	justify-content: center;
}

.home-outer-wrapper--inner .breadcrumb { padding: 12px 24px; min-width: 0; }

@media (max-width: 1199px) {
	.home-outer-wrapper--inner .banner-inner-con h1 { font-size: 40px; line-height: 50px; }
}

@media (max-width: 767px) {
	.home-outer-wrapper--inner .sub-banner-con {
		padding-top: 40px;
		padding-bottom: 44px;
	}

	.home-outer-wrapper--inner .banner-inner-con h1 { font-size: 32px; line-height: 40px; }

	.home-outer-wrapper--inner .banner-inner-con p {
		font-size: 16px;
		line-height: 26px;
	}
}

/* --- Services card images -------------------------------------------------
 * CMS uploads vary in aspect ratio; lock regular + hover frames so every card
 * in the carousel (and the static grid) shows the same image height.
 */
.services-con .services-box figure.regular-img {
	margin-top: auto;
	width: 100%;
	height: 220px;
	overflow: hidden;
	border-radius: 20px;
}

.services-con .services-box .hover-content figure.hover-img {
	left: 20px;
	right: 20px;
	bottom: 20px;
	width: auto;
	height: 320px;
	overflow: hidden;
	border-radius: 20px;
}

.services-con .services-box figure.regular-img img,
.services-con .services-box .hover-content figure.hover-img img {
	width: 100% !important;
	height: 100%;
	max-width: none;
	object-fit: cover;
	object-position: center;
}

@media (max-width: 1199px) {
	.services-con .services-box figure.regular-img { height: 200px; }
	.services-con .services-box .hover-content figure.hover-img { height: 280px; }
}

@media (max-width: 767px) {
	/* Beat responsive.css fixed carousel widths (350px / 330px). */
	.service-con-carousel .owl-carousel,
	.services-con .owl-carousel {
		width: 100% !important;
		max-width: 100%;
		margin: 0;
	}

	.services-con .owl-stage,
	.services-con .owl-item,
	.services-con .item,
	.services-con .services-box,
	.services-con .services-box .hover-content {
		width: 100% !important;
		max-width: 100%;
	}

	.services-con .services-box figure.regular-img { height: 180px; }
	.services-con .services-box .hover-content figure.hover-img {
		left: 16px;
		right: 16px;
		width: auto;
		height: 240px;
	}
}

/* --- Driver type cards ----------------------------------------------------
 * The template has no 3-up "type + CTA" component, so this one is built from
 * the same tokens as .feature-box in the design CSS.
 */
.driver-types-con .row { margin-bottom: 0; }

.driver-card {
	display: flex;
	flex-direction: column;
	margin-bottom: 30px;
	background: var(--secondary--color, #fff);
	border: 1px solid var(--border--color, #dde5f0);
	border-radius: 20px;
	padding: 38px 34px;
	transition: ease-in-out .5s;
}

.driver-card:hover {
	transform: translateY(-6px);
	border-color: transparent;
	box-shadow: 0 12px 30px rgba(7, 41, 92, .12);
}

.driver-card__media {
	margin-bottom: 24px;
	border-radius: 16px;
	overflow: hidden;
}

.driver-card__media img { border-radius: 16px; width: 100%; }

.driver-card__index {
	display: inline-block;
	margin-bottom: 20px;
	font-family: "Hedvig Letters Sans", sans-serif;
	font-size: 34px;
	line-height: 1;
	color: var(--primary--color, #fccf3a);
}

.driver-card h3 { margin-bottom: 12px; }

.driver-card p {
	margin-bottom: 24px;
	color: var(--text--color, #6b6b6b);
}

.driver-card__cta {
	margin-top: auto;
	align-self: flex-start;
	font-weight: 700;
	font-size: 16px;
	color: var(--accent--color, #07295c);
	transition: ease-in-out .4s;
}

.driver-card__cta:hover { color: var(--primary--color, #fccf3a); }

/* --- CTA band -------------------------------------------------------------
 * The band sits on a photographic background, so a scrim keeps the white
 * headline legible whatever image is used.
 */
.cta-band::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 30px;
	background: linear-gradient(90deg, rgba(7, 41, 92, .92) 0%, rgba(7, 41, 92, .72) 100%);
}

.cta-band .container { z-index: 1; }
.cta-band .secondary_btn { margin-left: 12px; }

/* Decorative watermarks — SVGs have no intrinsic size; lock them so img-fluid
 * cannot stretch them to the full panel width. */
.shipment-tracking-con .vector1,
.footer-con .footer-vector {
	width: 180px !important;
	height: auto !important;
	max-width: 180px !important;
	object-fit: contain;
	pointer-events: none;
}

.cta-band .vector1 {
	z-index: 1;
	opacity: .35;
	left: 24px;
	bottom: 24px;
}

.footer-con .footer-vector {
	opacity: .2;
	right: 24px;
	bottom: 24px;
}

@media (max-width: 991px) {
	.shipment-tracking-con .vector1,
	.footer-con .footer-vector {
		width: 120px !important;
		max-width: 120px !important;
	}
}

@media (max-width: 575px) {
	.shipment-tracking-con .vector1,
	.footer-con .footer-vector {
		width: 88px !important;
		max-width: 88px !important;
	}
}

/* --- Contact Form 7 -------------------------------------------------------
 * CF7 emits its own markup, so the design's `.contact-form ul li` rules never
 * match. These map CF7's output onto the same two-column grid and field style.
 */
.contact-form .wpcf7 { margin-top: 34px; }

.contact-form .wpcf7-form > ul {
	display: grid;
	gap: 20px;
	padding: 0;
	margin: 0 0 30px;
	list-style: none;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	/* Cells with a visible label are taller — bottom-align so inputs stay in line. */
	align-items: end;
}

.contact-form .wpcf7-form > ul > li { margin: 0; min-width: 0; }

/* The design stretches the last list item to full width — that assumes the last
 * field is always a textarea. Only `.is-wide` decides here. */
.contact-form .wpcf7-form > ul > li:last-child { grid-column: auto; }
.contact-form .wpcf7-form > ul > li.is-wide { grid-column: 1 / -1; }

.contact-form .wpcf7-form-control-wrap { display: block; width: 100%; }

.contact-form .wpcf7-form input[type="text"],
.contact-form .wpcf7-form input[type="email"],
.contact-form .wpcf7-form input[type="tel"],
.contact-form .wpcf7-form input[type="number"],
.contact-form .wpcf7-form input[type="date"],
.contact-form .wpcf7-form select,
.contact-form .wpcf7-form textarea {
	width: 100%;
	height: 58px;
	font-size: 16px;
	line-height: 16px;
	border-radius: 10px;
	padding: 14px 18px;
	color: var(--text--color, #6b6b6b);
	border: 1px solid transparent;
	background: var(--secondary--color, #fff);
	appearance: none;
	-webkit-appearance: none;
}

.contact-form .wpcf7-form textarea { height: 144px; resize: none; padding-top: 16px; }

.contact-form .wpcf7-form select {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%236b6b6b' d='M8 11 3 6h10z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 16px center;
	background-size: 16px;
	padding-right: 42px;
}

.contact-form .wpcf7-form input:focus,
.contact-form .wpcf7-form select:focus,
.contact-form .wpcf7-form textarea:focus {
	outline: none;
	border: 1px solid var(--primary--color, #fccf3a);
	box-shadow: 0 1px 8px rgb(252 207 58 / 40%);
}

.contact-form .wpcf7-form input::placeholder,
.contact-form .wpcf7-form textarea::placeholder { color: var(--text--color, #6b6b6b); font-size: 16px; }

/* Checkbox groups (endorsements) and the consent acceptance.
 * The design's `.contact-form ul li input` rule sizes *every* input to 58px —
 * checkboxes have to opt out of it.
 */
.contact-form .wpcf7-checkbox { display: flex; flex-wrap: wrap; gap: 8px 22px; }
.contact-form .wpcf7-list-item { margin: 0; }

.contact-form .wpcf7-form input[type="checkbox"],
.contact-form .wpcf7-form input[type="radio"] {
	width: auto;
	height: auto;
	min-width: 0;
	padding: 0;
	border-radius: 3px;
	background: none;
	vertical-align: middle;
}

.contact-form .wpcf7-list-item label { display: flex; align-items: center; gap: 8px; margin: 0; }

.contact-form .consent .wpcf7-list-item label { align-items: flex-start; }
.contact-form .consent input[type="checkbox"] { flex: 0 0 auto; margin-top: 5px; }

.contact-form .wpcf7-form .field-label {
	display: block;
	margin-bottom: 10px;
	font-size: 14px;
	font-weight: 600;
	color: var(--light--blue--color, #cbd5e3);
}

.contact-form .wpcf7-form .wpcf7-list-item-label,
.contact-form .wpcf7-form .consent {
	color: var(--light--blue--color, #cbd5e3);
	font-size: 14px;
	line-height: 21px;
}

.contact-form .wpcf7-form .consent { display: block; margin-bottom: 26px; }
.contact-form .wpcf7-form .consent .wpcf7-list-item-label { font-size: 13px; }
.contact-form .wpcf7-form .consent a { color: var(--primary--color, #fccf3a); }

.contact-form .wpcf7-form input[type="checkbox"] { margin-right: 8px; accent-color: var(--primary--color, #fccf3a); }

/* Submit + validation */
.contact-form .wpcf7-form input[type="submit"] {
	border: none;
	cursor: pointer;
	font-size: 16px;
	min-width: 179px;
	height: 58px;
	font-weight: 700;
	border-radius: 10px;
	background-color: var(--primary--color, #fccf3a);
	color: var(--accent--color, #07295c);
	transition: all .6s ease-in-out;
}

.contact-form .wpcf7-form input[type="submit"]:hover {
	background-color: var(--secondary--color, #fff);
}

.contact-form .wpcf7-spinner { margin-left: 14px; }

.contact-form .wpcf7-not-valid-tip { font-size: 13px; color: var(--primary--color, #fccf3a); margin-top: 6px; }

.contact-form .wpcf7-response-output {
	margin: 24px 0 0;
	padding: 14px 18px;
	border-radius: 10px;
	border-width: 1px;
	color: #fff;
	font-size: 15px;
}

@media (max-width: 767px) {
	.contact-form .wpcf7-form > ul { grid-template-columns: minmax(0, 1fr); }
}

/* Same form styling on a light background (single job opening sidebar) */
.job-card .contact-form .wpcf7-form input[type="text"],
.job-card .contact-form .wpcf7-form input[type="email"],
.job-card .contact-form .wpcf7-form input[type="tel"],
.job-card .contact-form .wpcf7-form select,
.job-card .contact-form .wpcf7-form textarea {
	background: var(--grey--bg--color, #f1f4f8);
}

.job-card .contact-form .wpcf7-form .field-label,
.job-card .contact-form .wpcf7-form .wpcf7-list-item-label,
.job-card .contact-form .wpcf7-form .consent { color: var(--text--color, #6b6b6b); }

.job-card .contact-form .wpcf7-form > ul { grid-template-columns: minmax(0, 1fr); }
.job-card .contact-form .wpcf7-response-output { color: var(--accent--color, #07295c); }

/* --- Contact facts (legacy list under image layouts) ---------------------- */
.contact-facts { margin-top: 34px; text-align: left; }

.contact-facts li {
	display: flex;
	gap: 12px;
	margin-bottom: 14px;
	color: var(--light--blue--color, #cbd5e3);
	font-size: 16px;
	line-height: 26px;
}

.contact-facts li i { margin-top: 6px; color: var(--primary--color, #fccf3a); }
.contact-facts li a { color: var(--light--blue--color, #cbd5e3); text-decoration: none; }
.contact-facts li a:hover { color: var(--primary--color, #fccf3a); }

/* --- Contact block redesign ----------------------------------------------- */
/* Beat responsive.css `.main-box { padding-left/right: 1% !important }`. */
.contact-block.get-free-estimate-con.main-box {
	padding-top: 56px;
	padding-bottom: 56px;
	padding-left: 100px !important;
	padding-right: 100px !important;
	background:
		radial-gradient(ellipse 55% 50% at 0% 0%, rgba(252, 207, 58, .16), transparent 55%),
		radial-gradient(ellipse 45% 40% at 100% 100%, rgba(255, 255, 255, .06), transparent 50%),
		var(--accent--color, #07295c);
}

.contact-block .main-container { max-width: 1417px; }

.contact-block__row { row-gap: 36px; }

.contact-block__intro {
	height: 100%;
	display: flex;
	flex-direction: column;
	padding-right: 20px;
}

.contact-block__intro .text-size-66 {
	font-size: 48px;
	line-height: 58px;
	max-width: 12ch;
}

.contact-block__text {
	margin: 22px 0 0;
	max-width: 36ch;
	font-size: 17px;
	line-height: 28px;
	color: var(--light--blue--color, #cbd5e3);
}

.contact-block__facts {
	display: grid;
	gap: 12px;
	margin-top: 36px;
}

.contact-block__fact {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 22px 32px;
	border-radius: 16px;
	background: rgba(255, 255, 255, .06);
	border: 1px solid rgba(255, 255, 255, .08);
	transition: background-color .3s ease, border-color .3s ease, transform .3s ease;
}

.contact-block__fact:hover {
	background: rgba(255, 255, 255, .1);
	border-color: rgba(252, 207, 58, .35);
	transform: translateY(-1px);
}

.contact-block__fact-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 12px;
	background: var(--primary--color, #fccf3a);
	color: var(--accent--color, #07295c);
	flex-shrink: 0;
}

.contact-block__fact-body {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.contact-block__fact-label {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .05em;
	text-transform: uppercase;
	color: var(--primary--color, #fccf3a);
}

.contact-block__fact-value,
.contact-block__fact-value a,
.contact-block__fact-value span {
	color: #fff;
	font-size: 16px;
	line-height: 26px;
	text-decoration: none;
	word-break: break-word;
}

.contact-block__fact-value a:hover { color: var(--primary--color, #fccf3a); }

.contact-block__image { margin-top: 32px; }

/* Generated editorial photography -----------------------------------------
 * Media Library assets intentionally use several source ratios. The frames
 * below preserve the original section geometry and crop the photo inside it,
 * instead of allowing intrinsic image height to stretch cards and columns.
 */
.why-choose-us-con .choose-img-con figure,
.about-us-con .about-img-con > figure,
.about-us-con .about-content2 figure:last-child,
.contact-block__image,
.send-us-img-con > figure.position-relative,
.fleet-card__media {
	overflow: hidden;
}

.why-choose-us-con .choose-img-con figure {
	aspect-ratio: 4 / 5;
	margin-bottom: 0;
}

/* Stretch the fleet photo to the full content-column height on desktop. */
.about-us-con > .container-fluid > .row {
	align-items: stretch !important;
}

.about-us-con > .container-fluid > .row > [class*="col-"] {
	display: flex;
}

.about-us-con .about-img-con {
	display: flex;
	flex: 1 1 auto;
	width: 100%;
	min-height: 100%;
}

.about-us-con .about-img-con > figure {
	position: relative;
	flex: 1 1 auto;
	width: 100%;
	height: 100%;
	min-height: 100%;
	margin-bottom: 0;
	border-radius: 30px;
}

.about-us-con .about-img-con > figure img {
	position: absolute;
	inset: 0;
	width: 100% !important;
	height: 100% !important;
	object-fit: cover;
	border-radius: 30px;
}

.about-us-con .about-us-content-con {
	width: 100%;
}

.about-us-con .about-content2 figure:last-child {
	width: 180px;
	aspect-ratio: 4 / 5;
	margin-left: auto;
}

.contact-block__image {
	width: 100%;
	aspect-ratio: 16 / 9;
	max-height: 230px;
	border-radius: 20px;
}

.send-us-img-con > figure.position-relative {
	aspect-ratio: 4 / 3;
	border-radius: 30px;
}

.fleet-grid {
	display: flex;
	flex-wrap: wrap;
	row-gap: 30px;
}

#fleet .all_column {
	display: flex;
	margin-bottom: 0;
}

.fleet-card__media {
	width: 100%;
	aspect-ratio: 4 / 3;
	margin-bottom: 0 !important;
	border-radius: 20px;
	background: var(--border--color, #dde5f0);
	overflow: hidden;
}

.fleet-zoom {
	position: relative;
	display: block;
	height: 100%;
	overflow: hidden;
	border-radius: 20px;
	cursor: zoom-in;
	text-decoration: none;
	color: inherit;
}

.fleet-zoom img {
	transition: transform .55s cubic-bezier(.22, 1, .36, 1);
}

.fleet-zoom__cue {
	position: absolute;
	right: 14px;
	bottom: 14px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 999px;
	background: rgba(7, 41, 92, .82);
	color: var(--primary--color, #fccf3a);
	font-size: 15px;
	opacity: 0;
	transform: translateY(6px);
	transition: opacity .3s ease, transform .3s ease, background-color .3s ease;
	pointer-events: none;
}

.fleet-zoom:hover img,
.fleet-zoom:focus-visible img {
	transform: scale(1.06);
}

.fleet-zoom:hover .fleet-zoom__cue,
.fleet-zoom:focus-visible .fleet-zoom__cue {
	opacity: 1;
	transform: translateY(0);
}

.fleet-zoom:focus-visible {
	outline: 3px solid var(--primary--color, #fccf3a);
	outline-offset: 3px;
}

html.fleet-lightbox-open,
html.fleet-lightbox-open body {
	overflow: hidden;
}

.fleet-lightbox {
	position: fixed;
	inset: 0;
	z-index: 10050;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 28px;
	background: rgba(7, 41, 92, .88);
	backdrop-filter: blur(8px);
	opacity: 0;
	visibility: hidden;
	transition: opacity .22s ease, visibility .22s ease;
}

.fleet-lightbox[hidden] {
	display: none !important;
}

.fleet-lightbox.is-open {
	opacity: 1;
	visibility: visible;
}

.fleet-lightbox__stage {
	position: relative;
	margin: 0;
	max-width: min(1120px, 100%);
	max-height: calc(100vh - 56px);
	transform: scale(.96);
	transition: transform .28s cubic-bezier(.22, 1, .36, 1);
}

.fleet-lightbox.is-open .fleet-lightbox__stage {
	transform: scale(1);
}

.fleet-lightbox__img {
	display: block;
	max-width: 100%;
	max-height: calc(100vh - 110px);
	width: auto;
	height: auto;
	margin: 0 auto;
	border-radius: 18px;
	box-shadow: 0 28px 60px rgba(0, 0, 0, .35);
	background: rgba(255, 255, 255, .04);
}

.fleet-lightbox.is-loading .fleet-lightbox__img {
	opacity: .45;
}

.fleet-lightbox__caption {
	margin: 14px 0 0;
	text-align: center;
	font-size: 14px;
	line-height: 22px;
	color: rgba(255, 255, 255, .82);
}

.fleet-lightbox__close,
.fleet-lightbox__nav {
	position: absolute;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, .12);
	color: #fff;
	cursor: pointer;
	transition: background-color .25s ease, color .25s ease, transform .25s ease;
}

.fleet-lightbox__close:hover,
.fleet-lightbox__nav:hover {
	background: var(--primary--color, #fccf3a);
	color: var(--accent--color, #07295c);
}

.fleet-lightbox__close {
	top: 20px;
	right: 20px;
	width: 48px;
	height: 48px;
	font-size: 20px;
}

.fleet-lightbox__nav {
	top: 50%;
	width: 52px;
	height: 52px;
	font-size: 22px;
	transform: translateY(-50%);
}

.fleet-lightbox__nav--prev { left: 20px; }
.fleet-lightbox__nav--next { right: 20px; }

.fleet-lightbox__nav[hidden] { display: none !important; }

@media (max-width: 767px) {
	.fleet-lightbox {
		padding: 16px;
	}

	.fleet-zoom__cue {
		opacity: 1;
		transform: none;
		width: 36px;
		height: 36px;
		font-size: 13px;
	}

	.fleet-lightbox__close {
		top: 12px;
		right: 12px;
		width: 42px;
		height: 42px;
	}

	.fleet-lightbox__nav {
		width: 42px;
		height: 42px;
		font-size: 18px;
	}

	.fleet-lightbox__nav--prev { left: 8px; }
	.fleet-lightbox__nav--next { right: 8px; }

	.fleet-lightbox__caption {
		font-size: 13px;
		padding: 0 48px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.fleet-zoom img,
	.fleet-zoom__cue,
	.fleet-lightbox,
	.fleet-lightbox__stage {
		transition: none;
	}
}

.why-choose-us-con .choose-img-con figure img,
.about-us-con .about-img-con > figure img,
.about-us-con .about-content2 figure:last-child img,
.contact-block__image img,
.send-us-img-con > figure.position-relative img,
.fleet-card__media img {
	display: block;
	width: 100% !important;
	height: 100% !important;
	max-width: none;
	object-fit: cover;
	object-position: center;
}

.about-us-con .about-content2 figure:last-child img,
.why-choose-us-con .choose-img-con figure img {
	object-position: center 42%;
}

@media (max-width: 991px) {
	.about-us-con > .container-fluid > .row > [class*="col-"] {
		display: block;
	}

	.about-us-con .about-img-con {
		display: block;
		min-height: 0;
	}

	.about-us-con .about-img-con > figure {
		height: auto;
		min-height: 0;
		aspect-ratio: 16 / 10;
	}

	.about-us-con .about-img-con > figure img {
		position: static;
		border-radius: 30px;
	}

	.about-us-con .about-content2 figure:last-child { width: 150px; }
}

@media (max-width: 575px) {
	.about-us-con .about-img-con > figure,
	.send-us-img-con > figure.position-relative { aspect-ratio: 4 / 3; }
	.contact-block__image { max-height: 200px; }
	.fleet-grid { row-gap: 20px; }
}

.contact-block__panel {
	height: 100%;
	padding: 36px 36px 32px;
	border-radius: 24px;
	background: #fff;
	box-shadow: 0 18px 40px rgba(0, 0, 0, .18);
}

.contact-block__panel-head { margin-bottom: 8px; }

.contact-block__panel-kicker {
	display: inline-block;
	margin-bottom: 8px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: uppercase;
	color: var(--text--color, #6b6b6b);
}

.contact-block__panel-title {
	margin: 0;
	font-size: 28px;
	line-height: 36px;
	color: var(--accent--color, #07295c);
}

.contact-block .contact-form .wpcf7 { margin-top: 22px; }

.contact-block .contact-form .wpcf7-form input[type="text"],
.contact-block .contact-form .wpcf7-form input[type="email"],
.contact-block .contact-form .wpcf7-form input[type="tel"],
.contact-block .contact-form .wpcf7-form input[type="number"],
.contact-block .contact-form .wpcf7-form input[type="date"],
.contact-block .contact-form .wpcf7-form select,
.contact-block .contact-form .wpcf7-form textarea {
	background: var(--grey--bg--color, #f1f4f8);
	color: var(--accent--color, #07295c);
}

.contact-block .contact-form .wpcf7-form .field-label,
.contact-block .contact-form .wpcf7-form .wpcf7-list-item-label,
.contact-block .contact-form .wpcf7-form .consent {
	color: var(--text--color, #6b6b6b);
}

.contact-block .contact-form .wpcf7-form .consent a {
	color: var(--accent--color, #07295c);
}

.contact-block .contact-form .wpcf7-form input[type="submit"]:hover {
	background: var(--accent--color, #07295c);
	color: #fff;
}

.contact-block .contact-form .wpcf7-response-output {
	color: var(--accent--color, #07295c);
}

@media (max-width: 1199px) {
	.contact-block.get-free-estimate-con.main-box {
		padding-top: 44px;
		padding-bottom: 44px;
		padding-left: 56px !important;
		padding-right: 56px !important;
	}

	.contact-block__intro .text-size-66 {
		font-size: 40px;
		line-height: 50px;
	}

	.contact-block__fact { padding: 20px 28px; }

	.contact-block__panel { padding: 28px; }

	.contact-block__panel-title {
		font-size: 24px;
		line-height: 32px;
	}
}

@media (max-width: 991px) {
	.contact-block__intro { padding-right: 0; }

	.contact-block__intro .text-size-66 { max-width: none; }
}

@media (max-width: 767px) {
	.contact-block.get-free-estimate-con.main-box {
		padding-top: 32px;
		padding-bottom: 32px;
		padding-left: 22px !important;
		padding-right: 22px !important;
	}

	.contact-block__intro .text-size-66 {
		font-size: 32px;
		line-height: 40px;
	}

	.contact-block__fact { padding: 16px 20px; }

	.contact-block__panel {
		padding: 22px 18px;
		border-radius: 20px;
	}
}

/* Footer CTA row needs side inset inside the navy panel. */
.footer-con .cta-con {
	padding-left: 40px;
	padding-right: 40px;
}

.footer-con .middle_portion .logo-content {
	padding-left: 40px;
}

/* Footer link columns — open lists on desktop, accordion panels on mobile. */
.footer-acc {
	margin: 0;
}

.footer-acc__toggle {
	display: none;
	list-style: none;
	cursor: pointer;
	user-select: none;
}

.footer-acc__toggle::-webkit-details-marker {
	display: none;
}

.footer-acc__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: transform .28s ease, background-color .28s ease, color .28s ease;
}

.footer-acc[open] .footer-acc__icon {
	transform: rotate(180deg);
}

@media (min-width: 768px) {
	/* Keep menus visible; closed <details> cannot be forced open via CSS alone. */
	.footer-acc {
		display: block;
	}

	.footer-acc > .footer-acc__list {
		display: block !important;
	}

	.footer-acc__heading {
		display: block;
		margin: 0 0 18px;
		font-size: 14px;
		font-weight: 700;
		letter-spacing: .06em;
		text-transform: uppercase;
		color: var(--secondary--color, #fff);
	}
}

@media (max-width: 767px) {
	.footer-acc__heading {
		display: none !important;
	}
	.footer-con .cta-con {
		padding-left: 20px;
		padding-right: 20px;
	}

	.footer-con .middle_portion .logo-content {
		padding-left: 20px;
	}

	.footer-con .middle_portion > .row > [class*="col-"]:has(.footer-acc) {
		flex: 0 0 100%;
		max-width: 100%;
		width: 100%;
		padding-left: 0;
		padding-right: 0;
	}

	.footer-con .middle_portion > .row > [class*="col-"]:has(.footer-acc) + [class*="col-"]:has(.footer-acc) {
		margin-top: 10px;
	}

	.footer-acc {
		width: auto;
		margin-left: 20px;
		margin-right: 20px;
		overflow: hidden;
		border-radius: 16px;
		background: rgba(255, 255, 255, .06);
		border: 1px solid rgba(255, 255, 255, .1);
		transition: border-color .28s ease, background-color .28s ease;
	}

	.footer-acc[open] {
		background: rgba(255, 255, 255, .09);
		border-color: rgba(252, 207, 58, .35);
	}

	.footer-acc__toggle {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 16px;
		width: 100%;
		min-height: 56px;
		padding: 14px 18px;
		color: var(--secondary--color, #fff);
	}

	.footer-acc__label {
		font-size: 14px;
		font-weight: 700;
		line-height: 1.2;
		letter-spacing: .06em;
		text-transform: uppercase;
	}

	.footer-acc__icon {
		flex: 0 0 32px;
		width: 32px;
		height: 32px;
		border-radius: 999px;
		background: rgba(252, 207, 58, .14);
		color: var(--primary--color, #fccf3a);
		font-size: 12px;
	}

	.footer-acc[open] .footer-acc__icon {
		background: var(--primary--color, #fccf3a);
		color: var(--accent--color, #07295c);
	}

	.footer-acc__list {
		padding: 0 10px 12px;
	}

	.footer-con .middle_portion .footer-acc li {
		margin-bottom: 0;
		line-height: 1.2;
	}

	.footer-con .middle_portion .footer-acc li a {
		display: block;
		padding: 12px 10px 12px 28px;
		font-size: 15px;
		line-height: 22px;
		border-radius: 10px;
		color: var(--light--blue--color2, #a1b3cc);
	}

	.footer-con .middle_portion .footer-acc li i {
		top: 0;
		left: 18px;
		position: absolute;
	}

	.footer-con .middle_portion .footer-acc li {
		position: relative;
	}

	.footer-con .middle_portion .footer-acc li a:active,
	.footer-con .middle_portion .footer-acc li a:hover {
		background: rgba(255, 255, 255, .05);
		color: var(--primary--color, #fccf3a);
	}
}

/* --- Footer address -------------------------------------------------------
 * The design only styles the address as a link; without a Google Maps URL it
 * renders as a span, which would otherwise inherit the dark body colour on the
 * navy footer.
 */
.footer-con .middle_portion .icon .address {
	display: block;
	font-size: 14px;
	line-height: 24px;
	margin-bottom: 20px;
	color: var(--light--blue--color2, #a1b3cc);
}

.footer-con .middle_portion .icon a.address:hover { color: var(--primary--color, #fccf3a); }

/* Benefits icons — trucking-themed SVGs in a consistent brand frame. */
.our-features-con .feature-box__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 72px;
	margin: 0 0 22px;
	padding: 14px;
	border-radius: 18px;
	background: rgba(7, 41, 92, .06);
}

.our-features-con .feature-box__icon img,
.our-features-con .feature-box figure img {
	display: block !important;
	width: 44px !important;
	height: 44px !important;
	max-width: 44px !important;
	margin: 0 !important;
	object-fit: contain;
	visibility: visible !important;
	opacity: 1 !important;
}

.our-features-con .feature-box:hover .feature-box__icon {
	background: rgba(252, 207, 58, .18);
}

/* --- Card headings that are links ----------------------------------------- */
.feature-box h3 a,
.article-box h3 a {
	color: var(--accent--color, #07295c);
	transition: ease-in-out .4s;
}

.feature-box h3 a:hover,
.article-box h3 a:hover { color: var(--primary--color, #fccf3a); }

/* --- Long-form content ----------------------------------------------------- */
.entry-content { max-width: 820px; }
.entry-content > *:last-child { margin-bottom: 0; }
.entry-content p { margin-bottom: 20px; line-height: 28px; }
.entry-content h2, .entry-content h3, .entry-content h4 { margin: 34px 0 14px; }
.entry-content ul, .entry-content ol { margin: 0 0 20px 20px; }
.entry-content li { margin-bottom: 8px; line-height: 26px; }
.entry-content a { color: var(--accent--color, #07295c); text-decoration: underline; }
.entry-content img { max-width: 100%; height: auto; border-radius: 20px; }

.job-contact { margin-top: 20px; }
.job-contact a { color: var(--accent--color, #07295c); font-weight: 700; }
.job-contact a:hover { color: var(--primary--color, #fccf3a); }

.lead {
	font-size: 20px;
	line-height: 32px;
	margin-bottom: 24px;
	color: var(--accent--color, #07295c);
}

/* --- Requirement / benefit checklists ------------------------------------- */
.checklist { margin-top: 24px; }

.checklist li {
	display: flex;
	gap: 10px;
	break-inside: avoid;
	color: var(--text--color, #6b6b6b);
	line-height: 26px;
}

.checklist li i { margin-top: 6px; color: var(--primary--color, #fccf3a); }

@media (min-width: 992px) {
	.col-lg-12 > .checklist { columns: 2; column-gap: 48px; }
}

/* --- Compliance strip (USDOT / MC) ---------------------------------------- */
.compliance-line {
	font-size: 14px;
	opacity: .85;
	margin-top: 10px;
}

.compliance-line span + span { margin-left: 18px; }

.footer-con .copyright-con .copyright-credit {
	color: inherit;
	text-decoration: underline;
	text-underline-offset: 2px;
	transition: color .25s ease;
}

.footer-con .copyright-con .copyright-credit:hover {
	color: var(--primary--color, #fccf3a);
}

/* --- FAQ redesign ---------------------------------------------------------
 * Rounded grey panel (same language as Services / Openings) for clear section
 * breaks, with white accordion rows on top.
 */
.faq-con.bg-grey {
	background:
		radial-gradient(ellipse 60% 45% at 0% 0%, rgba(7, 41, 92, .07), transparent 55%),
		radial-gradient(ellipse 45% 40% at 100% 100%, rgba(252, 207, 58, .14), transparent 50%),
		var(--grey--bg--color, #f1f4f8);
}

.faq-layout {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: 64px 72px;
	align-items: start;
}

.faq-intro {
	position: sticky;
	top: 32px;
}

.faq-intro .heading-title-con { margin-bottom: 22px; }

.faq-intro .text-size-66 {
	font-size: 48px;
	line-height: 58px;
	max-width: 14ch;
}

.faq-intro__text {
	max-width: 34ch;
	margin: 0 0 28px;
	font-size: 18px;
	line-height: 30px;
	color: var(--text--color, #6b6b6b);
}

.faq-intro__cta {
	display: inline-flex;
	flex-direction: column;
	gap: 6px;
	padding: 18px 22px;
	border-radius: 16px;
	background: var(--accent--color, #07295c);
	color: var(--secondary--color, #fff);
	transition: transform .35s ease, box-shadow .35s ease;
}

.faq-intro__cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 28px rgba(7, 41, 92, .22);
	color: var(--secondary--color, #fff);
}

.faq-intro__cta-label {
	font-size: 13px;
	font-weight: 600;
	letter-spacing: .04em;
	text-transform: uppercase;
	color: var(--primary--color, #fccf3a);
}

.faq-intro__cta-phone {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 20px;
	font-weight: 700;
	font-family: "Hedvig Letters Sans", sans-serif;
}

.faq-accordion {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.faq-con .accordion-card {
	width: 100%;
	border: 1px solid transparent;
	border-radius: 18px;
	background: var(--secondary--color, #fff);
	overflow: hidden;
	box-shadow: 0 4px 16px rgba(7, 41, 92, .04);
	transition: border-color .35s ease, box-shadow .35s ease, transform .35s ease;
}

.faq-con .accordion-card:hover {
	border-color: rgba(7, 41, 92, .12);
	box-shadow: 0 10px 24px rgba(7, 41, 92, .08);
}

.faq-con .accordion-card:has(.show) {
	border-color: var(--primary--color, #fccf3a);
	background: #fff;
	box-shadow: 0 14px 32px rgba(7, 41, 92, .1);
}

.faq-con .accordian-inner .card-header,
.faq-con .card-header {
	padding: 0;
	margin: 0;
	background: none;
	border: none;
}

.faq-con .accordion-card a.btn.btn-link {
	position: relative;
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 18px;
	width: 100%;
	padding: 22px 22px 22px 24px;
	text-align: left;
	text-decoration: none;
	border-radius: 0;
	white-space: normal;
}

.faq-con .accordion-card a.btn.btn-link:focus,
.faq-con .accordion-card a.btn.btn-link:focus-visible {
	outline: none;
	box-shadow: none;
}

/* Kill the design template's FontAwesome +/- pseudo icon. */
.faq-con .accordion-card .btn-link:before,
.faq-con .accordion-card .collapsed:before,
.faq-con .accordion-card:has(.show) .btn-link:before {
	content: none !important;
	display: none !important;
}

.faq-index {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 8px;
	border-radius: 12px;
	background: var(--light--blue--color4, #f3f6f9);
	color: var(--accent--color, #07295c);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: .04em;
	transition: background-color .35s ease, color .35s ease;
}

.faq-con .accordion-card:has(.show) .faq-index {
	background: var(--primary--color, #fccf3a);
	color: var(--accent--color, #07295c);
}

.faq-con .accordion-card .text-size-26 {
	margin: 0;
	font-size: 22px;
	line-height: 30px;
	color: var(--accent--color, #07295c);
	transition: color .35s ease;
}

.faq-con .accordion-card .collapsed .text-size-26 {
	color: var(--accent--color, #07295c);
}

.faq-con .accordion-card:has(.show) .btn-link .text-size-26 {
	color: var(--accent--color, #07295c);
}

.faq-toggle {
	position: relative;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--light--blue--color4, #f3f6f9);
	flex-shrink: 0;
	transition: background-color .35s ease, transform .35s ease;
}

.faq-toggle::before,
.faq-toggle::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	background: var(--accent--color, #07295c);
	border-radius: 2px;
	transform: translate(-50%, -50%);
	transition: transform .35s ease, opacity .25s ease;
}

.faq-toggle::before {
	width: 14px;
	height: 2px;
}

.faq-toggle::after {
	width: 2px;
	height: 14px;
}

.faq-con .accordion-card:has(.show) .faq-toggle {
	background: var(--accent--color, #07295c);
	transform: rotate(180deg);
}

.faq-con .accordion-card:has(.show) .faq-toggle::before,
.faq-con .accordion-card:has(.show) .faq-toggle::after {
	background: var(--primary--color, #fccf3a);
}

.faq-con .accordion-card:has(.show) .faq-toggle::after {
	opacity: 0;
	transform: translate(-50%, -50%) scaleY(0);
}

.faq-con .card-body {
	padding: 0 24px 24px 84px;
}

.faq-con .card-body p {
	max-width: 54ch;
	font-size: 16px;
	line-height: 28px;
	color: var(--text--color, #6b6b6b);
}

@media (max-width: 1199px) {
	.faq-layout { gap: 48px; }

	.faq-intro .text-size-66 {
		font-size: 40px;
		line-height: 50px;
	}

	.faq-con .accordion-card .text-size-26 {
		font-size: 20px;
		line-height: 28px;
	}
}

@media (max-width: 991px) {
	.faq-layout {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	.faq-intro {
		position: static;
		text-align: left;
	}

	.faq-intro .text-size-66 { max-width: none; }
}

@media (max-width: 767px) {
	.faq-intro .text-size-66 {
		font-size: 32px;
		line-height: 40px;
	}

	.faq-intro__text {
		font-size: 16px;
		line-height: 26px;
	}

	.faq-intro__cta {
		display: flex;
		width: 100%;
		box-sizing: border-box;
	}

	.faq-con .accordion-card a.btn.btn-link {
		grid-template-columns: auto 1fr auto;
		gap: 12px;
		padding: 18px 14px 18px 16px;
	}

	.faq-index {
		min-width: 36px;
		height: 36px;
		font-size: 12px;
		border-radius: 10px;
	}

	.faq-toggle {
		width: 34px;
		height: 34px;
	}

	.faq-con .accordion-card .text-size-26 {
		font-size: 17px;
		line-height: 24px;
	}

	.faq-con .card-body {
		padding: 0 16px 20px 16px;
	}
}

/* --- Testimonials card grid ----------------------------------------------- */
.testimonials-con--grid {
	background:
		radial-gradient(ellipse 55% 45% at 100% 0%, rgba(252, 207, 58, .1), transparent 55%),
		radial-gradient(ellipse 45% 40% at 0% 100%, rgba(7, 41, 92, .05), transparent 50%),
		var(--secondary--color, #fff);
}

.testimonials-con--grid .heading-title-con {
	margin-bottom: 48px;
}

.testimonials-grid {
	margin-left: -12px;
	margin-right: -12px;
}

.testimonials-grid > [class*="col-"] {
	padding-left: 12px;
	padding-right: 12px;
	margin-bottom: 24px;
}

.testimonial-card {
	display: flex;
	flex-direction: column;
	width: 100%;
	padding: 28px 28px 26px;
	border-radius: 20px;
	background: #fff;
	border: 1px solid var(--border--color, #dde5f0);
	transition: border-color .35s ease, box-shadow .35s ease, transform .35s ease;
}

.testimonial-card:hover {
	border-color: transparent;
	box-shadow: 0 14px 32px rgba(7, 41, 92, .1);
	transform: translateY(-3px);
}

.testimonial-card__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 18px;
}

.testimonial-card__quote img {
	width: 40px;
	height: auto;
	display: block;
}

.testimonial-card__type {
	display: inline-flex;
	align-items: center;
	padding: 6px 12px;
	border-radius: 999px;
	background: var(--grey--bg--color, #f1f4f8);
	color: var(--accent--color, #07295c);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: uppercase;
}

.testimonial-card .stars {
	margin-bottom: 16px;
}

.testimonial-card .stars i {
	font-size: 15px;
	margin: 0 2px 0 0;
	color: var(--primary--color, #fccf3a);
}

.testimonial-card__quote-text {
	margin: 0 0 28px;
	flex: 1 1 auto;
}

.testimonial-card__quote-text p {
	margin: 0;
	font-family: "Hedvig Letters Sans", sans-serif;
	font-size: 20px;
	line-height: 30px;
	color: var(--accent--color, #07295c);
}

.testimonial-card__author {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-top: auto;
	padding-top: 22px;
	border-top: 1px solid var(--border--color, #dde5f0);
}

.testimonial-card__photo,
.testimonial-card__initials {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	flex-shrink: 0;
	object-fit: cover;
}

.testimonial-card__initials {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--accent--color, #07295c);
	color: var(--primary--color, #fccf3a);
	font-family: "Hedvig Letters Sans", sans-serif;
	font-size: 22px;
	font-weight: 700;
}

.testimonial-card__meta {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.testimonial-card__name {
	font-size: 18px;
	line-height: 24px;
	color: var(--accent--color, #07295c);
}

.testimonial-card__role {
	font-size: 14px;
	line-height: 22px;
	color: var(--text--color, #6b6b6b);
}

@media (max-width: 767px) {
	.testimonials-con--grid .heading-title-con { margin-bottom: 32px; }

	.testimonial-card { padding: 24px 22px; }

	.testimonial-card__quote-text p {
		font-size: 18px;
		line-height: 28px;
	}
}

/* --- Static / legal pages ------------------------------------------------- */
.static-page-con.main-box {
	padding-left: 72px !important;
	padding-right: 72px !important;
}

.static-page {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 40px;
	align-items: start;
}

.static-page--prose {
	grid-template-columns: minmax(0, 1fr) 280px;
	gap: 48px 56px;
}

.static-page__content {
	max-width: none;
	padding: 40px 44px;
	border-radius: 24px;
	background: #fff;
	box-shadow: 0 18px 40px rgba(7, 41, 92, .06);
}

.static-page__content > *:last-child {
	margin-bottom: 0;
}

.static-page__content > p:first-child strong {
	display: inline-flex;
	align-items: center;
	padding: 8px 14px;
	border-radius: 999px;
	background: rgba(7, 41, 92, .06);
	color: var(--accent--color, #07295c);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: uppercase;
}

.static-page__content > p:first-child {
	margin-bottom: 28px;
}

.static-page__content h2 {
	margin-top: 40px;
	margin-bottom: 14px;
	padding-top: 8px;
	border-top: 1px solid rgba(7, 41, 92, .08);
	font-size: 28px;
	line-height: 36px;
	color: var(--accent--color, #07295c);
}

.static-page__content h2:first-of-type {
	margin-top: 8px;
	padding-top: 0;
	border-top: 0;
}

.static-page__content p {
	margin-bottom: 18px;
	font-size: 16px;
	line-height: 28px;
	color: var(--text--color, #6b6b6b);
}

.static-page__content ul,
.static-page__content ol {
	margin: 0 0 22px;
	padding: 0;
	list-style: none;
}

.static-page__content ul li,
.static-page__content ol li {
	position: relative;
	margin-bottom: 12px;
	padding: 14px 16px 14px 44px;
	border-radius: 14px;
	background: rgba(7, 41, 92, .035);
	font-size: 15px;
	line-height: 24px;
	color: var(--text--color, #6b6b6b);
}

.static-page__content ul li::before {
	content: "";
	position: absolute;
	left: 16px;
	top: 20px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--primary--color, #fccf3a);
	box-shadow: 0 0 0 4px rgba(252, 207, 58, .18);
}

.static-page__content a {
	color: var(--accent--color, #07295c);
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.static-page__aside {
	position: sticky;
	top: 28px;
	padding: 28px 24px;
	border-radius: 24px;
	background: var(--accent--color, #07295c);
	color: #fff;
}

.static-page__aside-label {
	margin: 0 0 14px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--primary--color, #fccf3a);
}

.static-page__aside-list {
	display: grid;
	gap: 8px;
	margin-bottom: 28px;
}

.static-page__aside-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 12px 14px;
	border-radius: 12px;
	background: rgba(255, 255, 255, .06);
	color: #fff;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.3;
	text-decoration: none;
	transition: background-color .25s ease, color .25s ease;
}

.static-page__aside-link:hover,
.static-page__aside-link.is-current {
	background: var(--primary--color, #fccf3a);
	color: var(--accent--color, #07295c);
}

.static-page__aside-contact {
	padding-top: 22px;
	border-top: 1px solid rgba(255, 255, 255, .12);
}

.static-page__aside-phone,
.static-page__aside-email {
	display: block;
	margin-bottom: 8px;
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.4;
}

.static-page__aside-phone:hover,
.static-page__aside-email:hover {
	color: var(--primary--color, #fccf3a);
}

/* Form pages: lift CF7 into a dedicated white panel after the intro copy. */
.static-page--with-form .static-page__content .wpcf7 {
	margin-top: 36px;
	padding: 32px;
	border-radius: 20px;
	background:
		radial-gradient(ellipse 60% 50% at 100% 0%, rgba(252, 207, 58, .14), transparent 55%),
		var(--grey--bg--color, #f1f4f8);
	border: 1px solid rgba(7, 41, 92, .06);
}

.static-page--with-form .static-page__content .wpcf7-form > p,
.static-page--with-form .static-page__content .wpcf7 form > p {
	margin: 0;
}

.static-page--with-form .static-page__content .wpcf7 ul {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	margin: 0 0 20px;
	padding: 0;
	list-style: none;
}

.static-page--with-form .static-page__content .wpcf7 ul li {
	margin: 0;
	padding: 0;
	background: transparent;
}

.static-page--with-form .static-page__content .wpcf7 ul li::before {
	display: none;
}

.static-page--with-form .static-page__content .wpcf7 input[type="text"],
.static-page--with-form .static-page__content .wpcf7 input[type="email"],
.static-page--with-form .static-page__content .wpcf7 input[type="tel"],
.static-page--with-form .static-page__content .wpcf7 input[type="number"],
.static-page--with-form .static-page__content .wpcf7 input[type="date"],
.static-page--with-form .static-page__content .wpcf7 select,
.static-page--with-form .static-page__content .wpcf7 textarea {
	width: 100%;
	min-height: 54px;
	padding: 14px 16px;
	border: 1px solid rgba(7, 41, 92, .1);
	border-radius: 14px;
	background: #fff;
	color: var(--accent--color, #07295c);
	font-size: 15px;
}

.static-page--with-form .static-page__content .consent {
	margin: 0 0 14px;
	padding: 14px 16px;
	border-radius: 14px;
	background: #fff;
	border: 1px solid rgba(7, 41, 92, .08);
	font-size: 14px;
	line-height: 22px;
	color: var(--text--color, #6b6b6b);
}

.static-page--with-form .static-page__content .consent a {
	font-weight: 700;
}

.static-page--with-form .static-page__content .wpcf7 input[type="submit"] {
	margin-top: 8px;
	min-width: 200px;
	min-height: 54px;
	padding: 0 28px;
	border: 0;
	border-radius: 12px;
	background: var(--primary--color, #fccf3a);
	color: var(--accent--color, #07295c);
	font-size: 16px;
	font-weight: 700;
	transition: background-color .25s ease, color .25s ease;
}

.static-page--with-form .static-page__content .wpcf7 input[type="submit"]:hover {
	background: var(--accent--color, #07295c);
	color: #fff;
}

@media (max-width: 1199px) {
	.static-page-con.main-box {
		padding-left: 40px !important;
		padding-right: 40px !important;
	}

	.static-page--prose {
		grid-template-columns: minmax(0, 1fr) 240px;
		gap: 32px;
	}
}

@media (max-width: 991px) {
	.static-page--prose {
		grid-template-columns: 1fr;
	}

	.static-page__aside {
		position: static;
	}
}

@media (max-width: 767px) {
	.static-page-con.main-box {
		padding-left: 20px !important;
		padding-right: 20px !important;
	}

	.static-page__content {
		padding: 28px 22px;
		border-radius: 20px;
	}

	.static-page__content h2 {
		font-size: 24px;
		line-height: 32px;
	}

	.static-page--with-form .static-page__content .wpcf7 {
		padding: 20px;
	}

	.static-page--with-form .static-page__content .wpcf7 ul {
		grid-template-columns: 1fr;
	}

	.static-page--with-form .static-page__content .wpcf7 input[type="submit"] {
		width: 100%;
	}
}

/* Legacy selectors kept for older markup hooks. */
.privacy-policy-content-con.entry-content {
	max-width: none;
}
