/*
Theme Name: Ferox Fleet Services
Author: Ferox Fleet Services
Description: Custom theme for Ferox Fleet Services — Diesel Truck Repair, Vancouver WA.
Version: 1.0.81
Text Domain: ferox-fleet
Requires at least: 6.0
Requires PHP: 8.0
*/

/* ==========================================================================
   Variables
   ========================================================================== */
:root {
	--ferox-red: #9F1717;
	--ferox-red-hover: #C52020;
	--ferox-red-dark: #741010;
	--ferox-dark: #212121;
	--ferox-charcoal: #080808;
	--ferox-white: #FFFFFF;
	--ferox-slate: #5f6360;
	--ferox-gray: #636363;
	--ferox-light-gray: #D1D1D1;
	--ferox-off-white: #f5f5f5;
	--ferox-gold: #E99F15;
	--ferox-font: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--ferox-max-width: 1200px;
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */
*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	font-size: 16px;
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body {
	font-family: var(--ferox-font);
	color: var(--ferox-dark);
	background: var(--ferox-white);
	line-height: 1.6;
	overflow-x: hidden;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: var(--ferox-red);
	text-decoration: none;
	transition: color 0.2s ease;
}

a:hover {
	color: var(--ferox-red-hover);
}

.text-nowrap {
	white-space: nowrap;
}

h1, h2, h3, h4, h5, h6 {
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 0.5em;
	color: var(--ferox-dark);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
	margin-bottom: 1em;
	color: var(--ferox-gray);
	line-height: 1.8;
}

ul, ol {
	margin-bottom: 1em;
	padding-left: 1.5em;
}

li {
	margin-bottom: 0.25em;
	color: var(--ferox-gray);
}

/* ==========================================================================
   Utility
   ========================================================================== */
.container {
	max-width: var(--ferox-max-width);
	margin: 0 auto;
	padding: 0 20px;
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
	display: inline-block;
	padding: 12px 30px;
	font-family: var(--ferox-font);
	font-size: 0.875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	border: none;
	border-radius: 3px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-align: center;
}

a.btn-primary,
.btn-primary {
	background: var(--ferox-red) !important;
	color: var(--ferox-white) !important;
	border: none !important;
	outline: none !important;
	box-shadow: none !important;
}

a.btn-primary:hover,
.btn-primary:hover {
	background: var(--ferox-red-hover) !important;
	color: var(--ferox-white) !important;
	border: none !important;
	outline: none !important;
	box-shadow: none !important;
}

a.btn-primary:focus,
a.btn-primary:active,
a.btn-primary:visited {
	outline: none !important;
	box-shadow: none !important;
	border: none !important;
	color: var(--ferox-white) !important;
}

.btn-outline {
	background: transparent;
	color: var(--ferox-white);
	border: 2px solid var(--ferox-white);
}

.btn-outline:hover {
	background: var(--ferox-white);
	color: var(--ferox-dark);
}

/* ==========================================================================
   Top Bar
   ========================================================================== */
.top-bar {
	background: var(--ferox-red);
	color: var(--ferox-white);
	font-size: 1.49rem;
	font-weight: 600;
	padding: 14px 0;
}

.top-bar .container {
	display: flex;
	justify-content: center;
	align-items: center;
}

.top-bar-contact a,
.top-bar-contact span {
	color: var(--ferox-white);
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-weight: 600;
	margin-right: 20px;
}

.top-bar-contact a:hover {
	color: var(--ferox-charcoal);
}

.top-bar-contact a.top-bar-email {
	color: var(--ferox-white);
	text-transform: uppercase;
}

.top-bar-contact i {
	color: var(--ferox-white);
	margin-right: 0;
	flex-shrink: 0;
}

.top-bar-social a {
	color: var(--ferox-white);
	font-weight: 600;
	margin-left: 12px;
	font-size: 1.75rem;
}

.top-bar-social a:hover {
	color: var(--ferox-charcoal);
}

/* ==========================================================================
   Header / Navigation — Centered Logo Layout
   ========================================================================== */
.site-header {
	background: var(--ferox-charcoal);
	padding: 0;
	position: sticky;
	top: 0;
	z-index: 1000;
	box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.site-header .container {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 80px;
	position: relative;
}

.site-branding {
	flex-shrink: 0;
	padding: 2rem 30px;
	display: flex;
	align-items: center;
}

.site-branding a {
	color: var(--ferox-white);
	font-size: 1.4rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.site-branding a:hover {
	color: var(--ferox-red);
}

.site-branding .site-description {
	color: var(--ferox-slate);
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin: 0;
}

.custom-logo-link img {
	max-height: 66px;
	width: auto;
}

/* Main Navigation — Centered */
.main-nav-centered {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
}

.main-nav-centered ul {
	list-style: none;
	display: flex;
	gap: 0;
	margin: 0;
	padding: 0;
}

.main-nav-centered .nav-left {
	justify-content: flex-end;
	flex: 1;
}

.main-nav-centered .nav-right {
	justify-content: flex-start;
	flex: 1;
}

.main-nav-centered ul li {
	position: relative;
	margin: 0;
}

.main-nav-centered ul li a {
	display: block;
	padding: 28px 22px;
	color: var(--ferox-white);
	font-size: 1rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: color 0.2s ease;
}

.main-nav-centered ul li a:hover,
.main-nav-centered ul li.current-menu-item > a,
.main-nav-centered ul li.current_page_item > a {
	color: var(--ferox-red);
}

/* Dropdown */
.main-nav-centered ul li ul {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background: var(--ferox-dark);
	min-width: 220px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.3);
	z-index: 999;
	padding: 0;
}

.main-nav-centered ul li:hover > ul {
	display: block;
}

.main-nav-centered ul li ul li a {
	padding: 12px 18px;
	font-size: 0.8rem;
	border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* Mobile Menu Toggle */
.menu-toggle {
	display: none;
	background: none;
	border: none;
	color: var(--ferox-white);
	font-size: 1.5rem;
	cursor: pointer;
	padding: 10px;
	position: absolute;
	left: 20px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
}

/* Mobile branding (hidden on desktop) */
.mobile-branding {
	display: none;
	padding: 2rem 0;
}

.mobile-branding a {
	color: var(--ferox-white);
	font-size: 1.2rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.mobile-branding img {
	max-height: 54px;
	max-width: calc(100vw - 120px);
	width: auto;
}

/* Mobile Nav (hidden on desktop) */
.mobile-nav-wrap {
	display: none;
}

.mobile-nav-wrap .mobile-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	background: var(--ferox-charcoal);
	border-top: 2px solid var(--ferox-red);
	box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.mobile-nav-wrap .mobile-menu li a {
	display: block;
	padding: 15px 20px;
	color: var(--ferox-white);
	font-size: 1rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	border-bottom: 1px solid rgba(255,255,255,0.05);
}

.mobile-nav-wrap .mobile-menu li a:hover,
.mobile-nav-wrap .mobile-menu li.current-menu-item > a,
.mobile-nav-wrap .mobile-menu li.current_page_item > a {
	color: var(--ferox-red);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
	position: relative;
	background: var(--ferox-charcoal);
	color: var(--ferox-white);
	min-height: 720px;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(8,8,8,0.62) 0%, rgba(8,8,8,0.28) 42%, rgba(8,8,8,0) 100%),
		linear-gradient(0deg, rgba(8,8,8,0.12) 0%, rgba(8,8,8,0) 55%);
	z-index: 1;
}

.hero-bg,
.hero-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.hero-bg {
	background-size: cover;
	background-position: center 30%;
	z-index: 0;
}

.hero-video {
	display: block;
	object-fit: cover;
	object-position: center;
	z-index: 0;
}

.hero-content {
	position: relative;
	z-index: 2;
	max-width: 700px;
	padding: 80px 0;
}

.hero-tagline {
	color: var(--ferox-white);
	font-size: 1rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 3px;
	margin-bottom: 15px;
	text-shadow: 0 2px 8px rgba(0,0,0,0.45);
}

.hero h1 {
	color: var(--ferox-white);
	font-size: 3rem;
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 20px;
	text-shadow: 0 2px 8px rgba(0,0,0,0.45);
}

.hero p {
	color: var(--ferox-light-gray);
	font-size: 1.1rem;
	margin-bottom: 30px;
	text-shadow: 0 2px 8px rgba(0,0,0,0.45);
}

.hero-buttons {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
}

/* ==========================================================================
   Services Section — White bg, clean and open
   ========================================================================== */
.services-section {
	padding: 48px 0 58px;
	background: var(--ferox-white);
}

.section-header {
	text-align: center;
	margin-bottom: 50px;
}

.section-header h2 {
	font-size: 2rem;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.section-header h2::after {
	content: '';
	display: block;
	width: 60px;
	height: 3px;
	background: var(--ferox-red);
	margin: 15px auto 0;
}

.section-header p {
	max-width: 600px;
	margin: 15px auto 0;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.service-card {
	display: block;
	background: var(--ferox-off-white);
	border-radius: 4px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0,0,0,0.06);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	color: var(--ferox-dark);
}

.service-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0,0,0,0.15);
	color: var(--ferox-dark);
}

.service-card-img {
	height: 200px;
	background: var(--ferox-dark);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.service-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.service-card-img i {
	font-size: 3rem;
	color: var(--ferox-red);
}

.service-card-body {
	padding: 25px;
	border-top: 3px solid var(--ferox-red);
}

.service-card-body h3 {
	font-size: 1.1rem;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.service-card-body h3 a {
	color: var(--ferox-dark);
}

.service-card-body h3 a:hover {
	color: var(--ferox-red);
}

.service-card-body p {
	font-size: 0.9rem;
	margin-bottom: 0;
}

.services-more {
	margin-top: 44px;
	padding-top: 32px;
	border-top: 1px solid var(--ferox-light-gray);
	background: transparent;
	color: var(--ferox-dark);
}

.services-more-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	margin-bottom: 28px;
}

.service-capability {
	display: flex;
	align-items: center;
	gap: 12px;
	min-height: 72px;
	padding: 14px;
	background: var(--ferox-off-white);
	border: 1px solid var(--ferox-light-gray);
	border-radius: 4px;
	color: var(--ferox-dark);
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.service-capability:hover {
	border-color: var(--ferox-red);
	box-shadow: 0 8px 18px rgba(0,0,0,0.08);
	transform: translateY(-2px);
	color: var(--ferox-dark);
}

.service-capability i {
	flex: 0 0 auto;
	color: var(--ferox-red-hover);
	font-size: 1.25rem;
}

.service-capability span {
	color: var(--ferox-dark);
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.35;
}

.services-more-cta {
	display: flex;
	justify-content: center;
	margin-top: 34px;
}

.btn-services-major {
	min-width: 260px;
	padding: 18px 34px;
	font-size: 1rem;
	text-align: center;
}

/* ==========================================================================
   Mobile Service CTA
   ========================================================================== */
.mobile-service-cta {
	padding: 32px 0;
	background: var(--ferox-charcoal);
	border-top: 1px solid rgba(255,255,255,0.08);
	border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mobile-service-panel {
	display: grid;
	grid-template-columns: minmax(0, 3fr) minmax(190px, 1fr);
	gap: 24px;
	align-items: center;
	padding: 24px 0 24px 24px;
	background: transparent;
	border-left: 4px solid var(--ferox-red);
	border-radius: 4px;
}

.mobile-service-copy {
	min-width: 0;
}

.mobile-service-copy h2 {
	color: var(--ferox-white);
	font-size: 1.45rem;
	text-transform: uppercase;
	margin-bottom: 8px;
}

.mobile-service-copy p {
	color: var(--ferox-light-gray);
	font-size: 0.96rem;
	margin-bottom: 0;
}

.mobile-service-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.mobile-service-actions .btn {
	justify-content: center;
	min-width: 198px;
	padding: 14px 22px;
	text-align: center;
}

/* ==========================================================================
   Testimonials Section — Video background
   ========================================================================== */
.testimonials-section {
	position: relative;
	padding: 90px 0;
	background: var(--ferox-dark);
	overflow: hidden;
}

.testimonials-section .container {
	position: relative;
	z-index: 2;
}

.testimonials-video {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	z-index: 0;
}

.testimonials-overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(8,8,8,0.62) 0%, rgba(8,8,8,0.28) 42%, rgba(8,8,8,0) 100%),
		linear-gradient(0deg, rgba(8,8,8,0.42) 0%, rgba(8,8,8,0.18) 55%);
	z-index: 1;
}

.testimonials-section .section-header h2 {
	color: var(--ferox-white);
	text-shadow: 0 2px 8px rgba(0,0,0,0.45);
}

.testimonials-section .section-header h2::after {
	background: var(--ferox-red);
}

.testimonials-section .section-header p {
	color: var(--ferox-light-gray);
}

.testimonials-feature {
	max-width: 780px;
	margin: 0 auto;
	overflow: hidden;
}

.testimonials-track {
	display: flex;
	align-items: flex-start;
	transition: transform 0.6s ease;
	will-change: transform;
}

.testimonial-card {
	flex: 0 0 100%;
	box-sizing: border-box;
	background: rgba(8,8,8,0.58);
	padding: 38px 42px;
	border-left: 4px solid var(--ferox-red);
	border-radius: 0 4px 4px 0;
	box-shadow: 0 18px 42px rgba(0,0,0,0.28);
	backdrop-filter: blur(2px);
}

.testimonial-card blockquote {
	font-style: italic;
	color: var(--ferox-white);
	font-size: 1.18rem;
	margin-bottom: 18px;
	line-height: 1.7;
	text-shadow: 0 2px 8px rgba(0,0,0,0.45);
}

.testimonial-card cite {
	font-style: normal;
	font-weight: 700;
	color: var(--ferox-white);
	font-size: 0.9rem;
	text-shadow: 0 2px 8px rgba(0,0,0,0.45);
}

/* ==========================================================================
   Trust Stats Bar — Red bg after hero
   ========================================================================== */
.trust-bar {
	background: var(--ferox-red);
	padding: 30px 0;
	position: relative;
}

.trust-bar::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(0,0,0,0.15) 0%, transparent 100%);
}

.trust-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	position: relative;
	z-index: 1;
}

.trust-item {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	color: var(--ferox-white);
}

.trust-item i {
	font-size: 1.8rem;
	opacity: 0.9;
}

.trust-text {
	display: flex;
	flex-direction: column;
}

.trust-number {
	font-size: 1.1rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	line-height: 1.2;
}

.trust-label {
	font-size: 0.75rem;
	opacity: 0.85;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* ==========================================================================
   Maintenance Portals — Fleet workflow credibility
   ========================================================================== */
.portal-section {
	background: var(--ferox-off-white);
	padding: 70px 0;
	border-bottom: 1px solid rgba(0,0,0,0.08);
}

.portal-layout {
	display: grid;
	grid-template-columns: 1.3fr 0.7fr;
	gap: 45px;
	align-items: end;
	margin-bottom: 30px;
}

.portal-intro h2 {
	font-size: 2.05rem;
	margin-bottom: 15px;
	color: var(--ferox-dark);
}

.portal-intro p {
	max-width: 760px;
	font-size: 1rem;
	margin-bottom: 0;
}

.portal-proof {
	display: flex;
	gap: 16px;
	align-items: flex-start;
	background: var(--ferox-white);
	border-left: 4px solid var(--ferox-red);
	box-shadow: 0 6px 20px rgba(0,0,0,0.08);
	padding: 22px;
}

.portal-proof-icon {
	width: 44px;
	height: 44px;
	border-radius: 4px;
	background: var(--ferox-dark);
	color: var(--ferox-white);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.portal-proof-icon i {
	font-size: 1.2rem;
}

.portal-proof span {
	display: block;
	color: var(--ferox-dark);
	font-size: 0.9rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 6px;
}

.portal-proof p {
	font-size: 0.9rem;
	line-height: 1.6;
	margin: 0;
}

.portal-carousel {
	--portal-gap: 14px;
	--portal-slide-width: 245px;
	position: relative;
}

.portal-carousel-viewport {
	overflow: hidden;
	padding: 4px 0;
}

.portal-track {
	display: flex;
	width: max-content;
	animation: portal-scroll 28s linear infinite;
	will-change: transform;
}

.portal-carousel:hover .portal-track,
.portal-carousel:focus-within .portal-track {
	animation-play-state: paused;
}

.portal-set {
	display: flex;
	gap: var(--portal-gap);
	padding-right: var(--portal-gap);
}

.portal-slide {
	flex: 0 0 var(--portal-slide-width);
}

@keyframes portal-scroll {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

.portal-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 118px;
	background: var(--ferox-white);
	border: 1px solid rgba(33,33,33,0.12);
	border-radius: 4px;
	padding: 22px 18px;
	color: var(--ferox-dark);
	font-size: 0.78rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	text-align: center;
	box-shadow: 0 2px 8px rgba(0,0,0,0.04);
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.portal-logo {
	display: block;
	width: 100%;
	max-width: 190px;
	height: 46px;
	object-fit: contain;
	object-position: center;
	margin: auto 0;
}

.portal-logo-fleetio {
	max-width: 175px;
	height: 52px;
	object-fit: cover;
}

.portal-logo-sure-ecosystemevents {
	max-width: 150px;
	height: 54px;
}

.portal-item:hover {
	border-color: var(--ferox-red);
	box-shadow: 0 8px 18px rgba(183, 42, 38, 0.12);
	transform: translateY(-2px);
}

/* ==========================================================================
   Fleet Services CTA — Dark bg, primary audience callout
   ========================================================================== */
.fleet-cta {
	background: var(--ferox-dark);
	padding: 90px 0;
	color: var(--ferox-white);
}

.fleet-cta-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.section-label {
	color: var(--ferox-red);
	font-size: 0.85rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 10px;
}

.fleet-cta h2 {
	color: var(--ferox-white);
	font-size: 2.2rem;
	margin-bottom: 15px;
}

.fleet-cta p {
	color: var(--ferox-light-gray);
	font-size: 1.05rem;
	margin-bottom: 25px;
}

.fleet-features {
	list-style: none;
	padding: 0;
	margin: 0 0 30px;
}

.fleet-features li {
	color: var(--ferox-light-gray);
	padding: 8px 0;
	font-size: 0.95rem;
}

.fleet-features li i {
	color: var(--ferox-red);
	margin-right: 10px;
}

.fleet-cta-visual {
	display: flex;
	align-items: center;
	justify-content: center;
}

.fleet-cta-image {
	width: 100%;
	max-width: 520px;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: 6px;
	box-shadow: 0 18px 42px rgba(0,0,0,0.35);
}

.fleet-icon-block {
	background: rgba(255,255,255,0.05);
	border: 2px solid rgba(255,255,255,0.1);
	border-radius: 8px;
	padding: 60px;
	text-align: center;
	width: 100%;
	max-width: 400px;
}

.fleet-icon-block i {
	font-size: 5rem;
	color: var(--ferox-red);
	margin-bottom: 20px;
	display: block;
}

.fleet-icon-block span {
	font-size: 1.1rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--ferox-white);
}

/* ==========================================================================
   Why Choose Us — Off-white bg
   ========================================================================== */
.why-us {
	padding: 90px 0;
	background: var(--ferox-off-white);
}

.why-us-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}

.why-us-item {
	text-align: center;
	padding: 30px 20px;
}

.why-us-icon {
	width: 70px;
	height: 70px;
	background: var(--ferox-red);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
}

.why-us-icon i {
	font-size: 1.5rem;
	color: var(--ferox-white);
}

.why-us-item h3 {
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 10px;
}

.why-us-item p {
	font-size: 0.9rem;
	margin-bottom: 0;
}

/* ==========================================================================
   About Teaser — Dark bg
   ========================================================================== */
.about-teaser {
	padding: 90px 0;
	background: var(--ferox-charcoal);
	color: var(--ferox-white);
}

.about-teaser-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.about-teaser .section-label {
	margin-bottom: 10px;
}

.about-teaser h2 {
	color: var(--ferox-white);
	font-size: 2rem;
	margin-bottom: 20px;
}

.about-teaser p {
	color: var(--ferox-light-gray);
	font-size: 1rem;
}

.about-teaser .btn-outline {
	border-color: var(--ferox-red);
	color: var(--ferox-white);
	margin-top: 10px;
}

.about-teaser .btn-outline:hover {
	background: var(--ferox-red);
	color: var(--ferox-white);
}

.about-teaser-photo {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: 6px;
	box-shadow: 0 18px 42px rgba(0,0,0,0.35);
}

.about-image-placeholder {
	background: rgba(255,255,255,0.05);
	border: 2px dashed rgba(255,255,255,0.15);
	border-radius: 8px;
	padding: 80px 40px;
	text-align: center;
	color: var(--ferox-slate);
}

.about-image-placeholder i {
	font-size: 4rem;
	display: block;
	margin-bottom: 15px;
	color: var(--ferox-red);
	opacity: 0.5;
}

.about-image-placeholder span {
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* ==========================================================================
   About Page
   ========================================================================== */
.about-page {
	padding: 82px 0 90px;
	background: var(--ferox-charcoal);
	color: var(--ferox-white);
}

.about-page-grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 58px;
	align-items: center;
}

.about-page .section-label {
	margin-bottom: 10px;
}

.about-page h2,
.about-page h3 {
	color: var(--ferox-white);
	text-transform: uppercase;
}

.about-page h2 {
	font-size: 2.25rem;
	margin-bottom: 20px;
}

.about-page p {
	color: var(--ferox-light-gray);
	font-size: 1rem;
}

.about-page-image img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: 6px;
	box-shadow: 0 18px 42px rgba(0,0,0,0.35);
}

.about-page-highlights {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
	margin-top: 32px;
}

.about-page-highlights div {
	padding: 18px 16px;
	background: rgba(255,255,255,0.06);
	border: 1px solid rgba(255,255,255,0.12);
	border-radius: 4px;
}

.about-page-highlights strong {
	display: block;
	color: var(--ferox-white);
	font-size: 1.2rem;
	text-transform: uppercase;
	margin-bottom: 6px;
}

.about-page-highlights span {
	color: var(--ferox-light-gray);
	font-size: 0.88rem;
	line-height: 1.35;
}

.about-page-values {
	margin-top: 58px;
	padding-top: 42px;
	border-top: 1px solid rgba(255,255,255,0.14);
}

.about-page-values h3 {
	font-size: 1.45rem;
	margin-bottom: 20px;
}

.about-page-values ul {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px 28px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.about-page-values li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	color: var(--ferox-light-gray);
	margin: 0;
}

.about-page-values i {
	color: var(--ferox-red-hover);
	margin-top: 4px;
}

.about-page-values span {
	color: var(--ferox-light-gray);
	line-height: 1.5;
}

/* ==========================================================================
   Work for Ferox Page
   ========================================================================== */
.work-page {
	background: var(--ferox-white);
}

.work-intro {
	padding: 76px 0 70px;
	background: var(--ferox-charcoal);
	color: var(--ferox-white);
}

.work-intro-grid {
	display: grid;
	grid-template-columns: 0.95fr 1.05fr;
	gap: 54px;
	align-items: start;
}

.work-application-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 28px;
	align-items: start;
	max-width: 900px;
	margin: 0 auto;
}

.work-intro h1,
.work-intro h2,
.work-process h2,
.work-application h2 {
	color: var(--ferox-white);
	text-transform: uppercase;
}

.work-intro h1 {
	font-size: 2.45rem;
	margin-bottom: 18px;
}

.work-intro p,
.work-process p,
.work-application-copy p {
	color: var(--ferox-light-gray);
}

.work-intro-card {
	padding: 32px;
	background: rgba(255,255,255,0.06);
	border-top: 5px solid var(--ferox-red);
	border-radius: 4px;
}

.work-intro-card ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.work-intro-card li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	color: var(--ferox-light-gray);
	margin-bottom: 14px;
}

.work-intro-card li:last-child {
	margin-bottom: 0;
}

.work-intro-card i {
	color: var(--ferox-red-hover);
	margin-top: 4px;
}

.work-intro-card span {
	color: var(--ferox-light-gray);
	line-height: 1.5;
}

.work-benefits {
	padding: 74px 0;
	background: var(--ferox-white);
}

.work-benefits-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
}

.work-benefit {
	padding: 24px;
	background: var(--ferox-off-white);
	border-radius: 4px;
	border-top: 4px solid var(--ferox-red);
}

.work-benefit i {
	color: var(--ferox-red);
	font-size: 1.8rem;
	margin-bottom: 18px;
}

.work-benefit h3 {
	text-transform: uppercase;
	font-size: 1rem;
	margin-bottom: 10px;
}

.work-benefit p {
	font-size: 0.9rem;
	margin-bottom: 0;
}

.work-process {
	padding: 0 0 74px;
	background: var(--ferox-white);
}

.work-process-panel {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 34px;
	align-items: center;
	padding: 36px;
	background: var(--ferox-dark);
	border-left: 5px solid var(--ferox-red);
	border-radius: 4px;
}

.work-process-panel p {
	margin-bottom: 0;
}

.work-application {
	padding: 78px 0 90px;
	background: var(--ferox-charcoal);
	color: var(--ferox-white);
}

.work-application-note {
	font-size: 0.9rem;
}

.work-application-copy {
	max-width: 760px;
}

.work-form {
	padding: 34px;
	background: var(--ferox-white);
	border-radius: 4px;
	box-shadow: 0 18px 42px rgba(0,0,0,0.24);
}

.work-form label,
.work-form legend {
	display: block;
	color: var(--ferox-dark);
	font-size: 0.86rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.3px;
}

.work-form input,
.work-form select,
.work-form textarea {
	margin-top: 8px;
}

.work-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}

.work-form-fieldset {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px 18px;
	margin: 6px 0 18px;
	padding: 18px;
	border: 1px solid var(--ferox-light-gray);
	border-radius: 4px;
}

.work-form-fieldset legend {
	padding: 0 8px;
}

.work-form-fieldset label {
	display: flex;
	align-items: center;
	gap: 8px;
	text-transform: none;
	letter-spacing: 0;
	font-weight: 500;
}

.work-form-fieldset input {
	width: auto;
	margin: 0;
}

.work-form-other {
	grid-column: 1 / -1;
	display: block;
}

.work-form-fieldset .work-form-other input {
	width: 100%;
	margin-top: 8px;
}

.work-form-honey {
	position: absolute;
	left: -9999px;
	opacity: 0;
}

.work-form-notice {
	padding: 14px 16px;
	margin-bottom: 18px;
	border-radius: 4px;
	font-weight: 700;
}

.work-form-success {
	background: #e7f6ed;
	color: #116033;
}

.work-form-error {
	background: #fde8e8;
	color: #8f1d1d;
}

/* ==========================================================================
   Makes & Models / Brands — White bg
   ========================================================================== */
.brands-section {
	padding: 80px 0;
	background: var(--ferox-white);
}

.brands-carousel {
	--brands-gap: 18px;
	--brand-slide-width: 170px;
	position: relative;
}

.brand-item {
	background: var(--ferox-off-white);
	border: 1px solid var(--ferox-light-gray);
	border-radius: 4px;
	height: 96px;
	padding: 12px 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.brands-carousel-viewport {
	overflow: hidden;
	padding: 4px 0;
}

.brands-track {
	display: flex;
	width: max-content;
	animation: brands-scroll 34s linear infinite;
	will-change: transform;
}

.brands-carousel:hover .brands-track,
.brands-carousel:focus-within .brands-track {
	animation-play-state: paused;
}

.brands-set {
	display: flex;
	gap: var(--brands-gap);
	padding-right: var(--brands-gap);
}

.brand-slide {
	flex: 0 0 var(--brand-slide-width);
	min-height: 96px;
}

@keyframes brands-scroll {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

.brand-item:hover {
	border-color: var(--ferox-red);
	box-shadow: 0 4px 12px rgba(183, 42, 38, 0.1);
}

.brand-item img {
	max-width: 100%;
	height: 68px;
	width: auto;
	object-fit: contain;
	opacity: 0.7;
	transition: opacity 0.2s ease;
}

.brand-item:hover img {
	opacity: 1;
}

/* ==========================================================================
   FAQ Section — Off-white bg
   ========================================================================== */
.faq-section {
	padding: 90px 0;
	background: var(--ferox-off-white);
}

.faq-list {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	background: var(--ferox-white);
	margin-bottom: 8px;
	border-radius: 4px;
	overflow: hidden;
	box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.faq-question {
	width: 100%;
	padding: 20px 25px;
	background: none;
	border: none;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-family: var(--ferox-font);
	font-size: 1rem;
	font-weight: 600;
	color: var(--ferox-dark);
	text-align: left;
	transition: color 0.2s ease;
}

.faq-question:hover {
	color: var(--ferox-red);
}

.faq-question i {
	font-size: 0.8rem;
	color: var(--ferox-red);
	transition: transform 0.3s ease;
	flex-shrink: 0;
	margin-left: 15px;
}

.faq-item.active .faq-question i {
	transform: rotate(180deg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.faq-answer p {
	padding: 0 25px 20px;
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.7;
}

.faq-answer a {
	color: var(--ferox-red);
	font-weight: 600;
}

/* ==========================================================================
   Service Area — Image bg
   ========================================================================== */
.service-area {
	position: relative;
	padding: 90px 0;
	background-color: var(--ferox-charcoal);
	background-size: cover;
	background-position: center;
	overflow: hidden;
}

.service-area-overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(8,8,8,0.78) 0%, rgba(8,8,8,0.58) 45%, rgba(8,8,8,0.38) 100%),
		linear-gradient(0deg, rgba(8,8,8,0.36) 0%, rgba(8,8,8,0.16) 55%);
	z-index: 1;
}

.service-area .container {
	position: relative;
	z-index: 2;
}

.service-area h2,
.service-area h4,
.service-area p,
.service-area li {
	color: var(--ferox-white);
	text-shadow: 0 2px 8px rgba(0,0,0,0.45);
}

.service-area-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: start;
}

.service-area-cities {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	margin-top: 20px;
}

.service-area .section-header h2 {
	color: var(--ferox-white);
	text-shadow: 0 2px 8px rgba(0,0,0,0.45);
}

.service-area .section-header p {
	color: var(--ferox-white);
	text-shadow: 0 2px 8px rgba(0,0,0,0.45);
}

.service-area-cities h4 {
	color: var(--ferox-white);
	text-transform: uppercase;
	font-size: 0.85rem;
	letter-spacing: 1px;
	margin-bottom: 12px;
}

.service-area-cities ul {
	list-style: none;
	padding: 0;
}

.service-area-cities li {
	padding: 5px 0;
	font-size: 0.9rem;
	color: var(--ferox-white);
	border-bottom: 1px solid rgba(255,255,255,0.16);
	text-shadow: 0 2px 8px rgba(0,0,0,0.45);
}

.service-area-map {
	border-radius: 4px;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.service-area-map iframe,
.contact-page-map iframe {
	filter: grayscale(1) contrast(0.95) brightness(0.88);
}

/* ==========================================================================
   Page Content
   ========================================================================== */
.page-header-banner {
	background: var(--ferox-dark);
	padding: 50px 0;
	text-align: center;
	border-bottom: 4px solid var(--ferox-red);
}

.page-header-banner h1 {
	color: var(--ferox-white);
	text-transform: uppercase;
	margin: 0;
}

.page-content {
	padding: 60px 0;
}

.page-content .container {
	max-width: 900px;
}

/* ==========================================================================
   Contact Page
   ========================================================================== */
.contact-page {
	position: relative;
	padding: 70px 0 90px;
	background: var(--ferox-white);
	background-size: cover;
	background-position: center;
	overflow: hidden;
}

.contact-page-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(8,8,8,0.54) 0%, rgba(8,8,8,0.36) 45%, rgba(159,23,23,0.24) 100%);
	z-index: 0;
}

.contact-page .container {
	position: relative;
	z-index: 1;
}

.contact-page-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
	gap: 46px;
	align-items: stretch;
}

.contact-page-content {
	padding: 38px;
	background: var(--ferox-white);
	border-top: 5px solid var(--ferox-red);
	border-radius: 4px;
	box-shadow: 0 18px 42px rgba(0,0,0,0.22);
}

.contact-page-content h2 {
	color: var(--ferox-dark);
	text-transform: uppercase;
	margin-bottom: 18px;
}

.contact-page-content strong {
	color: var(--ferox-red);
}

.contact-page-content p:last-child {
	margin-bottom: 0;
}

.contact-address-link {
	color: var(--ferox-dark);
	font-weight: 700;
}

.contact-address-link:hover {
	color: var(--ferox-red);
}

.contact-page-content a[href^="tel:"] {
	color: var(--ferox-dark);
}

.contact-page-content a[href^="tel:"]:hover {
	color: var(--ferox-red);
}

.contact-page-map {
	min-height: 420px;
	border-radius: 4px;
	overflow: hidden;
	border: 5px solid var(--ferox-white);
	box-shadow: 0 18px 42px rgba(0,0,0,0.22);
}

.contact-page-map iframe {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 420px;
}

/* ==========================================================================
   Services Landing Page
   ========================================================================== */
.services-landing {
	background: var(--ferox-white);
}

.services-cta-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.services-index {
	padding: 70px 0 40px;
	background: var(--ferox-white);
}

.services-anchor-nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
}

.services-anchor-nav a {
	display: inline-flex;
	align-items: center;
	min-height: 46px;
	padding: 10px 16px;
	background: var(--ferox-off-white);
	border: 1px solid var(--ferox-light-gray);
	border-radius: 4px;
	color: var(--ferox-dark);
	font-size: 0.9rem;
	font-weight: 700;
	text-transform: uppercase;
}

.services-anchor-nav a:hover {
	background: var(--ferox-red);
	border-color: var(--ferox-red);
	color: var(--ferox-white);
}

.services-detail {
	padding: 35px 0 90px;
	background: var(--ferox-white);
}

.services-detail-section {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 48px;
	align-items: stretch;
	padding: 52px 0;
	border-top: 1px solid var(--ferox-light-gray);
	scroll-margin-top: 120px;
}

.services-detail-section:first-child {
	border-top: 0;
	padding-top: 20px;
}

.services-detail-section-reverse .services-detail-media {
	order: 2;
}

.services-detail-media {
	position: relative;
	align-self: stretch;
	height: 100%;
	min-height: 0;
	background: var(--ferox-dark);
	border-radius: 4px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.services-detail-media img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.services-detail-media i {
	color: var(--ferox-red);
	font-size: 4rem;
}

.services-detail-content .section-label {
	color: var(--ferox-red);
}

.services-detail-content h2 {
	font-size: 1.8rem;
	text-transform: uppercase;
	margin-bottom: 12px;
}

.services-detail-content p {
	max-width: 680px;
	margin-bottom: 22px;
}

.services-check-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.services-check-list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin: 0;
	color: var(--ferox-dark);
}

.services-check-list i {
	color: var(--ferox-red);
	margin-top: 4px;
}

.services-check-list span {
	color: var(--ferox-dark);
	line-height: 1.45;
}

.services-cta {
	padding: 0 0 90px;
	background: var(--ferox-white);
}

.services-cta-panel {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 30px;
	padding: 38px;
	background: var(--ferox-dark);
	border-left: 5px solid var(--ferox-red);
	border-radius: 4px;
}

.services-cta-panel .section-label {
	color: var(--ferox-white);
}

.services-cta-panel h2 {
	color: var(--ferox-white);
	font-size: 1.45rem;
	text-transform: uppercase;
	margin: 8px 0 0;
}

/* ==========================================================================
   Single Post
   ========================================================================== */
.single-post-content {
	padding: 60px 0;
}

.single-post-content .container {
	max-width: 800px;
}

.entry-meta {
	color: var(--ferox-slate);
	font-size: 0.85rem;
	margin-bottom: 20px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
	background: var(--ferox-charcoal);
	color: var(--ferox-white);
	padding: 60px 0 0;
}

.site-footer p,
.site-footer li,
.site-footer a,
.site-footer strong,
.site-footer i {
	color: var(--ferox-white) !important;
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 40px;
	margin-bottom: 40px;
}

.footer-col h4 {
	color: var(--ferox-white);
	text-transform: uppercase;
	font-size: 0.9rem;
	letter-spacing: 1px;
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 2px solid var(--ferox-red);
}

.footer-col p {
	color: var(--ferox-white);
	font-size: 0.9rem;
}

.footer-col ul {
	list-style: none;
	padding: 0;
}

.footer-col ul li {
	margin-bottom: 8px;
}

.footer-col ul li a {
	color: var(--ferox-white);
	font-size: 0.9rem;
}

.footer-col ul li a:hover {
	color: var(--ferox-red);
}

.footer-col .sub-menu {
	margin-top: 8px;
	padding-left: 14px;
}

.footer-col .sub-menu li {
	margin-bottom: 6px;
}

.footer-bottom {
	border-top: 1px solid rgba(255,255,255,0.1);
	padding: 20px 0;
	text-align: center;
}

.footer-bottom p {
	margin: 0;
	font-size: 0.85rem;
	color: var(--ferox-white);
}

/* ==========================================================================
   WordPress Specific
   ========================================================================== */
.alignleft {
	float: left;
	margin-right: 1.5em;
	margin-bottom: 1em;
}

.alignright {
	float: right;
	margin-left: 1.5em;
	margin-bottom: 1em;
}

.aligncenter {
	display: block;
	margin: 0 auto 1.5em;
}

.wp-caption {
	max-width: 100%;
}

.wp-caption-text {
	font-size: 0.85rem;
	color: var(--ferox-slate);
	text-align: center;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* Navigation Links */
.post-navigation,
.posts-navigation {
	padding: 20px 0;
}

.nav-links {
	display: flex;
	justify-content: space-between;
}

/* Comments */
.comment-list {
	list-style: none;
	padding: 0;
}

.comment-body {
	padding: 20px 0;
	border-bottom: 1px solid var(--ferox-light-gray);
}

/* Forms */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
textarea,
select {
	width: 100%;
	padding: 12px 15px;
	font-family: var(--ferox-font);
	font-size: 0.95rem;
	border: 1px solid var(--ferox-light-gray);
	border-radius: 3px;
	margin-bottom: 15px;
	transition: border-color 0.2s ease;
}

input:focus,
textarea:focus,
select:focus {
	outline: none;
	border-color: var(--ferox-red);
}

input[type="submit"],
button[type="submit"] {
	background: var(--ferox-red);
	color: var(--ferox-white);
	border: none;
	padding: 12px 30px;
	font-family: var(--ferox-font);
	font-size: 0.875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	border-radius: 3px;
	cursor: pointer;
	transition: background 0.3s ease;
}

input[type="submit"]:hover,
button[type="submit"]:hover {
	background: var(--ferox-red-hover);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 992px) {
	.services-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.services-more-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.mobile-service-panel {
		grid-template-columns: 1fr;
	}

	.contact-page-grid {
		grid-template-columns: 1fr;
	}

	.work-intro-grid,
	.work-application-grid,
	.work-process-panel {
		grid-template-columns: 1fr;
	}

	.work-benefits-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.services-detail-section {
		grid-template-columns: 1fr;
	}

	.services-detail-section,
	.services-detail-section:first-child {
		padding: 42px 0;
	}

	.services-detail-section-reverse .services-detail-media {
		order: 0;
	}

	.services-cta-panel {
		align-items: flex-start;
		flex-direction: column;
	}

	.hero {
		min-height: 640px;
	}

	.footer-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.hero h1 {
		font-size: 2.2rem;
	}

	.trust-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.portal-layout {
		grid-template-columns: 1fr;
		gap: 25px;
		align-items: start;
	}

	.portal-carousel {
		--portal-slide-width: 220px;
	}

	.fleet-cta-grid,
	.about-page-grid,
	.about-teaser-grid,
	.service-area-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.about-page-values ul {
		grid-template-columns: 1fr;
	}

	.why-us-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.brands-carousel {
		--brand-slide-width: 155px;
	}
}

@media (max-width: 768px) {
	.menu-toggle {
		display: block;
	}

	.main-nav-centered {
		display: none;
	}

	.site-header .container {
		justify-content: center;
		min-height: 70px;
	}

	/* Mobile branding (show a centered logo on mobile) */
	.site-header .mobile-branding {
		display: flex;
	}

	.mobile-branding {
		display: flex;
		align-items: center;
	}

	.mobile-nav-wrap.active {
		display: block;
		position: absolute;
		top: 70px;
		left: 0;
		right: 0;
		z-index: 999;
	}

	.top-bar .container {
		flex-direction: column;
		gap: 5px;
	}

	.top-bar-contact {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: 6px;
		width: 100%;
	}

	.top-bar-contact a,
	.top-bar-contact span {
		margin-right: 0;
		text-align: left;
		white-space: normal;
	}

	.services-grid,
	.services-more-grid {
		grid-template-columns: 1fr;
	}

	.services-more {
		padding: 28px 22px;
	}

	.mobile-service-cta {
		padding: 34px 0;
	}

	.mobile-service-panel {
		padding: 22px 0 22px 20px;
	}

	.mobile-service-actions {
		justify-content: flex-start;
	}

	.mobile-service-copy h2 {
		font-size: 1.3rem;
		margin-bottom: 8px;
		white-space: normal;
	}

	.contact-page {
		padding: 55px 0 65px;
	}

	.contact-page-content {
		padding: 26px 22px;
	}

	.work-intro,
	.work-benefits,
	.work-application {
		padding: 60px 0;
	}

	.work-process {
		padding-bottom: 60px;
	}

	.work-intro h1 {
		font-size: 1.9rem;
	}

	.work-form,
	.work-process-panel,
	.work-intro-card {
		padding: 24px 20px;
	}

	.work-form-row,
	.work-form-fieldset,
	.work-benefits-grid {
		grid-template-columns: 1fr;
	}

	.services-cta-actions {
		flex-direction: column;
		align-items: stretch;
	}

	.services-index {
		padding: 55px 0 25px;
	}

	.services-anchor-nav {
		align-items: stretch;
		flex-direction: column;
	}

	.services-anchor-nav a {
		justify-content: center;
		text-align: center;
	}

	.services-detail {
		padding: 25px 0 65px;
	}

	.services-detail-media,
	.services-detail-media img {
		height: auto;
		min-height: 250px;
	}

	.services-detail-media img {
		position: static;
	}

	.services-check-list {
		grid-template-columns: 1fr;
	}

	.services-cta {
		padding-bottom: 65px;
	}

	.services-cta-panel {
		padding: 28px 22px;
	}

	.service-capability {
		min-height: 0;
	}

	.testimonial-card {
		padding: 30px 26px;
	}

	.testimonial-card blockquote {
		font-size: 1rem;
	}

	.footer-grid {
		grid-template-columns: 1fr;
	}

	.hero {
		min-height: 560px;
	}

	.hero h1 {
		font-size: 1.8rem;
	}

	.hero-content {
		padding: 50px 0;
	}

	.hero-overlay {
		background: linear-gradient(90deg, rgba(8,8,8,0.62) 0%, rgba(8,8,8,0.28) 100%);
	}

	.trust-grid {
		grid-template-columns: 1fr 1fr;
		gap: 15px;
	}

	.trust-item {
		justify-content: flex-start;
		padding: 10px;
	}

	.portal-section {
		padding: 55px 0;
	}

	.portal-intro h2 {
		font-size: 1.65rem;
	}

	.portal-proof {
		padding: 18px;
	}

	.portal-carousel {
		--portal-slide-width: 205px;
	}

	.portal-item {
		min-height: 108px;
		padding: 20px 16px;
	}

	.portal-logo {
		height: 42px;
	}

	.portal-logo-fleetio,
	.portal-logo-sure-ecosystemevents {
		height: 48px;
	}

	.fleet-cta-grid,
	.about-page-grid,
	.about-teaser-grid,
	.service-area-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.about-page {
		padding: 60px 0;
	}

	.about-page h2 {
		font-size: 1.8rem;
	}

	.about-page-highlights {
		grid-template-columns: 1fr;
	}

	.fleet-cta-visual {
		order: -1;
	}

	.fleet-icon-block {
		padding: 40px;
	}

	.why-us-grid {
		grid-template-columns: 1fr;
	}

	.brands-carousel {
		--brand-slide-width: 145px;
		--brands-gap: 14px;
	}

	.brand-slide {
		min-height: 86px;
	}

	.brand-item {
		height: 86px;
		padding: 10px 12px;
	}

	.brand-item img {
		height: 58px;
	}

	.service-area-cities {
		grid-template-columns: 1fr;
	}

	.fleet-cta,
	.about-teaser,
	.why-us,
	.faq-section,
	.service-area,
	.brands-section {
		padding: 60px 0;
	}
}
